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

12 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/libvpx/source/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"
  /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"
  /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/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;
  /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/third_party/WebKit/Source/core/dom/
NodeRenderingTraversal.h 70 ContainerNode* found = parent(node); local
71 return found && found->isElementNode() ? toElement(found) : 0;
UserActionElementSet.cpp 79 ElementFlagMap::const_iterator found = m_elements.find(const_cast<Element*>(element)); local
80 if (found == m_elements.end())
82 return found->value & flags;
92 ElementFlagMap::iterator found = m_elements.find(element); local
93 if (found == m_elements.end()) {
98 unsigned updated = found->value & ~flags;
101 m_elements.remove(found);
105 found->value = updated;
  /external/chromium_org/third_party/WebKit/Source/platform/
RefCountedSupplement.h 64 Supplement<T>* found = static_cast<Supplement<T>*>(host.requireSupplement(key)); local
65 if (!found)
67 ASSERT_WITH_SECURITY_IMPLICATION(found->isRefCountedWrapper());
68 return static_cast<Wrapper*>(found)->wrapped();
  /external/chromium_org/third_party/cython/src/Tools/
cython-epydoc.py 28 found = parse_signature(func_doc, doc_source,
31 if not found:
32 found = parse_signature(func_doc, doc_source,
34 return found
  /external/chromium_org/base/test/
trace_event_analyzer_unittest.cc 3 // found in the LICENSE file.
79 TraceEventVector found; local
80 analyzer->FindEvents(Query::Bool(true), &found); local
81 EXPECT_EQ(0u, found.size());
231 TraceEventVector found; local
235 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1"), &found);
236 ASSERT_EQ(2u, found.size());
237 EXPECT_STREQ("name1", found[0]->name.c_str());
238 EXPECT_STREQ("name2", found[1]->name.c_str());
240 analyzer->FindEvents(Query::EventArg("num") == Query::Int(2), &found);
246 analyzer->FindEvents(Query::EventCategory() != Query::String("cat1"), &found); local
321 TraceEventVector found; local
377 TraceEventVector found; local
390 analyzer->FindEvents(Query::EventName() != Query::Pattern("name*"), &found); local
427 TraceEventVector found; local
468 TraceEventVector found; local
499 TraceEventVector found; local
500 analyzer->FindEvents(Query::MatchBeginWithEnd(), &found); local
522 TraceEventVector found; local
555 TraceEventVector found; local
556 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
587 TraceEventVector found; local
588 analyzer->FindEvents(Query::MatchAsyncBeginWithNext(), &found); local
645 TraceEventVector found; local
649 Query::EventHasOther(), &found); local
654 !Query::EventHasOther(), &found); local
659 !Query::EventHasOther(), &found); local
    [all...]
  /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/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;
regress-put-prototype-transition.js 3 // found in the LICENSE file.
8 assertSame = function assertSame(expected, found, name_opt) { if (found === expected) { if (expected !== 0 || (1 / expected) == (1 / found)) return; } else if ((expected !== expected) && (found !== found)) { return; } fail(PrettyPrint(expected), found, name_opt); }; assertEquals = function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(PrettyPrint(expected), found, name_opt); } }
    [all...]
regress-crbug-349079.js 3 // found in the LICENSE file.
7 function assertEquals(expected, found) {
8 return found === expected;
  /external/chromium_org/extensions/browser/
content_verifier_io_data.cc 3 // found in the LICENSE file.
36 std::map<std::string, linked_ptr<ExtensionData> >::iterator found = local
38 if (found != data_map_.end())
39 data_map_.erase(found);
50 std::map<std::string, linked_ptr<ExtensionData> >::iterator found = local
52 if (found != data_map_.end())
53 return found->second.get();
  /external/llvm/autoconf/m4/
func_isnan.m4 11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
  /external/chromium_org/storage/browser/blob/
blob_storage_context.cc 3 // found in the LICENSE file.
63 BlobMap::iterator found = blob_map_.find(uuid); local
64 if (found == blob_map_.end())
66 if (found->second.flags & EXCEEDED_MEMORY)
68 DCHECK(!(found->second.flags & BEING_BUILT));
70 found->second.data.get(), this, base::MessageLoopProxy::current().get()));
76 BlobURLMap::iterator found = public_blob_urls_.find( local
78 if (found == public_blob_urls_.end())
80 return GetBlobDataFromUUID(found->second);
125 BlobMap::iterator found = blob_map_.find(uuid) local
196 BlobMap::iterator found = blob_map_.find(uuid); local
209 BlobMap::iterator found = blob_map_.find(uuid); local
218 BlobMap::iterator found = blob_map_.find(uuid); local
315 BlobMap::iterator found = blob_map_.find(uuid); local
    [all...]
  /external/chromium_org/content/common/dom_storage/
dom_storage_map.cc 3 // found in the LICENSE file.
58 DOMStorageValuesMap::const_iterator found = values_.find(key); local
59 if (found == values_.end())
61 return found->second;
67 DOMStorageValuesMap::const_iterator found = values_.find(key); local
68 if (found == values_.end())
71 *old_value = found->second;
92 DOMStorageValuesMap::iterator found = values_.find(key); local
93 if (found == values_.end())
95 *old_value = found->second.string()
    [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 404 milliseconds

12 3 4 5 6 7 8 91011>>