Searched refs:fi (Results 1 - 25 of 259) sorted by relevance

1234567891011

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DIWebSocketFactory.java1 package fi.iki.elonen;
3 import fi.iki.elonen.NanoHTTPD.IHTTPSession;
H A DWebSocketException.java1 package fi.iki.elonen;
3 import fi.iki.elonen.WebSocketFrame.CloseCode;
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
H A DDebugWebSocketServer.java1 package fi.iki.elonen.samples.echo;
3 import fi.iki.elonen.NanoWebSocketServer;
4 import fi.iki.elonen.WebSocket;
H A DEchoSocketSample.java1 package fi.iki.elonen.samples.echo;
3 import fi.iki.elonen.NanoWebSocketServer;
H A DDebugWebSocket.java1 package fi.iki.elonen.samples.echo;
3 import fi.iki.elonen.NanoHTTPD;
4 import fi.iki.elonen.WebSocket;
5 import fi.iki.elonen.WebSocketFrame;
/external/lzma/CPP/Windows/
H A DFileFind.cpp55 #define WIN_FD_TO_MY_FI(fi, fd) \
56 fi.Attrib = fd.dwFileAttributes; \
57 fi.CTime = fd.ftCreationTime; \
58 fi.ATime = fd.ftLastAccessTime; \
59 fi.MTime = fd.ftLastWriteTime; \
60 fi.Size = (((UInt64)fd.nFileSizeHigh) << 32) + fd.nFileSizeLow; \
61 fi.IsDevice = false;
65 fi.ObjectID = fd.dwOID;
67 fi.ReparseTag = fd.dwReserved0;
71 static void ConvertWIN32_FIND_DATA_To_FileInfo(const WIN32_FIND_DATA &fd, CFileInfo &fi) argument
81 ConvertWIN32_FIND_DATA_To_FileInfo(const WIN32_FIND_DATAW &fd, CFileInfoW &fi) argument
87 ConvertWIN32_FIND_DATA_To_FileInfo(const WIN32_FIND_DATA &fd, CFileInfoW &fi) argument
108 FindFirst(LPCTSTR wildcard, CFileInfo &fi) argument
129 FindFirst(LPCWSTR wildcard, CFileInfoW &fi) argument
160 FindNext(CFileInfo &fi) argument
170 FindNext(CFileInfoW &fi) argument
246 CFileInfo fi; local
252 CFileInfo fi; local
258 CFileInfo fi; local
265 CFileInfoW fi; local
271 CFileInfoW fi; local
276 CFileInfoW fi; local
284 NextAny(CFileInfo &fi) argument
292 Next(CFileInfo &fi) argument
303 Next(CFileInfo &fi, bool &found) argument
315 NextAny(CFileInfoW &fi) argument
323 Next(CFileInfoW &fi) argument
334 Next(CFileInfoW &fi, bool &found) argument
[all...]
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
H A DWebServerPluginInfo.java1 package fi.iki.elonen;
H A DInternalRewrite.java1 package fi.iki.elonen;
5 import static fi.iki.elonen.NanoHTTPD.Response;
H A DWebServerPlugin.java1 package fi.iki.elonen;
6 import fi.iki.elonen.NanoHTTPD.IHTTPSession;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
H A Dt1afm.c39 AFM_FontInfo fi )
41 FT_FREE( fi->KernPairs );
42 fi->NumKernPair = 0;
44 FT_FREE( fi->TrackKerns );
45 fi->NumTrackKern = 0;
47 FT_FREE( fi );
109 AFM_FontInfo fi )
155 fi->NumKernPair = FT_PEEK_USHORT_LE( p );
157 if ( p + 4 * fi->NumKernPair > limit )
164 if ( fi
240 AFM_FontInfo fi = NULL; local
318 T1_Get_Kerning( AFM_FontInfo fi, FT_UInt glyph1, FT_UInt glyph2, FT_Vector* kerning ) argument
364 AFM_FontInfo fi = (AFM_FontInfo)( (T1_Face)face )->afm_data; local
[all...]
H A Dt1afm.h35 AFM_FontInfo fi );
38 T1_Get_Kerning( AFM_FontInfo fi,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_half.h54 union fi magic;
55 union fi f32;
94 union fi infnan;
95 union fi magic;
96 union fi f32;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_half.h54 union fi magic;
55 union fi f32;
94 union fi infnan;
95 union fi magic;
96 union fi f32;
/external/lzma/CPP/7zip/UI/Common/
H A DEnumDirItems.cpp12 const NFind::CFileInfoW &fi, CObjectVector<CDirItem> &dirItems)
15 di.Size = fi.Size;
16 di.CTime = fi.CTime;
17 di.ATime = fi.ATime;
18 di.MTime = fi.MTime;
19 di.Attrib = fi.Attrib;
22 di.Name = fi.Name;
88 NFind::CFileInfoW fi; local
90 if (!enumerator.Next(fi, found))
98 AddDirFileInfo(phyParent, logParent, fi, Item
11 AddDirFileInfo(int phyParent, int logParent, const NFind::CFileInfoW &fi, CObjectVector<CDirItem> &dirItems) argument
117 NFind::CFileInfoW fi; local
214 NFind::CFileInfoW fi; local
264 NFind::CFileInfoW fi; local
291 NFind::CFileInfoW fi; local
[all...]
H A DExtract.cpp121 NFile::NFind::CFileInfoW fi; local
122 fi.Size = 0;
126 if (!fi.Find(arcPath))
128 if (fi.IsDir())
131 archiveSizes.Add(fi.Size);
132 totalPackSize += fi.Size;
145 NFile::NFind::CFileInfoW fi; local
148 fi.Size = 0;
149 fi.Attrib = 0;
153 if (!fi
[all...]
/external/chromium_org/third_party/libvpx/
H A Drun_perl.py25 with open(options.output, 'w') as fo, open(options.input, 'r') as fi:
26 subprocess.check_call(['perl', options.script], stdout=fo, stdin=fi)
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DIntegrationTestBase.java1 package fi.iki.elonen.integration;
3 import fi.iki.elonen.NanoHTTPD;
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigTypeface.h22 const SkFontConfigInterface::FontIdentity& fi,
24 return SkNEW_ARGS(FontConfigTypeface, (style, fi, familyName));
54 const SkFontConfigInterface::FontIdentity& fi,
57 , fIdentity(fi)
21 Create(Style style, const SkFontConfigInterface::FontIdentity& fi, const SkString& familyName) argument
53 FontConfigTypeface(Style style, const SkFontConfigInterface::FontIdentity& fi, const SkString& familyName) argument
/external/nanohttpd/webserver/markdown-plugin/src/main/java/fi/iki/elonen/
H A DMarkdownWebServerPluginInfo.java1 package fi.iki.elonen;
/external/skia/src/ports/
H A DSkFontConfigTypeface.h22 const SkFontConfigInterface::FontIdentity& fi,
24 return SkNEW_ARGS(FontConfigTypeface, (style, fi, familyName));
54 const SkFontConfigInterface::FontIdentity& fi,
57 , fIdentity(fi)
21 Create(Style style, const SkFontConfigInterface::FontIdentity& fi, const SkString& familyName) argument
53 FontConfigTypeface(Style style, const SkFontConfigInterface::FontIdentity& fi, const SkString& familyName) argument
/external/skia/src/effects/gradients/
H A DSkRadialGradient.cpp95 unsigned fi = (xx * xx + fy) >> (14 + 16 - kSQRT_TABLE_BITS); local
96 fi = SkFastMin32(fi, 0xFFFF >> (16 - kSQRT_TABLE_BITS));
99 (sqrt_table[fi] >> SkGradientShaderBase::kSqrt16Shift)];
105 unsigned fi = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1); local
106 fi = (xx * xx + fi * fi) >> (14 + 16 - kSQRT_TABLE_BITS);
107 fi = SkFastMin32(fi,
123 const unsigned fi = TileProc(dist); local
218 unsigned fi = proc(SkScalarToFixed(srcPt.length())); local
327 unsigned fi = SkGradientShaderBase::kCache32Count - 1; local
334 unsigned fi; local
351 unsigned fi = (xx * xx + yy) >> (14 + 16 - kSQRT_TABLE_BITS); local
361 unsigned fi = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1); local
383 const unsigned fi = TileProc(dist); local
448 unsigned fi = proc(SkScalarToFixed(srcPt.length())); local
[all...]
/external/chromium_org/third_party/freetype/src/psaux/
H A Dafmparse.c588 AFM_FontInfo fi = parser->FontInfo; local
595 if ( afm_parser_read_int( parser, &fi->NumTrackKern ) )
598 if ( fi->NumTrackKern )
604 if ( FT_QNEW_ARRAY( fi->TrackKerns, fi->NumTrackKern ) )
618 if ( n >= fi->NumTrackKern )
621 tk = fi->TrackKerns + n;
642 fi->NumTrackKern = n + 1;
686 AFM_FontInfo fi = parser->FontInfo; local
693 if ( afm_parser_read_int( parser, &fi
850 AFM_FontInfo fi = parser->FontInfo; local
[all...]
/external/chromium_org/third_party/icu/source/samples/layout/
H A Dgnomeglue.cpp71 LEFontInstance *fi = (LEFontInstance *) font; local
73 delete fi;
/external/dhcpcd/mk/
H A Dcc.mk8 _CSTD_SH= if test -n "${CSTD}"; then echo "-std=${CSTD}"; else echo ""; fi
20 then printf "%s" "$$f "; fi \
21 done; fi
25 _GGDB_SH= if test "${DEBUG}" = "yes"; then echo "-ggdb -DDEBUG"; else echo ""; fi
/external/freetype/src/psaux/
H A Dafmparse.c588 AFM_FontInfo fi = parser->FontInfo; local
595 if ( afm_parser_read_int( parser, &fi->NumTrackKern ) )
598 if ( fi->NumTrackKern )
604 if ( FT_QNEW_ARRAY( fi->TrackKerns, fi->NumTrackKern ) )
618 if ( n >= fi->NumTrackKern )
621 tk = fi->TrackKerns + n;
642 fi->NumTrackKern = n + 1;
686 AFM_FontInfo fi = parser->FontInfo; local
693 if ( afm_parser_read_int( parser, &fi
850 AFM_FontInfo fi = parser->FontInfo; local
[all...]

Completed in 350 milliseconds

1234567891011