Searched refs:found (Results 151 - 175 of 1709) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_host.cc3 // found in the LICENSE file.
44 AreaMap::iterator found = connections_.find(connection_id); local
45 if (found == connections_.end())
47 found->second.namespace_->CloseStorageArea(found->second.area_.get());
48 connections_.erase(found);
183 AreaMap::iterator found = connections_.find(connection_id); local
184 if (found == connections_.end())
186 return found->second.area_.get();
190 AreaMap::iterator found local
[all...]
/external/chromium_org/tools/find_runtime_symbols/
H A Dfind_runtime_symbols.py4 # found in the LICENSE file.
125 found = symbols_in_process.find_procedure(address)
126 if found:
127 result[address] = found.name
138 found = symbols_in_process.find_sourcefile(address)
139 if found:
140 result[address] = found
154 found = symbols_in_process.find_typeinfo(address)
155 if found:
156 if found
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Ddisplay_link_mac.cc3 // found in the LICENSE file.
30 DisplayMap::iterator found = display_map_.Get().find(display_id); local
31 if (found != display_map_.Get().end()) {
32 return found->second;
78 DisplayMap::iterator found = display_map_.Get().find(display_id_); local
79 DCHECK(found != display_map_.Get().end());
80 DCHECK(found->second == this);
81 display_map_.Get().erase(found);
/external/libsepol/tests/
H A Dtest-common.c32 int found; local
36 fprintf(stderr, "symbol %s not found in table %d\n", id, sym_type);
47 found = 0;
50 found++;
52 CU_ASSERT(found == 1);
188 unsigned int i, j, new, found = 0; local
197 printf("role %s can't be found! \n", id);
206 found++;
216 CU_ASSERT(found == len);
217 if (found !
229 int j, new, found = 0; local
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestAttributes.java68 String found = actionST.render();
69 assertEquals(expecting, found);
89 String found = translator.translate(); assertEquals(expecting, found);
109 String found = translator.translate(); assertEquals(expecting, found);
279 String found = translator.translate(); assertEquals(expecting, found);
317 String found = translator.translate(); assertEquals(expecting, found);
[all...]
/external/chromium_org/chrome/common/local_discovery/
H A Dservice_discovery_client_impl.cc3 // found in the LICENSE file.
242 std::pair<ServiceListenersMap::iterator, bool> found = services_.insert( local
245 if (found.second) { // Newly inserted.
246 found.first->second = linked_ptr<ServiceListeners>(
248 bool success = found.first->second->Start();
249 found.first->second->SetActiveRefresh(actively_refresh_services_);
255 found.first->second->set_has_ptr(true);
261 ServiceListenersMap::iterator found = services_.find(service); local
262 if (found != services_.end()) {
263 found
269 ServiceListenersMap::iterator found = services_.find(service_name); local
282 ServiceListenersMap::iterator found = services_.find(service_name); local
294 ServiceListenersMap::iterator found = services_.find(service); local
309 ServiceListenersMap::iterator found = services_.find(service); local
[all...]
/external/e2fsprogs/ext2ed/
H A Dmain.c354 * When an handling function is found, it is called along with the
360 int i,found=0; local
373 i<=current_type->type_commands.last_command && !found;
377 found=1;
383 if (!found)
384 for (i=0;i<=ext2_commands.last_command && !found;i++) {
387 found=1;
392 /* 3. If not found, search the general commands */
394 if (!found)
395 for (i=0;i<=general_commands.last_command && !found;
[all...]
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DPrivateCredentialPermission.java103 boolean found = false;
106 found = true;
110 if (!found) {
175 boolean found = false;
178 found = true;
182 if (!found) {
310 boolean found;
312 found = false;
315 found = true;
319 if (!found) {
[all...]
/external/valgrind/main/memcheck/tests/
H A Dholey_buffer_too_small.stderr.exp4 Uninitialised byte(s) found during client check request
13 Unaddressable byte(s) found during client check request
22 Unaddressable byte(s) found during client check request
31 Unaddressable byte(s) found during client check request
40 Unaddressable byte(s) found during client check request
H A Dvarinfo2.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
H A Dvarinfo4.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
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dasync_slice_group_track.js3 // found in the LICENSE file.
57 var found = false;
62 found = true;
73 if (!found) {
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_status.cc3 // found in the LICENSE file.
148 URLBucket::const_iterator found = writing_.find(GetOriginAndType(url)); local
149 if (found == writing_.end())
151 return ContainsChildOrParent(found->second, url.path(),
158 URLSet::const_iterator found = syncing_.find(GetOriginAndType(url)); local
159 if (found == syncing_.end())
161 return ContainsChildOrParent(found->second, url.path(),
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_index_writer.cc3 // found in the LICENSE file.
105 bool found = false; local
112 &found);
115 if (!found ||
138 IndexedDBObjectStoreMetadata::IndexMap::const_iterator found = local
140 if (found == object_store.indexes.end())
142 const IndexedDBIndexMetadata& index = found->second;
/external/chromium_org/storage/browser/fileapi/
H A Disolated_context.cc3 // found in the LICENSE file.
192 std::set<MountPointInfo>::const_iterator found = files_.find( local
194 if (found == files_.end())
196 *path = found->path;
282 IDToInstance::const_iterator found = instance_map_.find(filesystem_id); local
283 if (found == instance_map_.end() || !found->second->IsSinglePathInstance())
285 *path = found->second->file_info().path;
371 IDToInstance::iterator found = instance_map_.find(*iter); local
372 if (found !
390 IDToInstance::iterator found = instance_map_.find(filesystem_id); local
407 IDToInstance::const_iterator found = instance_map_.find(filesystem_id); local
455 IDToInstance::iterator found = instance_map_.find(filesystem_id); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
H A Dplatform_altivec.asm5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Demms.asm5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
/external/elfutils/0.153/libelf/
H A Dnlist.c27 found in the source code files (the "Approved Interfaces"). The files
134 /* We haven't found anything. Fail. */
137 /* Re-get the section header in case we found only the dynamic symbol
197 const struct hashentry *found; local
201 found = nlist_fshash_find (table, nl->n_name, 0, &search);
203 if (found != NULL)
206 nl->n_value = found->sym.st_value;
207 nl->n_scnum = found->sym.st_shndx;
208 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
/external/libvpx/libvpx/vp8/common/ppc/
H A Dplatform_altivec.asm5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
/external/libvpx/libvpx/vpx_ports/
H A Demms.asm5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
/external/webrtc/src/common_audio/resampler/
H A DAndroid.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/webrtc/src/common_audio/vad/
H A DAndroid.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/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DAndroid.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/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A DAndroid.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/webrtc/src/modules/audio_processing/aec/
H A DAndroid.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.

Completed in 1010 milliseconds

1234567891011>>