Searched defs:found (Results 51 - 75 of 862) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/proxy/
H A Dflash_font_file_resource.cc3 // found in the LICENSE file.
68 FontTableMap::const_iterator found = font_tables_.find(table); local
69 if (found == font_tables_.end())
71 return found->second.get();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DUserActionElementSet.cpp79 ElementFlagMap::const_iterator found = m_elements.find(const_cast<Element*>(element)); local
80 if (found == m_elements.end())
82 return found->value & flags;
92 ElementFlagMap::iterator found = m_elements.find(element); local
93 if (found == m_elements.end()) {
98 unsigned updated = found->value & ~flags;
101 m_elements.remove(found);
105 found->value = updated;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DGenericEventQueue.cpp79 bool found = m_pendingEvents.contains(event); local
81 if (found) {
90 return found;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DRefCountedSupplement.h64 Supplement<T>* found = static_cast<Supplement<T>*>(host.requireSupplement(key)); local
65 if (!found)
67 ASSERT_WITH_SECURITY_IMPLICATION(found->isRefCountedWrapper());
68 return static_cast<Wrapper*>(found)->wrapped();
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_view.cpp3 // found in the LICENSE file.
78 bool found = false; local
84 found = true;
89 if (!found)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp99 bool found = false; local
110 found = true;
116 if (!found) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtype_profiler_map.cc3 // found in the LICENSE file.
106 const ObjectInfo* found = g_type_profiler_map->Find(address); local
107 if (found == NULL)
109 return found->type;
/external/chromium_org/tools/gyp/test/analyzer/
H A Dgyptest-analyzer.py4 # found in the LICENSE file.
12 found = 'Found dependency' variable
94 if matched and result['status'] != found:
95 print 'expected', found, 'got', result['status']
/external/chromium_org/v8/test/mjsunit/harmony/
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/cmockery/cmockery_0_1_2/src/example/
H A Dkey_value_test.c56 KeyValue * const found = find_item_by_value(key_values[i].value); local
57 assert_true(found);
58 assert_int_equal(found->key, key_values[i].key);
59 assert_string_equal(found->value, key_values[i].value);
/external/elfutils/0.153/libdw/
H A Dcie.c26 found in the source code files (the "Approved Interfaces"). The files
184 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie); local
185 if (found != NULL)
186 return *found;
213 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie); local
214 if (found == NULL)
H A Dlibdw_findcu.c27 found in the source code files (the "Approved Interfaces"). The files
150 struct Dwarf_CU **found = tfind (&fake, tree, findcu_cb); local
151 if (found != NULL)
152 return *found;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dvdso.c23 int found = 0; local
31 while (!found && fgets(line, sizeof(line), maps)) {
43 found = 1;
47 return !found;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp99 bool found = false; local
110 found = true;
116 if (!found) {
/external/openssl/crypto/bn/
H A Dbn_depr.c74 int found = 0; local
88 found = 1;
90 if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd);
91 return(found ? rnd : NULL);
/external/bluetooth/bluedroid/btif/co/
H A Dbta_gatts_co.c71 BOOLEAN found = FALSE; local
80 found = TRUE;
85 if (!found)
/external/chromium_org/base/containers/
H A Dmru_cache_unittest.cc3 // found in the LICENSE file.
53 Cache::iterator found = cache.Get(kItem1Key); local
55 EXPECT_TRUE(found != cache.end());
57 found = cache.Peek(kItem1Key);
58 EXPECT_TRUE(found != cache.end());
60 EXPECT_EQ(kItem1Key, found->first);
61 EXPECT_EQ(item1.value, found->second.value);
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_provider.cc3 // 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/
H A Dversion_loader.cc3 // 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/extensions/api/management/
H A Dmanagement_apitest.cc3 // found in the LICENSE file.
33 Browser* found = NULL; local
37 found = *it;
39 return found;
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dadvanced_options_utils_linux.cc3 // 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/chrome/test/chromedriver/chrome/
H A Dchrome_impl.cc3 // found in the LICENSE file.
67 bool found = false; local
71 found = true;
75 if (!found) {
109 return Status(kUnknownError, "web view not found");
/external/chromium_org/content/browser/android/java/
H A Djni_helper.cc3 // found in the LICENSE file.
61 bool found = false; local
70 found = true;
75 if (found) {
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_transaction_coordinator.cc3 // found in the LICENSE file.
52 // Verifies internal consistency while returning whether anything is found.
55 bool found = false; local
57 found = true;
59 DCHECK(!found);
60 found = true;
62 return found;
/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map.cc3 // found in the LICENSE file.
58 DOMStorageValuesMap::const_iterator found = values_.find(key); local
59 if (found == values_.end())
61 return found->second;
67 DOMStorageValuesMap::const_iterator found = values_.find(key); local
68 if (found == values_.end())
71 *old_value = found->second;
92 DOMStorageValuesMap::iterator found = values_.find(key); local
93 if (found == values_.end())
95 *old_value = found
[all...]

Completed in 528 milliseconds

1234567891011>>