HomeSort by relevance Sort by last modified time
    Searched defs:found (Results 26 - 50 of 2358) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/tests/
SkSLFPTest.cpp 5 * found in the LICENSE file.
36 bool found = strstr(output.str().c_str(), expected); local
37 if (!found) {
41 REPORTER_ASSERT(r, found);
52 bool found = strstr(output.str().c_str(), expected); local
53 if (!found) {
57 REPORTER_ASSERT(r, found);
  /external/skqp/tests/
SkSLFPTest.cpp 5 * found in the LICENSE file.
36 bool found = strstr(output.str().c_str(), expected); local
37 if (!found) {
41 REPORTER_ASSERT(r, found);
52 bool found = strstr(output.str().c_str(), expected); local
53 if (!found) {
57 REPORTER_ASSERT(r, found);
  /external/syslinux/com32/hdt/
hdt-cli-kernel.c 42 bool found = false; local
73 found = true;
83 if (found == true) {
129 /* Print the found items */
  /external/tensorflow/tensorflow/core/lib/core/
stringpiece_test.cc 105 bool found[3] = {false, false, false}; local
109 EXPECT_TRUE(!found[x]);
110 found[x] = true;
112 EXPECT_EQ(found[0], true);
113 EXPECT_EQ(found[1], true);
114 EXPECT_EQ(found[2], true);
125 found[0] = false;
126 found[1] = false;
127 found[2] = false;
131 EXPECT_TRUE(!found[x])
    [all...]
  /external/toybox/toys/pending/
groupdel.c 30 int i, len = 0, found = 0; local
35 if (!found && !strcmp(*toys.optargs, grp->gr_mem[i])) found++;
38 if (!found)
  /external/valgrind/none/tests/solaris/
stack_prot.c 11 int found = 0; local
23 /* Read the file until EOF or the stack is found. */
24 while (!done && !found) {
40 /* Stack was found, validate it. */
41 found = 1;
50 /* Check if the stack was indeed found. */
51 if (!found) {
52 fprintf(stderr, "Stack not found.\n");
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 36 size_t found = fread((char*) buffer, 1, wanted, _file); local
40 return found;
in_memory_wrapper_input.cpp 30 size_t found = 0; local
36 while (found < wanted) {
38 return found;
40 buffer[found++] = _buffer[_pos++];
42 return found;
  /libcore/jsr166-tests/src/test/java/jsr166/
Collection8Test.java 53 final ArrayList found = new ArrayList(); local
54 Consumer<Object> spy = (o) -> { found.add(o); };
56 assertTrue(found.isEmpty());
60 assertEquals(Collections.singletonList(x), found); local
61 found.clear();
65 assertEquals(2, found.size());
66 assertTrue(found.contains(x));
67 assertTrue(found.contains(y));
68 found.clear();
72 assertTrue(found.isEmpty())
    [all...]
  /system/libvintf/
HalInterface.cpp 47 bool found = false; local
48 forEachInstance([&found](const auto&, const auto&, bool) {
49 found = true;
52 return found;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 74 QueuedOperation found = null; local
77 found = qo;
81 if (found != null) {
82 found.cancel();
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 124 bool found = false; local
129 found = true;
134 if (found) {
175 VLOG(signals) << "Stack overflow found";
  /art/test/661-oat-writer-layout/
oat_writer_layout.cc 57 bool found = false; local
60 /* out */ &found);
62 if (!found) {
  /cts/hostsidetests/jvmti/attaching/app/jni/
cts_agent.cpp 108 bool found = std::find(gLoadedDescriptors.begin(), gLoadedDescriptors.end(), tmp) != local
110 return found ? JNI_TRUE : JNI_FALSE;
  /cts/tests/tests/security/src/android/security/cts/
SELinuxTest.java 48 String found = KernelSettingsTest.getFile("/proc/self/attr/current"); local
51 ", Found: \"" + found + "\"";
52 assertTrue(msg, found.startsWith(expected));
57 String found = getFileContext(appDataDir.getAbsolutePath()); local
60 ", Found: \"" + found + "\"";
61 assertTrue(msg, found.startsWith(expected));
  /dalvik/libdex/
DexDataMap.cpp 127 int found = dexDataMapGet(map, offset); local
129 if (found == type) {
133 if (found < 0) {
134 ALOGE("No data map entry found @ %#x; expected %x",
137 ALOGE("Unexpected data map entry @ %#x: expected %x, found %x",
138 offset, type, found);
  /development/host/windows/usb/api/
adb_object_handle.cpp 113 AdbObjectHandleMap::iterator found = the_map.find(adb_handle()); local
114 ATLASSERT((found != the_map.end()) && (this == found->second));
116 if ((found != the_map.end()) && (this == found->second)) {
118 the_map.erase(found);
155 AdbObjectHandleMap::iterator found = the_map.find(adb_hndl); local
156 if (found != the_map.end()) {
157 ret = found->second;
  /external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
LocalClassScanner.java 44 if (lcs.found) {
52 private boolean found; field in class:LocalClassScanner
63 this.found = false;
76 if (!found && statement.getKind() == Tree.Kind.CLASS) {
79 found = true;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestJavaCodeGeneration.java 46 boolean found =
50 assertEquals(expecting, found);
59 boolean found =
63 assertEquals(expecting, found);
73 String found = execParser("T.g", grammar, "TParser", "TLexer", local
75 assertEquals("x\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer", local
87 assertEquals("x\n", found);
97 String found = execParser("T.g", grammar, "TParser", "TLexer", local
99 assertEquals("x\n", found);
    [all...]
TestSyntaxErrors.java 42 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "ae", false); local
56 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "abe", false); local
69 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "aaae", false); local
86 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "((i))z", false); local
  /external/autotest/client/profilers/powertop/src/
config.c 94 int found = 0; local
107 found = 1;
109 if (onoff || found)
  /external/cmockery/cmockery_0_1_2/src/example/
key_value_test.c 56 KeyValue * const found = find_item_by_value(key_values[i].value); local
57 assert_true(found);
58 assert_int_equal(found->key, key_values[i].key);
59 assert_string_equal(found->value, key_values[i].value);
  /external/e2fsprogs/lib/blkid/
resolve.c 31 blkid_tag found; local
47 (found = blkid_find_tag_dev(dev, tagname)))
48 ret = blkid_strdup(found->bit_val);
  /external/elfutils/libdw/
cie.c 163 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie); local
164 if (found != NULL)
165 return *found;
192 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie); local
193 if (found == NULL)
  /external/elfutils/tests/
get-aranges.c 65 Dwarf_Arange *found; local
67 found = dwarf_getarange_addr (aranges, testaddr[i]);
68 if (found != NULL)
72 if (dwarf_getarangeinfo (found, NULL, NULL, &cu_offset) != 0)

Completed in 777 milliseconds

12 3 4 5 6 7 8 91011>>