Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 1923) sorted by relevance

12345678910>>...77

/external/e2fsprogs/tests/f_expand/
Dexpect.1.gz
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
Dmappy_content_script.js11 var found;
21 found = node;
27 if (found) {
29 if (found.childNodes.length) {
30 for (var i = 0; i < found.childNodes.length; ++i) {
31 text += found.childNodes[i].textContent + " ";
34 text = found.textContent;
42 console.log("bad initial match: " + found.textContent);
/external/clang/test/Parser/
Dobjc-messaging-1.m7 [a ii]; // expected-warning{{not found}}
8 [a if: 1 :2]; // expected-warning{{not found}}
9 [a inout: 1 :2 another:(2,3,4)]; // expected-warning{{not found}} \
11 [a inout: 1 :2 another:(2,3,4), 6,6,8]; // expected-warning{{not found}} \
13 [a inout: 1 :2 another:(2,3,4), (6,4,5),6,8]; // expected-warning{{not found}} \
15 [a inout: 1 :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
17 [a long: 1 :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
19 [a : "Hello\n" :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
23 [a, b, c foo]; // expected-warning{{not found}} \
/external/chromium/net/socket_stream/
Dsocket_stream_job_manager.cc35 FactoryMap::const_iterator found = factories_.find(scheme); in CreateJob() local
36 if (found != factories_.end()) { in CreateJob()
37 SocketStreamJob* job = found->second(url, delegate); in CreateJob()
52 FactoryMap::iterator found = factories_.find(scheme); in RegisterProtocolFactory() local
53 if (found != factories_.end()) { in RegisterProtocolFactory()
54 old_factory = found->second; in RegisterProtocolFactory()
60 } else if (found != factories_.end()) { in RegisterProtocolFactory()
61 factories_.erase(found); in RegisterProtocolFactory()
/external/webkit/LayoutTests/fast/dom/NodeList/
Dinvalidate-node-lists-when-parsing-expected.txt3 If the test passes, you should see "before: not found", "after: found" and "onload: found".
5 …idated when the testElement is parsed, both before and after will be "not found", which is a failu…
7 before: not found
8 after: found
9 onload: found
/external/v8/test/mjsunit/
Dmjsunit.js90 function fail(expected, found, name_opt) { argument
98 "> found <" + MjsUnitToString(found) + ">";
158 function assertSame(expected, found, name_opt) { argument
159 if (found !== expected) {
160 fail(expected, found, name_opt);
165 function assertEquals(expected, found, name_opt) { argument
166 if (!deepEquals(found, expected)) {
167 fail(expected, found, name_opt);
172 function assertArrayEquals(expected, found, name_opt) { argument
177 assertEquals(expected.length, found.length, start + "array length");
[all …]
/external/e2fsprogs/tests/f_lpffile/
Dexpect.14 /lost+found is not a directory (ino=11)
7 /lost+found not found. Create? yes
11 Connect to /lost+found? yes
14 Connect to /lost+found? yes
19 Connect to /lost+found? yes
24 Connect to /lost+found? yes
/external/valgrind/main/memcheck/tests/
Dvarinfo5.stderr.exp1 Uninitialised byte(s) found during client check request
12 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
28 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
52 Uninitialised byte(s) found during client check request
61 Uninitialised byte(s) found during client check request
70 Uninitialised byte(s) found during client check request
79 Uninitialised byte(s) found during client check request
[all …]
Dvarinfo5.stderr.exp-ppc641 Uninitialised byte(s) found during client check request
12 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
28 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
52 Uninitialised byte(s) found during client check request
61 Uninitialised byte(s) found during client check request
70 Uninitialised byte(s) found during client check request
79 Uninitialised byte(s) found during client check request
[all …]
Dvarinfo3.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
15 Uninitialised byte(s) found during client check request
22 Uninitialised byte(s) found during client check request
29 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
51 Uninitialised byte(s) found during client check request
Dvarinfo1.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
26 Uninitialised byte(s) found during client check request
32 Uninitialised byte(s) found during client check request
Dvarinfo3.stderr.exp-ppc641 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
15 Uninitialised byte(s) found during client check request
22 Uninitialised byte(s) found during client check request
29 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
51 Uninitialised byte(s) found during client check request
/external/apache-http/src/org/apache/http/message/
DBasicTokenIterator.java236 boolean found = false; in findTokenStart()
237 while (!found && (this.currentHeader != null)) { in findTokenStart()
240 while (!found && (from < to)) { in findTokenStart()
248 found = true; in findTokenStart()
255 if (!found) { in findTokenStart()
265 return found ? from : -1; in findTokenStart()
292 boolean found = false; in findTokenSeparator()
294 while (!found && (from < to)) { in findTokenSeparator()
297 found = true; in findTokenSeparator()
/external/e2fsprogs/tests/f_dup_de/
Dexpect.13 Duplicate entry 'mailcap.dpkg-old' found.
8 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
10 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
12 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
14 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
19 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
21 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
Dexpect-nohtree.16 Duplicate entry 'mailcap.dpkg-old' found.
11 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
13 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
15 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
17 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
22 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
24 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
/external/webkit/Source/WebCore/storage/
DIDBTransactionCoordinator.cpp84 bool found = false; in isActive() local
86 found = true; in isActive()
88 ASSERT(!found); in isActive()
89 found = true; in isActive()
91 ASSERT(found == m_transactions.contains(transaction)); in isActive()
92 return found; in isActive()
/external/clang/test/SemaObjC/
Dmethod-undefined-warn-1.m6 - (int) int_meth; // expected-note {{method definition for 'int_meth' not found}}
7 + (int) cls_meth; // expected-note {{method definition for 'cls_meth' not found}}
8 + (void) cls_meth1 : (int) arg1; // expected-note {{method definition for 'cls_meth1:' not found}}
20 - (int) int_meth; // expected-note {{method definition for 'int_meth' not found}}
21 + (int) cls_meth; // expected-note {{method definition for 'cls_meth' not found}}
22 + (void) cls_meth1 : (int) arg1; // expected-note {{method definition for 'cls_meth1:' not found}}
54 …[self someFunction]; // expected-warning {{method '+someFunction' not found (return type defaults …
Dmethod-lookup-3.m22 -(void) x; // expected-note {{also found}}
23 -(void) y; // expected-note {{also found}}
24 -(void) z; // expected-note {{also found}}
31 Abstract *l = [a0 x]; // expected-warning {{multiple methods named 'x' found}}
35 Abstract *l = [a0 y]; // expected-warning {{multiple methods named 'y' found}}
39 Abstract *l = [a0 z]; // expected-warning {{multiple methods named 'z' found}}
70 @interface Test4B - (struct test4b) test4; @end //expected-note{{also found}}
72 (void) [x test4]; //expected-warning {{multiple methods named 'test4' found}}
/external/skia/src/animator/
DSkDisplayList.cpp62 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) { in findGroup() argument
66 return SearchForMatch(match, list, parent, found, grandList); in findGroup()
80 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) { in SearchForMatch() argument
81 *found = NULL; in SearchForMatch()
90 …cope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index)) in SearchForMatch()
101 … if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index)) in SearchForMatch()
109 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) { in SearchGroupForMatch() argument
114 int groupIndex = group->findGroup(match, list, parent, found, grandList); in SearchGroupForMatch()
116 *found = group; in SearchGroupForMatch()
/external/chromium/chrome/browser/history/
Dhistory_types.cc165 URLToResultIndices::const_iterator found = url_to_results_.find(url); in MatchesForURL() local
166 if (found == url_to_results_.end()) { in MatchesForURL()
174 DCHECK(!found->second->empty()); in MatchesForURL()
176 *num_matches = found->second->size(); in MatchesForURL()
177 return &found->second->front(); in MatchesForURL()
246 URLToResultIndices::iterator found = url_to_results_.find(*url); in DeleteRange() local
247 if (found == url_to_results_.end()) { in DeleteRange()
253 for (int match = 0; match < static_cast<int>(found->second->size()); in DeleteRange()
255 if (found->second[match] >= begin && found->second[match] <= end) { in DeleteRange()
257 found->second->erase(found->second->begin() + match); in DeleteRange()
[all …]
/external/e2fsprogs/resize/
Dtest_extent.in28 # Answer: 0 (not found)
32 # Answer: 0 (not found)
36 # Answer: 0 (not found)
38 # Answer: 0 (not found)
46 # Answer: 0 (not found)
/external/libvpx/build/make/
Darmlink_adapter.sh39 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/chromium/chrome/browser/chromeos/
Dproxy_cros_settings_provider.cc198 bool found = false; in Get() local
208 found = true; in Get()
211 found = (data = CreateServerHostValue(config.single_proxy)); in Get()
213 found = (data = CreateServerPortValue(config.single_proxy)); in Get()
215 found = (data = CreateServerHostValue(config.http_proxy)); in Get()
217 found = (data = CreateServerHostValue(config.https_proxy)); in Get()
232 found = true; in Get()
236 found = true; in Get()
238 found = (data = CreateServerHostValue(config.ftp_proxy)); in Get()
240 found = (data = CreateServerHostValue(config.socks_proxy)); in Get()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DMessageQueue.h135 DequeConstIterator<DataType*> found = m_queue.end(); in waitForMessageFilteredWithTimeout() local
136 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end()) in waitForMessageFilteredWithTimeout()
151 ASSERT(found != m_queue.end()); in waitForMessageFilteredWithTimeout()
152 DataType* message = *found; in waitForMessageFilteredWithTimeout()
153 m_queue.remove(found); in waitForMessageFilteredWithTimeout()
177 DequeConstIterator<DataType*> found = m_queue.findIf(predicate); in removeIf() local
178 if (found == m_queue.end()) in removeIf()
181 DataType* message = *found; in removeIf()
182 m_queue.remove(found); in removeIf()
/external/oprofile/libpp/
Dpopulate.cpp39 bool found = false; in populate_from_files() local
48 found = true; in populate_from_files()
52 return found; in populate_from_files()
79 bool found = false; in populate_for_image() local
95 found = true; in populate_for_image()
100 if (found == true && ip.error == image_ok) { in populate_for_image()

12345678910>>...77