HomeSort by relevance Sort by last modified time
    Searched refs:fa (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /ndk/sources/host-tools/nawk-20071023/
awk.h 218 typedef struct fa { struct
230 } fa; typedef in typeref:struct:fa
  /external/valgrind/main/coregrind/
launcher-darwin.c 131 struct fat_arch *fa = (struct fat_arch *)(fh+1); local
135 if (ntohl(fa[i].cputype) == cputype) return 1;
176 struct fat_arch *fa = (struct fat_arch *)(fh+1); local
177 return name_for_cputype(ntohl(fa->cputype));
  /libcore/luni/src/test/java/libcore/icu/
ICUTest.java 51 assertEquals("d LLLL", ICU.getBestDateTimePattern("MMMMd", new Locale("fa", "IR")));
90 // lv and fa use differing orders depending on whether you're using numeric or textual months.
95 Locale fa = new Locale("fa"); local
96 assertEquals("[y, M, d]", Arrays.toString(ICU.getDateFormatOrder(best(fa, "yyyy-M-dd"))));
97 assertEquals("[d, M, y]", Arrays.toString(ICU.getDateFormatOrder(best(fa, "yyyy-MMM-dd"))));
98 assertEquals("[d, M, \u0000]", Arrays.toString(ICU.getDateFormatOrder(best(fa, "MMM-dd"))));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binascii.py 43 for fa, fb in zip(a2b_functions, b2a_functions):
44 a2b = getattr(binascii, fa)
50 self.fail("{}/{} conversion raises {!r}".format(fb, fa, err))
55 "{!r} != {!r}".format(fb, fa, res, raw))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binascii.py 43 for fa, fb in zip(a2b_functions, b2a_functions):
44 a2b = getattr(binascii, fa)
50 self.fail("{}/{} conversion raises {!r}".format(fb, fa, err))
55 "{!r} != {!r}".format(fb, fa, res, raw))
  /external/harfbuzz_ng/test/api/
test-common.c 182 hb_language_t fa = hb_language_from_string ("fa", -1); local
184 hb_language_t fa_ir = hb_language_from_string ("fa-ir", -1);
189 g_assert (fa != NULL);
194 g_assert (en != fa);
  /external/valgrind/main/memcheck/tests/amd64/
more_x87_fp.c 96 float fa; local
105 fa = a;
107 printf("(float)%e = %e\n", a, fa);
  /external/valgrind/main/memcheck/tests/x86/
more_x86_fp.c 86 float fa; local
95 fa = a;
97 printf("(float)%f = %f\n", a, fa);
  /external/pdfium/core/src/fpdfdoc/
pdf_vt.h 21 #define IsFloatBigger(fa,fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb)))
22 #define IsFloatSmaller(fa,fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb)))
  /external/chromium_org/third_party/icu/source/data/region/
reslocal.mk 40 fa.txt\
  /external/chromium_org/third_party/icu/source/data/zone/
reslocal.mk 39 fa.txt\
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_FormFiller.h 90 PDFSDK_FieldAction& fa);
92 const PDFSDK_FieldAction& fa);
  /external/pdfium/fpdfsdk/include/fxedit/
fxet_edit.h 26 #define FX_EDIT_IsFloatEqual(fa,fb) FX_EDIT_IsFloatZero(fa - fb)
27 #define FX_EDIT_IsFloatBigger(fa,fb) (fa > fb && !FX_EDIT_IsFloatEqual(fa,fb))
28 #define FX_EDIT_IsFloatSmaller(fa,fb) (fa < fb && !FX_EDIT_IsFloatEqual(fa,fb))
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equivalent.h 72 // in acceptor 'fa'.
73 static bool IsFinal(const Fst<Arc> &fa, MappedId s) {
76 false : (fa.Final(UnMapState(s)) != Weight::Zero());
  /external/chromium_org/third_party/icu/source/data/curr/
reslocal.mk 42 fa.txt\
  /external/chromium_org/third_party/icu/source/data/rbnf/
rbnffiles.mk 40 eo.txt es.txt et.txt fa.txt fa_AF.txt\
  /external/icu/icu4c/source/data/rbnf/
rbnffiles.mk 45 fa.txt fa_AF.txt fi.txt fil.txt fo.txt\
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ScrollBar.cpp 13 #define IsFloatBigger(fa,fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb)))
14 #define IsFloatSmaller(fa,fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb)))
15 #define IsFloatEqual(fa,fb) IsFloatZero((fa)-(fb))
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.java 324 float[] fa = s.get_fa(); local
325 assertTrue(fa[0] == 1.0);
326 assertTrue(fa[1] == 9.9999f);
327 assertTrue(fa[2] == 0);
328 assertTrue(fa[3] == 0);
329 assertTrue(fa.length == 4);
  /system/core/adb/
sysdeps_win32.c 1198 FH fa, fb; local
1201 fa = _fh_alloc( &_fh_socketpair_class );
1204 if (!fa || !fb)
1216 fa->fh_pair = pair;
1219 pair->a_fd = fa;
1221 sv[0] = _fh_to_int(fa);
1229 snprintf( fa->name, sizeof(fa->name), "%d(pair:%d)", sv[0], sv[1] );
1236 _fh_close(fa);
    [all...]
  /external/pdfium/fpdfsdk/src/
fsdk_baseform.cpp 21 #define IsFloatBigger(fa,fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb)))
22 #define IsFloatSmaller(fa,fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb)))
23 #define IsFloatEqual(fa,fb) IsFloatZero((fa)-(fb))
2119 PDFSDK_FieldAction fa; local
2148 PDFSDK_FieldAction fa; local
    [all...]
fpdf_flatten.cpp 291 void GetOffset(FX_FLOAT& fa, FX_FLOAT& fd, FX_FLOAT& fe, FX_FLOAT& ff, CPDF_Rect rcAnnot, CPDF_Rect rcStream, CFX_AffineMatrix matrix)
321 fa = (rcAnnot.right - rcAnnot.left)/fStreamWidth;
323 fe = rcAnnot.left - left * fa;
  /external/bison/lib/
config.charset 221 for l in fa fa_IR; do
  /external/chromium_org/third_party/icu/source/data/lang/
reslocal.mk 41 fa.txt\
  /external/chromium_org/third_party/icu/source/data/locales/
reslocal.mk 42 fa.txt\

Completed in 1801 milliseconds

12 3 4 5 6 7