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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
util.js 40 this.check();
117 * Check if the tools are active and update the tools visibility accordingly.
119 MouseInactivityWatcher.prototype.check = function() {
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.h 41 // Mac OS X 10.6 SDK defines check() macro that interfares with our check() method
42 #ifdef check
43 #undef check macro
67 bool check(const String& font, const String& text, ExceptionState&);
  /external/chromium_org/third_party/libpng/
pngwio.c 52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
83 /* Check if data really is near. If so, use usual code. */
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-hashing.cc 153 void check(i::Vector<const uint8_t> string) { function
169 CHECK(code->IsCode());
181 CHECK(runtime_hash == codegen_hash);
185 void check(i::Vector<const char> s) { function
186 check(i::Vector<const uint8_t>::cast(s));
190 void check(uint32_t key) { function
206 CHECK(code->IsCode());
217 CHECK(runtime_hash == codegen_hash);
223 check(i::Vector<const uint8_t>(ab, 2));
245 check(i::Vector<const char>("*", 1))
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
escape-analysis.js 187 function check(x, y) { function
196 check(23, 42); check(23, 42);
197 %OptimizeFunctionOnNextCall(check);
198 check(23, 42); check(23, 42);
200 check(27, 27); check(27, 27);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-binop.js 57 this.check = function() {
78 left.check();
80 right.check();
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 35 void check() function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
43 // check the template function case
44 template<class T> void check() function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
  /external/clang/test/SemaTemplate/
attributes.cpp 9 template <bool X> struct check { struct in namespace:attribute_aligned
14 typedef check<N == sizeof(X<N>)> t; // expected-note {{in instantiation}}
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
Assert.java 11 package org.eclipse.wb.internal.core.utils.check;
46 * the boolean expression of the check
47 * @return <code>true</code> if the check passes (does not return if the check fails)
61 * the boolean expression of the check
64 * @return <code>true</code> if the check passes (does not return if the check fails)
115 * the format of error message to produce if the check fails, as expected by
131 * the format of error message to produce if the check fails, as expected by
182 * the format of error message to produce if the check fails, as expected b
    [all...]
  /external/libpng/
pngwio.c 52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
83 /* Check if data really is near. If so, use usual code. */
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr)
    [all...]
  /external/mockito/src/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsChecker.java 23 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { method in class:AtLeastXNumberOfInvocationsChecker
AtLeastXNumberOfInvocationsInOrderChecker.java 29 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { method in class:AtLeastXNumberOfInvocationsInOrderChecker
NonGreedyNumberOfInvocationsInOrderChecker.java 35 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context) { method in class:NonGreedyNumberOfInvocationsInOrderChecker
NumberOfInvocationsInOrderChecker.java 34 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context) { method in class:NumberOfInvocationsInOrderChecker
  /external/proguard/src/proguard/
GPL.java 37 public static void check() method in class:GPL
  /external/qemu/distrib/libpng-1.2.19/
pngwio.c 46 png_uint_32 check; local
50 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
51 check = 0;
53 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
55 if (check != length)
70 png_uint_32 check; local
75 /* Check if data really is near. If so, use usual code. */
81 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
82 check = 0;
84 check = fwrite(near_data, 1, length, io_ptr)
    [all...]
  /external/skia/dm/
DMWriteTask.cpp 91 bool WriteTask::Expectations::check(const Task& task, SkBitmap bitmap) const { function in class:DM::WriteTask::Expectations
  /external/smack/src/org/xbill/DNS/
DClass.java 43 check(int val) { method in class:DClass.DClassMnemonic
44 DClass.check(val);
68 check(int i) { method in class:DClass
TTL.java 21 check(long i) { method in class:TTL
88 TTL.check(ttl);
  /external/v8/test/cctest/
test-hashing.cc 155 void check(i::Vector<const char> string) { function
168 CHECK(code->IsCode());
180 CHECK(runtime_hash == codegen_hash);
184 void check(uint32_t key) { function
197 CHECK(code->IsCode());
210 CHECK(runtime_hash == codegen_hash);
216 check(i::Vector<const char>(ab, 2));
235 check(i::Vector<const char>("*", 1));
236 check(i::Vector<const char>(".zZ", 3));
237 check(i::Vector<const char>("muc", 3))
    [all...]
  /external/valgrind/main/helgrind/tests/
t2t.c 25 #define check if (ret != 0) printf("error %d at line %d\n", ret, __LINE__) macro
55 check;
60 check;
69 check;
74 check;
83 check;
89 check;
98 check;
103 check;
  /libcore/crypto/src/test/java/org/conscrypt/
ChainStrengthAnalyzerTest.java 95 assertBad(MD5_PEM, "Weak hash check did not fail as expected");
99 assertBad(SHORT_PEM, "Short modulus check did not fail as expected");
108 check(createCert(pem));
115 check(createCert(pem));
118 private static void check(X509Certificate cert) throws Exception { method in class:ChainStrengthAnalyzerTest
120 ChainStrengthAnalyzer.check(chain);
  /libcore/support/src/test/java/tests/security/
KeyFactoryTest.java 60 check(new KeyPair(publicKey, privateKey)); method
63 protected void check(KeyPair keyPair) {} method in class:KeyFactoryTest
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default02.pass.cpp 38 void check(int i);
57 check(0);
63 check(0);
78 void check(int i) function
pointer02.pass.cpp 38 void check(int i);
57 check(3);
61 check(0);
64 check(3);
69 check(0);
86 void check(int i) function

Completed in 3966 milliseconds

<<11121314151617181920>>