HomeSort by relevance Sort by last modified time
    Searched refs:found (Results 51 - 75 of 15010) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/antlr/antlr-3.4/runtime/Python/tests/
t053hetero.py 120 found = self.execParser(
125 self.failUnlessEqual("a<V>", found)
141 found = self.execParser(
145 self.failUnlessEqual("a", found)
167 found = self.execParser(
172 self.failUnlessEqual("a<V>", found)
194 found = self.execParser(grammar, 'a', input="a")
195 self.assertEquals("a<V>", found)
218 found = self.execParser(
223 self.failUnlessEqual("a<V>", found)
    [all...]
t049treeparser.py 76 found = self.execTreeParser(
82 self.failUnlessEqual("abc, 34", found)
110 found = self.execTreeParser(
116 self.failUnlessEqual("abc, 34", found)
146 found = self.execTreeParser(
151 self.failUnlessEqual("^(a 1)b 2\n", found)
181 found = self.execTreeParser(
186 self.failUnlessEqual("^(a 3)b 5\n", found)
215 found = self.execTreeParser(
220 self.failUnlessEqual("alt 1", found)
    [all...]
t055templates.py 45 found = self.execParser(
50 self.failUnlessEqual("id=abc, int=34", found)
85 found = self.execParser(
91 self.failUnlessEqual("[a+b]", found)
111 found = self.execParser(
116 self.failUnless(found is None)
140 found = self.execParser(
145 self.failUnlessEqual("abc,def,ghi", found)
164 found = self.execParser(
169 self.failUnlessEqual("hello", found)
    [all...]
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 34 Declarator found = (Declarator)get(name); local
35 if (found == null && parent != null)
38 return found;
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue4417.go 3 // license that can be found in the LICENSE file.
24 t.Fatalf("found %d expected 10\n", b)
28 t.Fatalf("found %d expected 5\n", b)
32 t.Fatalf("found %d expected 3\n", b)
36 t.Fatalf("found %d expected 1\n", b)
40 t.Fatalf("found %d expected 200\n", b)
  /prebuilts/go/linux-x86/misc/cgo/test/
issue4417.go 3 // license that can be found in the LICENSE file.
24 t.Fatalf("found %d expected 10\n", b)
28 t.Fatalf("found %d expected 5\n", b)
32 t.Fatalf("found %d expected 3\n", b)
36 t.Fatalf("found %d expected 1\n", b)
40 t.Fatalf("found %d expected 200\n", b)
  /external/libchrome/base/test/
trace_event_analyzer_unittest.cc 3 // found in the LICENSE file.
88 TraceEventVector found; local
89 analyzer->FindEvents(Query::Bool(true), &found); local
90 EXPECT_EQ(0u, found.size());
247 TraceEventVector found; local
251 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1"), &found);
252 ASSERT_EQ(2u, found.size());
253 EXPECT_STREQ("name1", found[0]->name.c_str());
254 EXPECT_STREQ("name2", found[1]->name.c_str());
256 analyzer->FindEvents(Query::EventArg("num") == Query::Int(2), &found);
262 analyzer->FindEvents(Query::EventCategory() != Query::String("cat1"), &found); local
337 TraceEventVector found; local
393 TraceEventVector found; local
406 analyzer->FindEvents(Query::EventName() != Query::Pattern("name*"), &found); local
443 TraceEventVector found; local
485 TraceEventVector found; local
517 TraceEventVector found; local
518 analyzer->FindEvents(Query::MatchBeginWithEnd(), &found); local
540 TraceEventVector found; local
573 TraceEventVector found; local
574 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
605 TraceEventVector found; local
606 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
669 TraceEventVector found; local
673 Query::EventHasOther(), &found); local
678 !Query::EventHasOther(), &found); local
683 !Query::EventHasOther(), &found); local
    [all...]
  /frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 103 TreeMap<String, ClassReader> found = new TreeMap<>(); local
106 zipClasses, found);
111 found.keySet().toArray());
112 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray());
122 TreeMap<String, ClassReader> found = new TreeMap<>(); local
125 found.clear();
126 mAa.findGlobs("mock_android.view", zipClasses, found);
129 found.keySet().toArray());
132 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found);
138 found.keySet().toArray())
185 TreeMap<String, ClassReader> found = new TreeMap<>(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTreeIterator.java 47 String found = buf.toString(); local
48 assertEquals(expecting, found);
58 String found = buf.toString(); local
59 assertEquals(expecting, found);
69 String found = buf.toString(); local
70 assertEquals(expecting, found);
80 String found = buf.toString(); local
81 assertEquals(expecting, found);
91 String found = buf.toString(); local
92 assertEquals(expecting, found);
102 String found = buf.toString(); local
113 String found = buf.toString(); local
    [all...]
  /external/pdfium/core/fpdfapi/cmaps/
fpdf_cmaps.cpp 3 // found in the LICENSE file.
47 const auto* found = std::lower_bound( local
55 if (found != end && loword >= found->m_LoWordLow &&
56 loword <= found->m_LoWordHigh) {
57 return found->m_CID + loword - found->m_LoWordLow;
75 const auto* found = std::lower_bound( local
79 if (found != end && found->code == loword
90 const auto* found = std::lower_bound( local
    [all...]
  /system/libvintf/
HalInterface.cpp 47 bool found = false; local
48 forEachInstance([&found](const auto&, const auto&, bool) {
49 found = true;
52 return found;
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getprotoname.c 55 goto found;
57 found:
  /external/chromium-libpac/test/js-unittest/
dns_fail.js 10 expectEq(null, dnsResolve("not-found"));
11 expectEq("", dnsResolveEx("not-found"));
13 expectEq(false, isResolvable("not-found"));
14 expectEq(false, isResolvableEx("not-found"));
  /external/strace/
flock.h 39 # error struct flock definition not found in <linux/fcntl.h>
47 # error struct flock64 definition not found in <linux/fcntl.h>
  /external/fio/oslib/
linux-dev-lookup.c 15 int found = 0; local
35 found = blktrace_lookup_device(redirect, full_path,
37 if (found) {
53 found = 1;
59 found = 1;
65 return found;
  /toolchain/binutils/binutils-2.27/
symlink-tree 60 found=
63 found=yes
66 if [ -z "${found}" ]; then
  /external/curl/lib/
parsedate.c 206 bool found = FALSE; local
213 found = TRUE;
218 return found?i:-1;
225 bool found = FALSE; local
230 found = TRUE;
235 return found?i:-1; /* return the offset or -1, no real offset is -1 */
239 of seconds or -1 if the timezone wasn't found/legal */
245 bool found = FALSE; local
250 found = TRUE;
255 return found?what->offset*60:-1
346 bool found = FALSE; local
    [all...]
  /system/vold/
Process.cpp 48 bool found = false; local
56 LOG(WARNING) << "Found map " << path << " referencing " << line;
57 found = true;
61 return found;
68 LOG(WARNING) << "Found symlink " << path << " referencing " << res;
92 bool found = false; local
94 found |= checkMaps(path + "/maps", prefix);
95 found |= checkSymlink(path + "/cwd", prefix);
96 found |= checkSymlink(path + "/root", prefix);
97 found |= checkSymlink(path + "/exe", prefix)
    [all...]
  /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...]
  /prebuilts/go/darwin-x86/src/sort/
example_search_test.go 3 // license that can be found in the LICENSE file.
19 fmt.Printf("found %d at index %d in %v\n", x, i, a)
21 fmt.Printf("%d not found in %v\n", x, a)
24 // found 6 at index 2 in [1 3 6 10 15 21 28 36 45 55]
36 fmt.Printf("found %d at index %d in %v\n", x, i, a)
38 fmt.Printf("%d not found in %v\n", x, a)
41 // found 6 at index 7 in [55 45 36 28 21 15 10 6 3 1]
  /prebuilts/go/linux-x86/src/sort/
example_search_test.go 3 // license that can be found in the LICENSE file.
19 fmt.Printf("found %d at index %d in %v\n", x, i, a)
21 fmt.Printf("%d not found in %v\n", x, a)
24 // found 6 at index 2 in [1 3 6 10 15 21 28 36 45 55]
36 fmt.Printf("found %d at index %d in %v\n", x, i, a)
38 fmt.Printf("%d not found in %v\n", x, a)
41 // found 6 at index 7 in [55 45 36 28 21 15 10 6 3 1]
  /frameworks/base/tools/bit/
adb.cpp 347 * Get the second to last bundle in the args list. Stores the last name found
348 * in last. If the path is not found or if the args list is empty, returns NULL.
358 bool found = false;
366 found = true;
370 if (!found) {
381 get_bundle_string(const ResultsBundle& bundle, bool* found, ...)
384 va_start(args, found);
388 *found = false;
392 *found = true;
395 *found = false
    [all...]
  /external/syslinux/com32/modules/
ifmemdsk.c 30 If a MEMDISK is found, or if a particular MEMDISK is sought by the options\n\
31 and is found, then the 'detected_cmd' action will be taken, else the\n\
90 int found; local
150 found = 0;
151 found += do_walk_safe_hooks();
152 found += do_scan_mbfts();
153 found += do_scan_drives();
155 cmd = found ? detected_cmd : not_detected_cmd;
164 int found; local
180 found =
195 int found, drive; local
214 int found; local
268 int found; local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 159 * If found, the token is stored in {@link #currentToken}.
163 * If not found, {@link #currentToken} is set to <code>null</code>.
168 * @return the position after the found token in the current header, or
191 return -1; // nothing found
233 * negative if no token start could be found
241 boolean found = false;
242 while (!found && (this.currentHeader != null)) {
245 while (!found && (from < to)) {
252 // found the start of a token
253 found = true
    [all...]

Completed in 460 milliseconds

1 23 4 5 6 7 8 91011>>