HomeSort by relevance Sort by last modified time
    Searched defs:success (Results 1 - 25 of 1599) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
028-define-chain-obj-to-non-func.c 1 #define success() failure macro
2 #define foo success
  /external/icu/icu4c/source/layout/
OpenTypeUtilities.h 23 static Offset getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success);
25 LEErrorCode success = LE_NO_ERROR; local
27 LEReferenceToArrayOf<GlyphRangeRecord> recordRef(recordRef0, success, (size_t)0, recordCount);
28 return getGlyphRangeIndex(glyphID, recordRef, success);
30 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success);
  /external/v8/benchmarks/
run.js 39 var success = true; variable
48 success = false;
53 if (success) {
  /external/v8/test/js-perf-test/Classes/
run.js 11 var success = true; variable
20 success = false;
  /external/v8/test/js-perf-test/Collections/
run.js 14 var success = true; variable
23 success = false;
  /external/v8/test/js-perf-test/Exceptions/
run.js 9 var success = true; variable
18 success = false;
  /external/v8/test/js-perf-test/Iterators/
run.js 10 var success = true; variable
19 success = false;
  /external/v8/test/js-perf-test/Object/
run.js 9 var success = true; variable
18 success = false;
  /external/v8/test/js-perf-test/RestParameters/
run.js 9 var success = true; variable
18 success = false;
  /external/v8/test/js-perf-test/Scope/
run.js 9 var success = true; variable
18 success = false;
  /external/v8/test/js-perf-test/SpreadCalls/
run.js 10 var success = true; variable
19 success = false;
  /external/v8/test/js-perf-test/Strings/
run.js 10 var success = true; variable
19 success = false;
  /external/v8/test/js-perf-test/Templates/
run.js 10 var success = true; variable
19 success = false;
  /external/webrtc/talk/app/webrtc/objctests/
RTCSessionDescriptionSyncObserver.h 43 // Whether an SDP-related callback reported success.
44 @property(atomic, assign) BOOL success; variable
  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 34 bool success = FillArrayData(array, payload); local
35 return success ? 0 : -1;
  /external/skia/tests/
DiscardableMemoryTest.cpp 24 bool success = dm->lock(); local
25 REPORTER_ASSERT(reporter, success);
26 if (!success) {
IndexedPngOverflowTest.cpp 33 bool success = decode_memory(gPng, sizeof(gPng), &image); local
34 REPORTER_ASSERT(reporter, success);
  /external/mesa3d/src/gallium/tests/unit/
u_format_compatible_test.c 71 boolean success; local
73 success = test_all();
75 return success ? 0 : 1;
  /external/testng/src/test/java/test/alwaysrun/
AlwaysRunAfter2.java 21 static public boolean success() { method in class:AlwaysRunAfter2
AlwaysRunTest.java 22 assertTrue(AlwaysRunAfter1.success(), "afterTestMethod should have run");
33 assertTrue(AlwaysRunAfter2.success(), "afterTestMethod should not have run");
45 assertTrue(AlwaysRunBefore1.success(), "before alwaysRun methods should have been run");
  /external/testng/src/test/java/test/annotationtransformer/
MyParamTransformer.java 11 private boolean success = true; field in class:MyParamTransformer
17 success = false;
28 return success;
  /art/compiler/
elf_writer.cc 52 bool success = elf_file->GetLoadedSize(oat_loaded_size, &error_msg); local
53 CHECK(success) << error_msg;
  /art/compiler/linker/
buffered_output_stream.cc 55 bool success = true; local
57 success = out_->WriteFully(&buffer_[0], used_);
60 return success;
  /art/test/457-regs/
regs_jni.cc 66 bool success = GetVReg(m, 2, kIntVReg, &value); local
68 CHECK(!success);
  /cts/tests/openglperf2/jni/reference/
GLReference.cpp 37 bool success = renderer->eglSetUp(); local
38 success = renderer->setUp(0) && success;
44 for (int i = 0; i < numFrames && success; i++) {
46 success = renderer->update(i);
48 success = success && renderer->draw();
57 success = renderer->tearDown() && success;
64 return success;
    [all...]

Completed in 267 milliseconds

1 2 3 4 5 6 7 8 91011>>