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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle/src/compiler/
QualifierAlive.cpp 4 // found in the LICENSE file.
11 TAliveTraverser(TQualifier q) : TIntermTraverser(true, false, false, true), found(false), qualifier(q)
15 bool wasFound() { return found; }
18 bool found; member in class:TAliveTraverser
49 found = true;
  /external/chromium/net/socket_stream/
socket_stream_job_manager.cc 3 // found in the LICENSE file.
35 FactoryMap::const_iterator found = factories_.find(scheme); local
36 if (found != factories_.end()) {
37 SocketStreamJob* job = found->second(url, delegate);
52 FactoryMap::iterator found = factories_.find(scheme); local
53 if (found != factories_.end()) {
54 old_factory = found->second;
60 } else if (found != factories_.end()) {
61 factories_.erase(found);
  /external/chromium_org/net/socket_stream/
socket_stream_job_manager.cc 3 // found in the LICENSE file.
35 FactoryMap::const_iterator found = factories_.find(scheme); local
36 if (found != factories_.end()) {
37 SocketStreamJob* job = found->second(url, delegate);
52 FactoryMap::iterator found = factories_.find(scheme); local
53 if (found != factories_.end()) {
54 old_factory = found->second;
60 } else if (found != factories_.end()) {
61 factories_.erase(found);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga3d_caps.h 51 * Record types that can be found in the caps block.
110 * Result: pointer to found record, or NULL if not found.
120 SVGA3dCapsRecord *record, *found = NULL; local
130 (!found || (record->header.type > found->header.type))) {
131 found = record;
135 return found;
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_caps.h 51 * Record types that can be found in the caps block.
110 * Result: pointer to found record, or NULL if not found.
120 SVGA3dCapsRecord *record, *found = NULL; local
130 (!found || (record->header.type > found->header.type))) {
131 found = record;
135 return found;
  /external/libvpx/libvpx/build/make/
armlink_adapter.sh 6 ## that can be found in the LICENSE file in the root of the source
7 ## tree. An additional intellectual property rights grant can be found
9 ## be found in the AUTHORS file in the root of the source tree.
39 found=0
41 [ -f "$d/$f" ] && infiles="$infiles $d/$f" && found=1 && break
42 [ -f "$d/lib${f}.so" ] && infiles="$infiles $d/lib${f}.so" && found=1 && break
43 [ -f "$d/lib${f}.a" ] && infiles="$infiles $d/lib${f}.a" && found=1 && break
45 [ $found -eq 0 ] && infiles="$infiles $f"
  /dalvik/vm/
Intern.cpp 73 StringObject* found; local
85 * A match was found in the literal table, the easy case.
87 found = literal;
96 * A match was found in the interned table. Move the
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
107 found = insertString(gDvm.literalStrings, key, strObj);
108 assert(found == strObj);
115 found = lookupString(gDvm.literalStrings, key, strObj);
116 if (found == NULL)
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj); local
    [all...]
  /external/libsepol/tests/
test-expander-users.c 37 unsigned char *found; /* array of booleans of roles found */ local
38 int extra = 0; /* number of extra roles found */
42 printf("%s not found\n", user_name);
43 CU_FAIL("user not found");
46 found = calloc(num_roles, sizeof(unsigned char));
47 CU_ASSERT_FATAL(found != NULL);
54 found[j] += 1;
61 if (found[j] != 1) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j])
    [all...]
  /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/chromium_org/media/cdm/ppapi/
cdm_helpers.cc 3 // found in the LICENSE file.
34 FreeBufferMap::iterator found = free_buffers_.lower_bound(capacity); local
35 if (found == free_buffers_.end()) {
42 buffer = found->second.second;
43 buffer_id = found->second.first;
44 free_buffers_.erase(found);
56 AllocatedBufferMap::iterator found = allocated_buffers_.find(buffer_id);
57 if (found == allocated_buffers_.end())
60 pp::Buffer_Dev& buffer = found->second;
64 allocated_buffers_.erase(found);
    [all...]
  /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...]
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 34 Declarator found = (Declarator)get(name); local
35 if (found == null && parent != null)
38 return found;
  /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/chromium_org/net/base/
linked_hash_map.h 3 // found in the LICENSE file.
96 typename MapType::iterator found = map_.find(key); local
97 if (found == map_.end()) return 0;
99 list_.erase(found->second);
100 map_.erase(found);
109 typename MapType::iterator found = map_.find(position->first); local
110 CHECK(found->second == position)
114 map_.erase(found);
125 // value found, or to end() if the value was not found. Like a map, thi
128 typename MapType::iterator found = map_.find(key); local
136 typename MapType::const_iterator found = map_.find(key); local
176 typename MapType::iterator found = map_.find(pair.first); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeRenderingTraversal.h 76 Node* found = parent(node, &unusedDetails); local
77 return found && found->isElementNode() ? toElement(found) : 0;
UserActionElementSet.cpp 77 ElementFlagMap::const_iterator found = m_elements.find(const_cast<Element*>(element)); local
78 if (found == m_elements.end())
80 return found->value & flags;
90 ElementFlagMap::iterator found = m_elements.find(element); local
91 if (found == m_elements.end()) {
96 unsigned updated = found->value & ~flags;
99 m_elements.remove(found);
103 found->value = updated;
  /external/chromium_org/third_party/WebKit/Source/platform/
RefCountedSupplement.h 63 Supplement<T>* found = host->requireSupplement(key); local
64 if (!found)
66 ASSERT_WITH_SECURITY_IMPLICATION(found->isRefCountedWrapper());
67 return static_cast<Wrapper*>(found)->wrapped();
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 107 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local
110 zipClasses, found);
115 found.keySet().toArray());
116 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray());
126 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local
129 found.clear();
130 mAa.findGlobs("mock_android.view", zipClasses, found);
133 found.keySet().toArray());
136 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found);
142 found.keySet().toArray())
189 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>(); local
    [all...]
  /external/chromium_org/base/test/
trace_event_analyzer_unittest.cc 3 // found in the LICENSE file.
78 TraceEventVector found; local
79 analyzer->FindEvents(Query::Bool(true), &found); local
80 EXPECT_EQ(0u, found.size());
229 TraceEventVector found; local
233 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1"), &found);
234 ASSERT_EQ(2u, found.size());
235 EXPECT_STREQ("name1", found[0]->name.c_str());
236 EXPECT_STREQ("name2", found[1]->name.c_str());
238 analyzer->FindEvents(Query::EventArg("num") == Query::Int(2), &found);
244 analyzer->FindEvents(Query::EventCategory() != Query::String("cat1"), &found); local
319 TraceEventVector found; local
374 TraceEventVector found; local
387 analyzer->FindEvents(Query::EventName() != Query::Pattern("name*"), &found); local
424 TraceEventVector found; local
465 TraceEventVector found; local
496 TraceEventVector found; local
497 analyzer->FindEvents(Query::MatchBeginWithEnd(), &found); local
519 TraceEventVector found; local
552 TraceEventVector found; local
553 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
584 TraceEventVector found; local
585 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
642 TraceEventVector found; local
646 Query::EventHasOther(), &found); local
651 !Query::EventHasOther(), &found); local
656 !Query::EventHasOther(), &found); local
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_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/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/chromium_org/content/browser/service_worker/
embedded_worker_instance.cc 3 // found in the LICENSE file.
44 ProcessRefMap::iterator found = process_refs_.find(process_id); local
45 if (found == process_refs_.end())
46 found = process_refs_.insert(std::make_pair(process_id, 0)).first;
47 ++found->second;
51 ProcessRefMap::iterator found = process_refs_.find(process_id); local
52 if (found == process_refs_.end()) {
56 if (--found->second == 0)
57 process_refs_.erase(found);
  /external/chromium_org/net/data/proxy_resolver_v8_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/chromium_org/v8/test/mjsunit/regress/
regress-crbug-346636.js 3 // found in the LICENSE file.
7 function assertSame(expected, found) {
8 if (found === expected) {
9 if (expected !== 0 || (1 / expected) == (1 / found)) return;

Completed in 1820 milliseconds

12 3 4 5 6 7 8 91011>>