Searched refs:found (Results 51 - 75 of 1709) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-347914.js3 // found in the LICENSE file.
30 function fail(expectedText, found, name_opt) { }
33 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, expecte
[all...]
H A Dregress-410912.js3 // found in the LICENSE file.
15 function fail(expectedText, found, name_opt) { }
18 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, expecte
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java159 * 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
[all...]
/external/bluetooth/bluedroid/bta/mce/
H A Dbta_mce_act.c65 int found = 0; local
94 evt_data.mas[found].scn = pe.params[0];
99 evt_data.mas[found].p_srv_name = (char *) p_attr->attr_value.v.array;
100 evt_data.mas[found].srv_name_len= SDP_DISC_ATTR_LEN(p_attr->attr_len_type);
105 evt_data.mas[found].instance_id = p_attr->attr_value.v.u8;
110 evt_data.mas[found].msg_type = p_attr->attr_value.v.u8;
112 found++;
113 } while (p_rec != NULL && found < BTA_MCE_MAX_MAS_INSTANCES);
115 evt_data.num_mas = found;
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-for.js47 var found = []
48 for (var x in p) found.push(x)
49 assertArrayEquals(properties, found)
92 var found = []
93 for (var x in o) found.push(x)
94 assertArrayEquals(["z"].concat(properties), found)
98 var found = []
99 for (var x in oo) found.push(x)
100 assertArrayEquals(["y", "z"].concat(properties), found)
H A Darray-find.js77 var found = a.find(function(val, key, obj) { variable
90 assertEquals(undefined, found);
100 var found = a.find(function() { variable
106 assertEquals(undefined, found);
119 var found = Array.prototype.find.call(a, function(val, key, obj) { variable
132 assertEquals(undefined, found);
134 found = Array.prototype.find.apply(a, [function(val, key, obj) {
147 assertEquals("a", found);
168 var found = Array.prototype.find.call(a, function(val, key, obj) {
181 assertEquals(undefined, found);
190 var found = a.find(function(val) { a.push(val); return false; }); variable
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dkeep-tracking.c29 int i, found; local
31 found = 0;
38 found += 1;
42 return found;
67 int found, err = -1; local
101 * First, test that a 'comm' event can be found when the event is
112 found = find_comm(evlist, comm);
113 if (found != 1) {
119 * Secondly, test that a 'comm' event can be found when the event is
134 found
[all...]
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java83 Scheme found = get(name);
84 if (found == null) {
88 return found;
125 Scheme found = registeredSchemes.get(name);
126 return found;
/external/chromium_org/tools/gn/
H A Dscope.cc3 // found in the LICENSE file.
67 RecordMap::iterator found = values_.find(ident); local
68 if (found != values_.end()) {
70 found->second.used = true;
71 return &found->second.value;
85 RecordMap::iterator found = values_.find(ident); local
86 if (found != values_.end()) {
88 found->second.used = true;
89 return &found->second.value;
100 RecordMap::iterator found local
116 RecordMap::const_iterator found = values_.find(ident); local
134 RecordMap::iterator found = values_.find(ident); local
162 TemplateMap::const_iterator found = templates_.find(name); local
171 RecordMap::iterator found = values_.find(ident); local
180 RecordMap::iterator found = values_.find(ident); local
189 RecordMap::const_iterator found = values_.find(ident); local
377 NamedScopeMap::const_iterator found = target_defaults_.find(target_type); local
455 PropertyMap::const_iterator found = properties_.find(key); local
[all...]
H A Dimport_manager.cc3 // found in the LICENSE file.
62 ImportMap::const_iterator found = imports_.find(file); local
63 if (found != imports_.end())
64 imported_scope = found->second;
79 ImportMap::const_iterator found = imports_.find(file); local
80 if (found != imports_.end()) {
82 imported_scope = found->second;
/external/chromium_org/ppapi/proxy/
H A Dplugin_var_tracker.cc3 // found in the LICENSE file.
108 VarMap::iterator found = GetLiveVar(plugin_var); local
109 if (found == live_vars_.end()) {
114 DCHECK(found->second.track_with_no_reference_count > 0);
115 found->second.track_with_no_reference_count--;
116 DeleteObjectInfoIfNecessary(found);
145 VarMap::const_iterator found = GetLiveVar(plugin_object);
146 if (found == live_vars_.end())
149 ProxyObjectVar* object = found->second.var->AsProxyObjectVar();
161 HostVarToPluginVarMap::iterator found local
273 UserDataToPluginImplementedVarMap::iterator found = local
333 UserDataToPluginImplementedVarMap::iterator found = local
349 UserDataToPluginImplementedVarMap::iterator found = local
403 UserDataToPluginImplementedVarMap::iterator found = local
479 HostVarToPluginVarMap::iterator found = local
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestFastQueue.java46 String found = q.toString();
47 assertEquals(expecting, found);
65 String found = buf.toString();
66 assertEquals(expecting, found);
84 String found = buf.toString();
85 assertEquals(expecting, found);
98 String found = msg;
99 assertEquals(expecting, found);
114 String found = msg;
115 assertEquals(expecting, found);
[all...]
/external/chromium_org/base/process/
H A Dprocess_iterator.cc3 // found in the LICENSE file.
25 ProcessEntries found; local
27 found.push_back(*process_entry);
29 return found;
/external/chromium_org/base/
H A Dsupports_user_data.cc3 // found in the LICENSE file.
16 DataMap::const_iterator found = user_data_.find(key); local
17 if (found != user_data_.end())
18 return found->second.get();
/external/chromium_org/content/browser/appcache/
H A Dappcache_backend_impl.cc3 // found in the LICENSE file.
46 HostMap::iterator found = hosts_.find(id); local
47 if (found == hosts_.end())
50 delete found->second;
51 hosts_.erase(found);
151 HostMap::iterator found = hosts_.find(host_id); local
152 if (found == hosts_.end()) {
157 AppCacheHost* transferree = found->second;
160 found->second = new AppCacheHost(host_id, frontend_, service_);
169 HostMap::iterator found local
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_common_win.cc3 // found in the LICENSE file.
32 int found = 0; local
47 ++found;
52 return found;
/external/chromium_org/sandbox/win/src/
H A Dshared_handles.cc3 // found in the LICENSE file.
50 SharedItem* found = FindByTag(tag); local
51 if (NULL == found) {
54 *handle = found->item;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc44 bool found = false; local
49 found = true;
52 EXPECT_TRUE(found);
/external/deqp/framework/delibs/depool/
H A DdePoolMultiSet.c48 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
49 DE_TEST_ASSERT(found == inserted);
60 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
61 DE_TEST_ASSERT(found == inserted);
73 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
74 DE_TEST_ASSERT(found == inserted);
94 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
101 DE_TEST_ASSERT(found == (count > 0));
114 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
120 DE_TEST_ASSERT(found
135 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
[all...]
H A DdePoolSet.c50 deBool found = deTestSet_exists(set, (deInt16)i); local
51 DE_TEST_ASSERT(found == inserted);
62 deBool found = deTestSet_exists(set, (deInt16)i); local
63 DE_TEST_ASSERT(found == inserted);
75 deBool found = deTestSet_exists(set, (deInt16)i); local
76 DE_TEST_ASSERT(found == inserted);
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
H A DApplication.mk4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found
7 # be found in the AUTHORS file in the root of the source tree.
/external/oprofile/libpp/
H A Dpopulate.cpp39 bool found = false; local
48 found = true;
52 return found;
79 bool found = false; local
95 found = true;
100 if (found == true && ip.error == image_ok) {
/external/chromium_org/content/renderer/
H A Dnotification_provider.cc3 // found in the LICENSE file.
51 // Won't be found if the notification has already been closed by the user.
60 // Won't be found if the notification has already been closed by the user.
93 bool found = manager_.GetNotification(id, &notification); local
94 // |found| may be false if the WebNotification went out of scope in
96 if (found)
102 bool found = manager_.GetNotification(id, &notification); local
103 // |found| may be false if the WebNotification went out of scope in
105 if (found)
111 bool found local
122 bool found = manager_.GetNotification(id, &notification); local
[all...]
/external/chromium_org/components/history/core/browser/
H A Dhistory_types.cc3 // found in the LICENSE file.
50 URLToResultIndices::const_iterator found = url_to_results_.find(url); local
51 if (found == url_to_results_.end()) {
59 DCHECK(!found->second->empty());
61 *num_matches = found->second->size();
62 return &found->second->front();
104 URLToResultIndices::iterator found = url_to_results_.find(*url); local
105 if (found == url_to_results_.end()) {
111 for (int match = 0; match < static_cast<int>(found->second->size());
113 if (found
131 URLToResultIndices::iterator found = url_to_results_.find(url); local
[all...]
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_unittest.cc3 // found in the LICENSE file.
59 bool found = false; local
60 status = leveldb->Get(key, &got_value, &found);
62 EXPECT_TRUE(found);
82 status = leveldb->Get(key, &got_value, &found);
84 EXPECT_FALSE(found);
113 bool found = false; local
114 status = transaction->Get(key, &got_value, &found);
116 EXPECT_TRUE(found);
119 found
211 bool found; local
[all...]

Completed in 9219 milliseconds

1234567891011>>