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

1 2 3 4 5 6 7 891011>>

  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 197 public void check(Certificate arg0, Collection arg1) method
210 // just to check this checker state
  /external/chromium_org/chrome/browser/extensions/
blacklist.cc 213 std::set<std::string> check; local
214 check.insert(extension_id);
215 GetBlacklistedIDs(check, base::Bind(&CheckOneExtensionState, callback));
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8BindingTest.cpp 17 #define CHECK_TOV8VALUE(expected, value) check(expected, value, __FILE__, __LINE__)
41 void check(const char* expected, const T& value, const char* path, int lineNumber) function in class:blink::__anon15531::V8ValueTraitsTest
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.h 59 void check() const { function in class:TAllocation
  /external/chromium_org/third_party/icu/source/test/cintltst/
uregiontest.c 523 const char *check; local
526 while ((check = uenum_next(preferredRegions, NULL, &status)) != NULL && U_SUCCESS(status) ) {
527 if ( !uprv_strcmp(check,preferredCode) ) {
  /external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
DateFmtPerf.h 169 check(status2, "Calendar::createInstance");
186 check(status2, "Calendar::getTime");
225 void check(UErrorCode& status, const char* msg) { function in class:DateFmtFunction
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
FieldVerifier.java 179 // First check these exist.
211 protected boolean check(ScriptType script, AddressProblemType problem, AddressField field, method in class:FieldVerifier
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format5.cc 35 int32_t check = CheckGlyphRange(glyph_id); local
36 if (check == -1) {
51 int32_t check = CheckGlyphRange(glyph_id); local
52 if (check == -1) {
103 int32_t check = CheckGlyphRange(glyph_id); local
104 if (check == -1) {
  /external/chromium_org/tools/emacs/
flymake-chromium.el 75 (defun cr-flymake-kick-off-check-after-save ()
76 "Kick off a syntax check after file save, if flymake-mode is on."
77 (when flymake-mode (flymake-start-syntax-check)))
116 (add-hook 'after-save-hook 'cr-flymake-kick-off-check-after-save)
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 127 // Insert a newly created value check as a replacement for map checks.
132 // TODO(mstarzinger): This will narrow a map check against a set of maps
134 HCheckValue* check = HCheckValue::New( local
136 check->InsertBefore(mapcheck);
137 return check;
232 HCheckHeapObject* check = HCheckHeapObject::cast(instr); local
233 if (check->value() != allocate) continue;
234 check->DeleteAndReplaceWith(check->ActualValue());
  /external/clang/test/CXX/class.access/
p6.cpp 161 void check();
167 void A::check() { function in class:test7::A
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 80 bool check(A *a) { function in class:test2::HasChecker
85 bool check(A *a) { function in class:test2::HasNotChecker
  /external/clang/test/CodeGenCXX/
pointers-to-data-members.cpp 3 // RUN: FileCheck -check-prefix=CHECK-GLOBAL %s < %t.ll
5 // RUN: FileCheck --check-prefix=CHECK-O3 %s < %t-opt.ll
13 // CHECK-GLOBAL: @_ZN8ZeroInit1aE = global i64 -1
16 // CHECK-GLOBAL: @_ZN8ZeroInit2aaE = global [2 x i64] [i64 -1, i64 -1]
19 // CHECK-GLOBAL: @_ZN8ZeroInit3aaaE = global [2 x [2 x i64]] {{\[}}[2 x i64] [i64 -1, i64 -1], [2 x i64] [i64 -1, i64 -1]]
22 // CHECK-GLOBAL: @_ZN8ZeroInit1bE = global i64 -1,
25 // CHECK-GLOBAL: @_ZN8ZeroInit2saE = internal global %struct.anon { i64 -1 }
31 // CHECK-GLOBAL: @_ZN8ZeroInit3ssaE = interna
155 bool check() { function in namespace:PR7139
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bitvector.h 50 CHECK(!empty());
145 check(idx);
160 check(idx);
174 check(idx);
193 CHECK(0);
302 CHECK(it1_.hasNext());
308 CHECK(it2_.hasNext());
325 void check(uptr idx) const { CHECK_LE(idx, size()); } function in class:__sanitizer::TwoLevelBitVector
  /external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp 131 void check (GLenum attPoint, const Attachment& att,
138 void ES2Checker::check(GLenum attPoint, const Attachment& att, const Image* image) function in class:deqp::gles2::Functional::ES2Checker
  /external/deqp/modules/gles3/functional/
es3fFboCompletenessTests.cpp 161 void check (GLenum attPoint, const Attachment& att, const Image* image);
172 void ES3Checker::check (GLenum attPoint, const Attachment& att, const Image* image) function in class:deqp::gles3::Functional::ES3Checker
  /external/doclava/src/com/google/doclava/
FieldInfo.java 218 check: {
222 break check; local
406 // Check the declared value with a typed comparison, not a string comparison,
  /external/freetype/src/gzip/
infutil.h 58 check_func checkfn; /* check function */
59 uLong check; /* check on output */ member in struct:inflate_blocks_state
  /external/icu/icu4c/source/test/cintltst/
uregiontest.c 523 const char *check; local
526 while ((check = uenum_next(preferredRegions, NULL, &status)) != NULL && U_SUCCESS(status) ) {
527 if ( !uprv_strcmp(check,preferredCode) ) {
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
DateFmtPerf.h 169 check(status2, "Calendar::createInstance");
186 check(status2, "Calendar::getTime");
225 void check(UErrorCode& status, const char* msg) { function in class:DateFmtFunction
  /external/jsmn/
jsmn_test.c 14 /* Check single condition */
15 #define check(cond) do { if (!(cond)) fail(); } while (0) macro
53 check(r >= 0);
54 check(t[0].type == JSMN_OBJECT);
55 check(t[0].start == 0 && t[0].end == 2);
60 check(r >= 0);
61 check(t[0].type == JSMN_ARRAY);
62 check(t[0].start == 0 && t[0].end == 2);
67 check(r >= 0);
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8)
    [all...]
  /external/libunwind/tests/
Gia64-test-nat.c 100 check_func_t *check; member in struct:__anon4270
594 checks[i] = all_funcs[index].check;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 35 static inline std::error_code check(std::error_code Err) { function in namespace:__anon5408
394 // "Check that -2^27 <= result < 2^27".
458 // Check that -2^32 <= X < 2^32
461 "overflow check failed for relocation");
637 check(si->getName(SectionName));
667 check(RelSecI->getName(RelSectionName));
677 check(i->getType(TypeFunc));
685 check(i->getOffset(TargetSymbolOffset));
687 check(getELFRelocationAddend(*i, Addend));
693 // Just check if following relocation is a R_PPC64_TO
    [all...]
  /external/lzma/C/
XzEnc.c 159 CXzCheck check; member in struct:__anon6303
165 XzCheck_Init(&p->check, mode);
170 XzCheck_Final(&p->check, digest);
177 XzCheck_Update(&p->check, data, *size);
220 CXzCheck check;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 50 public static boolean check; field in class:InsnList
150 * @throws IllegalArgumentException if {@link #check} is <tt>true</tt> and
154 if (check && !contains(insn)) {
217 * @throws IllegalArgumentException if {@link #check} is <tt>true</tt>,
222 if (check && !(contains(location) && insn.index == -1)) {
256 * @throws IllegalArgumentException if {@link #check} is <tt>true</tt>,
260 if (check && insn.index != -1) {
280 * @throws IllegalArgumentException if {@link #check} is <tt>true</tt>,
284 if (check && insns == this) {
309 * @throws IllegalArgumentException if {@link #check} is <tt>true</tt>,
    [all...]

Completed in 1310 milliseconds

1 2 3 4 5 6 7 891011>>