HomeSort by relevance Sort by last modified time
    Searched defs:check (Results 201 - 225 of 849) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libpng/
pngrio.c 68 png_size_t check; local
76 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
77 check = 0;
79 check = (png_size_t)fread(data, (png_size_t)1, length,
83 if (check != length)
98 int check; local
104 /* Check if data really is near. If so, use usual code. */
110 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
112 check = 0;
114 check = fread(n_data, 1, length, io_ptr)
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrio.c 47 png_size_t check; local
54 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
55 check = 0;
57 check = (png_size_t)fread(data, (png_size_t)1, length,
61 if (check != length)
76 int check; local
81 /* Check if data really is near. If so, use usual code. */
87 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
88 check = 0;
90 check = fread(n_data, 1, length, io_ptr)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRadioGroup.java 25 public void check(int id) { method in class:ShadowRadioGroup
  /external/valgrind/main/memcheck/tests/
mallinfo.c 12 static size_t check(size_t min, size_t max) function
74 static size_t check(size_t min, size_t max) function
113 max = check(min, (size_t)-1);
123 check(min, max);
  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 80 " cmpl $0x0, 36(%esp) # check for uppercase\n"
121 check (int thing, int number) function
134 check(a != NULL && b != NULL && STREQ (a, b), number);
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
  /frameworks/native/libs/binder/
PermissionCache.cpp 37 status_t PermissionCache::check(bool* granted, function in class:android::PermissionCache
100 if (pc.check(&granted, permission, uid) != NO_ERROR) {
  /libcore/crypto/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 28 public static final void check(X509Certificate[] chain) throws CertificateException { method in class:ChainStrengthAnalyzer
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 34 void check(const std::locale& loc) function
84 check(loc);
86 check(loc2);
96 check(loc);
98 check(loc2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.members/
combine.pass.cpp 32 void check(const std::locale& loc) function
84 check(loc3);
  /ndk/tests/device/test-stlport_shared-exception/jni/
catch3.cpp 6 // We cannot catch an ambiguous base class. Check with a non-virtual public
27 void check(D *d) function
119 check (&d); // try with an object
120 check ((D *)0); // try with no object
catch3p.cpp 6 // We cannot catch an ambiguous base class. Check with a non-virtual
26 void check(D *d) function
113 check (&d); // try with an object
114 check ((D *)0); // try with no object
catch4.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual public
26 void check(D *d) function
110 check (&d); // try with an object
111 check ((D *)0); // try with no object
catch4p.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual
26 void check(D *d) function
110 check (&d); // try with an object
111 check ((D *)0); // try with no object
catch5.cpp 28 void check(D *d) function
150 check (&d); // try with an object
151 check ((D *)0); // try with no object
catch8.cpp 25 void check(D *d) function
106 check (&d); // try with an object
107 check ((D *)0); // try with no object
catch8p.cpp 25 void check(D *d) function
107 check (&d); // try with an object
108 check ((D *)0); // try with no object
catch9.cpp 26 void check(D *d) function
113 check (&d); // try with an object
114 check ((D *)0); // try with no object
catch9p.cpp 26 void check(D *d) function
113 check (&d); // try with an object
114 check ((D *)0); // try with no object
  /ndk/tests/device/test-stlport_static-exception/jni/
catch3.cpp 6 // We cannot catch an ambiguous base class. Check with a non-virtual public
27 void check(D *d) function
119 check (&d); // try with an object
120 check ((D *)0); // try with no object
catch3p.cpp 6 // We cannot catch an ambiguous base class. Check with a non-virtual
26 void check(D *d) function
113 check (&d); // try with an object
114 check ((D *)0); // try with no object
catch4.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual public
26 void check(D *d) function
110 check (&d); // try with an object
111 check ((D *)0); // try with no object
catch4p.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual
26 void check(D *d) function
110 check (&d); // try with an object
111 check ((D *)0); // try with no object
catch5.cpp 28 void check(D *d) function
150 check (&d); // try with an object
151 check ((D *)0); // try with no object
catch8.cpp 25 void check(D *d) function
106 check (&d); // try with an object
107 check ((D *)0); // try with no object
catch8p.cpp 25 void check(D *d) function
107 check (&d); // try with an object
108 check ((D *)0); // try with no object

Completed in 2206 milliseconds

1 2 3 4 5 6 7 891011>>