Searched defs:found (Results 251 - 275 of 821) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/gn/
H A Dtoolchain_manager.cc3 // found in the LICENSE file.
151 ToolchainMap::iterator found = toolchains_.find(toolchain_name); local
153 if (found == toolchains_.end()) {
158 info = found->second;
168 ToolchainMap::iterator found = toolchains_.find(toolchain_name); local
169 if (found == toolchains_.end() || !found->second->toolchain_set)
175 return &found->second->toolchain;
220 ToolchainMap::iterator found = toolchains_.find(tc.label()); local
222 if (found
268 ToolchainMap::iterator found; local
[all...]
/external/chromium_org/webkit/browser/appcache/
H A Dappcache.cc3 // found in the LICENSE file.
64 EntryMap::iterator found = entries_.find(url); local
65 DCHECK(found != entries_.end());
66 cache_size_ -= found->second.response_size();
67 entries_.erase(found);
89 HandlerMap::const_iterator found = executable_handlers_.find(response_id); local
90 if (found != executable_handlers_.end())
91 return found->second;
/external/chromium_org/webkit/browser/blob/
H A Dblob_storage_context.cc3 // 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);
105 BlobMap::iterator found local
176 BlobMap::iterator found = blob_map_.find(uuid); local
189 BlobMap::iterator found = blob_map_.find(uuid); local
198 BlobMap::iterator found = blob_map_.find(uuid); local
312 BlobMap::iterator found = blob_map_.find(uuid); local
[all...]
/external/chromium_org/webkit/browser/database/
H A Ddatabase_quota_client_unittest.cc3 // found in the LICENSE file.
38 std::map<GURL, MockOriginInfo>::const_iterator found = variable
41 if (found == mock_origin_infos_.end())
43 *info = OriginInfo(found->second);
/external/chromium_org/webkit/browser/fileapi/
H A Dexternal_mount_points.cc3 // found in the LICENSE file.
110 NameToInstance::iterator found = instance_map_.find(mount_name); local
111 if (found == instance_map_.end())
113 Instance* instance = found->second;
115 delete found->second;
116 instance_map_.erase(found);
124 NameToInstance::const_iterator found = instance_map_.find(filesystem_id); local
125 if (found == instance_map_.end())
127 *path = found->second->path();
287 NameToInstance::iterator found
[all...]
H A Dfile_system_context.cc3 // found in the LICENSE file.
225 FileSystemBackendMap::const_iterator found = backend_map_.find(type); local
226 if (found != backend_map_.end())
227 return found->second;
/external/chromium_org/webkit/browser/quota/
H A Dquota_temporary_storage_evictor_unittest.cc3 // found in the LICENSE file.
97 std::map<GURL, int64>::iterator found = origins_.find(origin); local
98 EXPECT_TRUE(origins_.end() != found);
99 AddOrigin(origin, found->second);
H A Dusage_tracker_unittest.cc3 // found in the LICENSE file.
93 UsageMap::const_iterator found = usage_map_.find(origin); local
94 if (found == usage_map_.end())
96 return found->second;
/external/e2fsprogs/ext2ed/
H A Ddir_com.c196 5. If the required entry is found, we dispatch a remember command to insert the current inode (remember that
262 if (status==FOUND) { /* If found */
308 wprintw (command_win,"Error - Directory entry %s not found.\n",dir_name); /* Hmm, an invalid path somewhere */
317 Returns FOUND if found, or CONTINUE if not found.
369 internal_error ("dir_com","type_dir___entry","According to our gathered data, we should have found this entry");
547 int found=0; local
568 while (descriptor_ptr!=NULL && !found) {
570 found=1;
594 int found local
[all...]
H A Dfile_com.c399 int found=0; local
420 while (descriptor_ptr!=NULL && !found) {
422 found=1;
H A Dgeneral_com.c363 int i,len, found=0; local
393 for (i=0;i<current_type->fields_num && !found;i++) {
395 found=1;
418 if (found)
421 wprintw (command_win,"Error - Variable %s not found\n",variable);
496 short found=0; local
512 while (descriptor_ptr!=NULL && !found) {
514 found=1;
518 if (found) {
/external/e2fsprogs/lib/blkid/
H A Dtag.c65 * first such tag is returned, otherwise return only exact tag if found.
116 printf(" found cache tag head %s\n", type));
406 int c, ret, found; local
453 found = blkid_dev_has_tag(dev, search_type, search_value);
456 found ? "FOUND" : "NOT FOUND");
457 return(!found);
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DMatrixMarketIterator.h196 size_t found = m_matname.find("SPD"); local
197 if( (found!=std::string::npos) && (m_sym != NonSymmetric) )
/external/harfbuzz_ng/src/
H A Dhb-ot-map.cc224 bool found = false; local
227 found |= hb_ot_layout_language_find_feature (face,
233 if (!found && !(info->flags & F_HAS_FALLBACK))
258 map->needs_fallback = !found;
/external/icu4c/test/intltest/
H A Dregiontst.cpp615 UBool found = FALSE; local
619 found = TRUE;
623 if ( !found ) {
/external/iptables/extensions/
H A Dlibxt_sctp.c130 DEBUGP("Previous match found\n");
163 int found = 0; local
182 found = 0;
194 found = 1;
197 if (!found)
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_main.c555 BOOLEAN found = FALSE; local
569 while ((count < num_nfcee) && (!found))
575 found = TRUE;
592 if (!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/libvorbis/lib/
H A Dinfo.c99 int found = 0; local
108 if(count == found)
112 found++;
/external/libxslt/libxslt/
H A Dkeys.c478 int found = 0; local
496 found = 1;
502 if (found == 0) {
505 "xsltInitDocKeyTable: did not found %s\n", name));
H A Dtemplates.c413 * @found: indicator whether the attribute is present
423 const xmlChar *name, const xmlChar *ns, int *found) {
432 *found = 0;
435 *found = 1;
422 xsltEvalStaticAttrValueTemplate(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *name, const xmlChar *ns, int *found) argument
/external/llvm/lib/Analysis/
H A DProfileEstimatorPass.cpp365 bool found = false; local
367 (BBI != BBE) && (!found); ++BBI) {
371 (bbi != bbe) && (!found); ++bbi) {
384 found = true;
389 if (!found) {
/external/lzma/CPP/7zip/UI/Common/
H A DEnumDirItems.cpp89 bool found; local
90 if (!enumerator.Next(fi, found))
96 if (!found)
292 bool found; local
293 if (!enumerator.Next(fi, found))
299 if (!found)
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tracker.c240 int found = 0; local
246 found = 1;
251 if (!found)
/external/mesa3d/src/glsl/
H A Dlink_uniforms.cpp265 bool found = this->map->get(id, name); local
266 assert(found);
268 if (!found)
466 bool found = false; local
470 found = true;
476 if (found)
479 assert(found);

Completed in 626 milliseconds

<<11121314151617181920>>