/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/ |
drive_metadata_store.cc | 3 // found in the LICENSE file. 110 ResourceIdByOrigin::iterator found = map->find(origin); local 111 if (found == map->end()) 113 reverse_map->erase(found->second); 116 found->second = resource_id; 325 ResourceIdByOrigin::iterator found = map->find(origin); local 326 if (found == map->end()) 328 *resource_id = found->second; 329 map->erase(found); 336 MetadataMap::const_iterator found = metadata_map.find(origin) local 460 MetadataMap::iterator found = metadata_map_.find(url.origin()); local 572 std::map<GURL, std::string>::iterator found = disabled_origins_.find(origin); local 762 OriginByResourceId::iterator found = origin_by_resource_id_.find(resource_id); local 774 MetadataMap::const_iterator found = metadata_map_.find(origin); local [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestTemplates.java | 78 String found = actionST.render(); local 82 assertEquals(expecting, found); 115 String found = actionST.render(); local 119 assertEquals(expecting, found); 153 String found = actionST.render(); local 157 assertEquals(expecting, found); 188 String found = actionST.render(); local 192 assertEquals(expecting, found); 224 String found = actionST.render(); local 228 assertEquals(expecting, found); 259 String found = actionST.render(); local [all...] |
/external/chromium/googleurl/ |
PRESUBMIT.py | 4 # found in the LICENSE file. 64 found = False 67 found = True 69 if found: 106 'Found CR (or CRLF) line ending in these files, please use only LF:',
|
/external/chromium_org/chrome/browser/local_discovery/ |
cloud_print_printer_list.cc | 3 // found in the LICENSE file. 43 PrinterIDMap::iterator found = printer_id_map_.find(id); local 44 if (found != printer_id_map_.end()) { 45 return &printer_list_[found->second];
|
/external/chromium_org/chrome/browser/ui/ |
hung_plugin_tab_helper.cc | 3 // found in the LICENSE file. 303 PluginStateMap::iterator found = hung_plugins_.find(plugin_child_id); 304 if (found != hung_plugins_.end()) { 307 if (found->second->infobar) 308 infobar_service->RemoveInfoBar(found->second->infobar); 309 hung_plugins_.erase(found); 386 PluginStateMap::iterator found = hung_plugins_.find(child_id); local 387 DCHECK(found != hung_plugins_.end()); 392 CloseBar(found->second.get()); 398 PluginStateMap::iterator found = hung_plugins_.find(child_id) local [all...] |
/external/chromium_org/chrome/installer/mini_installer/ |
mini_string_test.cc | 3 // found in the LICENSE file. 73 const wchar_t* found = str.findi(kTestStringFind); local 74 EXPECT_NE(static_cast<const wchar_t*>(NULL), found); local 75 std::wstring check(found, arraysize(kTestStringFind) - 1);
|
/external/chromium_org/content/browser/renderer_host/java/ |
jni_helper.cc | 3 // found in the LICENSE file. 61 bool found = false; local 70 found = true; 75 if (found) {
|
/external/chromium_org/content/public/browser/ |
notification_registrar.cc | 3 // found in the LICENSE file. 62 RecordVector::iterator found = std::find( local 64 DCHECK(found != registered_.end()); 66 registered_.erase(found);
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
DOMWindowEventQueue.cpp | 84 bool found = it != m_queuedEvents.end(); local 85 if (found) 89 return found;
|
GenericEventQueue.cpp | 70 bool found = m_pendingEvents.contains(event); local 72 if (found) { 80 return found;
|
/external/elfutils/libdw/ |
libdw_findcu.c | 27 found in the source code files (the "Approved Interfaces"). The files 94 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb); local 95 if (found != NULL) 96 return *found;
|
/external/ipsec-tools/src/racoon/ |
throttle.c | 98 int found = 0; local 118 found = 1; 128 if (!found) {
|
/external/javassist/src/main/javassist/ |
ClassMap.java | 133 Object found = super.get(jvmClassName); local 134 if (found == null && parent != null) 137 return found;
|
/external/openssh/ |
auth2-pubkey.c | 266 Key *found; local 281 found = key_new(key_is_cert(key) ? KEY_UNSPEC : key->type); 294 if (key_read(found, &cp) != 1) { 308 if (key_read(found, &cp) != 1) { 315 if (!key_equal(found, key->cert->signature_key)) 322 fp = key_fingerprint(found, SSH_FP_MD5, 324 debug("matching CA found: file %s, line %lu, %s %s", 325 file, linenum, key_type(found), fp); 352 key_type(found), fp, file); 356 } else if (key_equal(found, key)) [all...] |
/frameworks/base/core/java/android/util/ |
StateSet.java | 80 boolean found = false; 95 found = true; 104 if (mustMatch && !found) {
|
/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
test.js | 3 // found in the LICENSE file. 26 test.log('OK, found "' + expectedMessage + '".');
|
/external/elfutils/tests/ |
get-aranges.c | 73 Dwarf_Arange *found; local 75 found = dwarf_getarange_addr (aranges, testaddr[i]); 76 if (found != NULL) 80 if (dwarf_getarangeinfo (found, NULL, NULL, &cu_offset) != 0)
|
/external/skia/tests/ |
PathOpsCubicQuadIntersectionTest.cpp | 5 * found in the LICENSE file. 85 bool found = false; local 87 found |= quadCubicTests[index].answers[idx2].approximatelyEqual(xy1); 89 if (!found) { 93 REPORTER_ASSERT(reporter, found);
|
/external/chromium_org/ppapi/proxy/ |
host_dispatcher.cc | 3 // found in the LICENSE file. 33 ModuleToDispatcherMap::const_iterator found = local 35 if (found == g_module_to_dispatcher->end()) { 41 if (!found->second->Send(new PpapiMsg_ReserveInstanceId(instance, &usable))) 107 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find( 109 if (found == g_instance_to_dispatcher->end()) 111 return found->second; 126 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find( 128 if (found != g_instance_to_dispatcher->end()) 129 g_instance_to_dispatcher->erase(found); [all...] |
/external/chromium_org/ppapi/shared_impl/ |
resource_tracker.cc | 3 // found in the LICENSE file. 169 InstanceMap::const_iterator found = instance_map_.find(instance); local 170 if (found == instance_map_.end()) 172 return static_cast<int>(found->second->resources.size()); 197 InstanceMap::iterator found = instance_map_.find(object->pp_instance()); local 198 if (found == instance_map_.end()) { 208 found->second->resources.insert(new_id); 218 InstanceMap::iterator found = instance_map_.find(object->pp_instance()); local 219 if (found != instance_map_.end()) 220 found->second->resources.erase(pp_resource) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
MessageQueue.h | 149 DequeConstIterator<DataType*> found = m_queue.end(); local 150 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end()) 165 ASSERT_WITH_SECURITY_IMPLICATION(found != m_queue.end()); 166 OwnPtr<DataType> message = adoptPtr(*found); 167 m_queue.remove(found); 199 DequeConstIterator<DataType*> found = m_queue.end(); local 200 while ((found = m_queue.findIf(predicate)) != m_queue.end()) { 201 DataType* message = *found; 202 m_queue.remove(found);
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
array-find.js | 77 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/wpa_supplicant_8/src/utils/ |
trace.c | 119 bfd_boolean found; member in struct:bfd_data 132 if (data->found) 146 data->found = bfd_find_nearest_line(abfd, section, syms, 166 data.found = FALSE; 169 if (!data.found) 191 data.found = bfd_find_inliner_info(abfd, &data.filename, 193 } while (data.found); 206 data.found = FALSE; 209 if (!data.found)
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/ |
WifiClientTest.java | 127 boolean found = false; 130 found = true; 133 assertTrue(found); 141 found = false; 144 found = true; 148 assertFalse(found); 222 boolean found = false; 225 found = true; 228 assertTrue(found);
|
/external/chromium/chrome/browser/chromeos/ |
proxy_cros_settings_provider.cc | 3 // found in the LICENSE file. 198 bool found = false; local 208 found = true; 211 found = (data = CreateServerHostValue(config.single_proxy)); 213 found = (data = CreateServerPortValue(config.single_proxy)); 215 found = (data = CreateServerHostValue(config.http_proxy)); 217 found = (data = CreateServerHostValue(config.https_proxy)); 232 found = true; 236 found = true; 238 found = (data = CreateServerHostValue(config.ftp_proxy)) [all...] |