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

<<11121314151617181920>>

  /external/openssl/crypto/pqueue/
pqueue.c 171 pitem *found = NULL; local
180 found = next;
187 found = next;
189 if ( ! found)
199 return found;
  /external/chromium_org/storage/browser/fileapi/
external_mount_points.cc 3 // found in the LICENSE file.
124 NameToInstance::iterator found = instance_map_.find(mount_name); local
125 if (found == instance_map_.end())
127 Instance* instance = found->second;
130 delete found->second;
131 instance_map_.erase(found);
139 NameToInstance::const_iterator found = instance_map_.find(filesystem_id); local
140 if (found == instance_map_.end())
142 *path = found->second->path();
321 NameToInstance::iterator found = instance_map_.find(mount_name)
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_getlocation.c 27 found in the source code files (the "Approved Interfaces"). The files
139 struct loc_block_s **found = tfind (&fake, &attr->cu->locs, loc_compare); local
140 if (unlikely (found == NULL))
146 return_block->length = (*found)->length;
147 return_block->data = (*found)->data;
177 struct loc_s **found = tfind (&fake, &attr->cu->locs, loc_compare); local
179 if (found == NULL)
201 found = tsearch (newp, &attr->cu->locs, loc_compare);
204 assert ((*found)->nloc == 1);
208 *llbuf = (*found)->loc
225 struct loc_s **found = tfind (&fake, cache, loc_compare); local
    [all...]
  /external/chromium_org/content/child/service_worker/
service_worker_dispatcher.cc 3 // found in the LICENSE file.
512 RegistrationObjectMap::iterator found = registrations_.find(info.handle_id); local
513 if (found != registrations_.end())
514 found->second->OnUpdateFound();
539 RegistrationObjectMap::iterator found = local
541 if (found != registrations_.end()) {
543 found->second->SetInstalling(GetServiceWorker(info, false));
568 RegistrationObjectMap::iterator found = local
570 if (found != registrations_.end()) {
572 found->second->SetWaiting(GetServiceWorker(info, false))
597 RegistrationObjectMap::iterator found = local
651 ScriptClientMap::iterator found = script_clients_.find(provider_id); local
671 ScriptClientMap::iterator found = script_clients_.find(provider_id); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-for.js 47 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)
  /external/chromium_org/chromeos/network/
network_profile_handler.cc 3 // found in the LICENSE file.
154 ProfileList::iterator found = std::find_if(profiles_.begin(), profiles_.end(), local
156 if (found == profiles_.end())
158 NetworkProfile profile = *found;
159 profiles_.erase(found);
166 ProfileList::const_iterator found = local
170 if (found == profiles_.end())
172 return &*found;
  /external/chromium_org/ppapi/cpp/
instance.cc 3 // found in the LICENSE file.
221 InterfaceNameToObjectMap::iterator found = interface_name_to_objects_.find( local
223 if (found == interface_name_to_objects_.end()) {
231 PP_DCHECK(found->second == object);
234 interface_name_to_objects_.erase(found);
254 InterfaceNameToObjectMap::iterator found =
256 if (found == that->interface_name_to_objects_.end())
258 return found->second;
  /external/chromium_org/third_party/webrtc/modules/video_capture/linux/
device_info_linux.cc 5 * 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.
95 bool found = false; local
102 // Found the device
103 found = true;
112 if (!found)
167 bool found = false; local
197 found = true;
206 found = true
    [all...]
  /external/f2fs-tools/tools/
f2fstat.c 85 struct mm_table *found; local
150 found = bsearch(&key, f2fstat_table, f2fstat_table_cnt, sizeof(struct mm_table), compare_mm_table);
151 dbg("[RESULT] %s (%s)\n", head, (found) ? "O" : "X");
153 if (!found)
156 *(found->val) = strtoul(head, &tail, 10);
157 if (found->flag) {
162 switch (found->flag & (KEY_NODE | KEY_META)) {
  /bootable/recovery/tools/ota/
add-property-tag.c 108 int found = 0; local
114 found = 1;
127 if (!found) {
128 fprintf(stderr, "property %s not found in %s\n", propname, filename);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImplTest.java 334 found:
338 break found; local
356 found:
360 break found; local
382 found:
386 break found; local
449 found:
453 break found; local
475 found:
479 break found; local
505 break found; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 228 * @return <code>true</code> if the entry was found and deleted, or
229 * <code>false</code> if the entry was not found
233 final boolean found = freeEntries.remove(entry);
234 if (found)
236 return found;
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElement.java 183 * Returns parameter with the given name, if found. Otherwise null
193 NameValuePair found = null; local
197 found = current;
201 return found;
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 3 // found in the LICENSE file.
57 bool found = false; local
61 found = true;
76 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
  /external/chromium_org/chrome/browser/chromeos/
version_loader.cc 3 // found in the LICENSE file.
95 size_t found = str.find_first_not_of("| "); local
96 if (found != std::string::npos)
97 return str.substr(found);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_util.h 3 // found in the LICENSE file.
67 typename Container::const_iterator found = container.find(key); local
68 if (found == container.end())
70 return found->second;
  /external/chromium_org/chrome/browser/ui/webui/options/
advanced_options_utils_linux.cc 3 // found in the LICENSE file.
32 // only after gnome-network-properties is not found, because older GNOME also
82 bool found = false; local
86 found = true;
90 if (!found)
  /external/chromium_org/components/history/core/browser/
history_types_unittest.cc 3 // found in the LICENSE file.
22 bool found = false; local
25 found = true;
30 EXPECT_TRUE(found) << "The URL had no index referring to it.";
  /external/chromium_org/content/child/
worker_task_runner.cc 3 // found in the LICENSE file.
51 IDToLoopMap::iterator found = loop_map_.find(id); local
52 if (found == loop_map_.end())
54 return found->second.postTask(new RunClosureTask(closure));
  /external/chromium_org/content/renderer/media/
rtc_video_encoder_factory.cc 3 // found in the LICENSE file.
77 bool found = false; local
80 found = true;
84 if (!found)
  /external/chromium_org/courgette/
disassembler_elf_32_x86_unittest.cc 3 // found in the LICENSE file.
66 bool found = false; local
72 found = true;
76 EXPECT_TRUE(!found);
  /external/chromium_org/extensions/browser/
content_hash_fetcher.cc 3 // found in the LICENSE file.
70 // files that were found to have contents not matching expectations; these
97 void DoneCheckingForVerifiedContents(bool found);
150 // Paths that were found to have a mismatching hash.
231 void ContentHashFetcherJob::DoneCheckingForVerifiedContents(bool found) {
234 if (found) {
235 VLOG(1) << "Found verified contents for " << extension_id_;
441 JobMap::iterator found = jobs_.find(key); local
442 if (found != jobs_.end()) {
443 if (!force || found->second->force())
482 JobMap::iterator found = jobs_.find(key); local
    [all...]
  /external/chromium_org/ppapi/generators/
idl_propertynode.py 4 # found in the LICENSE file.
32 # Check locally for the property, and return it if found.
41 # Otherwise, it can not be found.
73 found = node.GetProperty(name)
74 if found != val:
75 ErrOut.Log('Got property %s expecting %s' % (found, val))
  /external/chromium_org/storage/common/blob/
shareable_file_reference.cc 3 // found in the LICENSE file.
64 ShareableFileMap::iterator found = g_file_map.Get().Find(path); local
66 (found == g_file_map.Get().End()) ? NULL : found->second;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.cpp 43 bool found = false; local
48 found = true;
52 return found;

Completed in 1369 milliseconds

<<11121314151617181920>>