HomeSort by relevance Sort by last modified time
    Searched refs:found (Results 451 - 475 of 2814) sorted by null

<<11121314151617181920>>

  /external/chromium_org/net/base/
mime_util_unittest.cc 3 // found in the LICENSE file.
267 bool found = false; local
268 for (size_t j = 0; !found && j < extensions.size(); ++j) {
271 found = true;
274 found = true;
277 ASSERT_TRUE(found) << "Must find at least the contained result within "
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseTracker.cpp 148 DatabaseSet::iterator found = databaseSet->find(database);
149 if (found == databaseSet->end())
152 databaseSet->remove(found);
284 DatabaseSet::iterator found = databaseSet->find(database);
285 if (found == databaseSet->end())
  /external/chromium_org/third_party/angle/src/compiler/
VariablePacker.cpp 4 // found in the LICENSE file.
162 bool found = false; local
166 if (!found) {
168 found = true;
171 if (found) {
178 found = false;
  /external/chromium_org/third_party/sqlite/src/
configure.ac 187 # found, try looking in $system.hints and ../$system.hints where
462 AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
469 AC_MSG_RESULT([file not found])
534 found="yes"
544 AC_CHECK_LIB([readline], [readline], [TARGET_READLINE_LIBS="-lreadline"], [found="no"])
556 AC_CHECK_HEADER(readline.h, [found="yes"], [
557 found="no"
561 AC_CHECK_FILE($dir/$subdir/readline.h, found=yes)
562 if test "$found" = "yes"; then
567 test "$found" = "yes" && brea
    [all...]
  /external/chromium_org/tools/cr/cr/
visitor.py 3 # found in the LICENSE file.
96 self.found = False
106 self.found = True
229 if not search.found:
235 if not search.found:
241 if not search.found:
  /external/qemu/
os-win32.c 112 int i, found; local
115 found = 0;
118 found = 1;
119 if (found) {
125 if (found)
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 117 var found = false;
118 for (var j = 0; j < response.refs.length && !found; j++) {
119 found = response.refs[j].handle == response.body.scopes[i].object.ref;
121 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
133 print('property ' + p + ' not found in scope');
135 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
164 print('Names found in scope:');
190 var found = false;
191 for (var i = 0; i < response.refs.length && !found; i++)
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 117 var found = false;
118 for (var j = 0; j < response.refs.length && !found; j++) {
119 found = response.refs[j].handle == response.body.scopes[i].object.ref;
121 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
133 print('property ' + p + ' not found in scope');
135 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
164 print('Names found in scope:');
190 var found = false;
191 for (var i = 0; i < response.refs.length && !found; i++)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DeletedContacts.java 68 boolean found = false;
71 found = true;
75 assertTrue(found);
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 3 // found in the LICENSE file.
42 bool found = false; local
45 found = true;
58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
  /external/chromium/chrome/browser/chromeos/
version_loader.cc 3 // found in the LICENSE file.
127 size_t found = str.find_first_not_of("| "); local
128 if (found != std::string::npos)
129 return str.substr(found);
  /external/chromium/chrome/browser/extensions/
extension_management_apitest.cc 3 // found in the LICENSE file.
17 Browser* found = NULL; local
22 found = *it;
25 return found;
  /external/chromium_org/chrome/browser/history/
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/chrome/test/chromedriver/chrome/
chrome_impl.cc 3 // found in the LICENSE file.
62 bool found = false; local
66 found = true;
70 if (!found) {
101 return Status(kUnknownError, "web view not found");
  /external/chromium_org/chrome/tools/convert_dict/
dic_reader.cc 3 // found in the LICENSE file.
116 WordSet::iterator found = word_set->find(utf8word); local
120 if (found == word_set->end())
123 found->second.insert(affix_index);
141 printf("%" PRFilePath " not found.\n", additional_path.value().c_str());
  /external/chromium_org/chrome_frame/
com_type_info_holder.cc 3 // found in the LICENSE file.
109 bool found = (it != map_.end()); local
110 if (found)
112 return found;
  /external/chromium_org/content/browser/dom_storage/
dom_storage_context_impl.cc 3 // found in the LICENSE file.
67 StorageNamespaceMap::iterator found = namespaces_.find(namespace_id);
68 if (found == namespaces_.end()) {
84 return found->second.get();
168 StorageNamespaceMap::iterator found = local
170 if (found != namespaces_.end())
171 found->second->PurgeMemory(DOMStorageNamespace::PURGE_AGGRESSIVE);
332 StorageNamespaceMap::iterator found = namespaces_.find(existing_id); local
333 if (found != namespaces_.end())
334 namespaces_[new_id] = found->second->Clone(new_id, new_persistent_id)
346 StorageNamespaceMap::iterator found = namespaces_.find(existing_id); local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_index_writer.cc 3 // found in the LICENSE file.
100 bool found = false; local
107 &found);
110 if (!found ||
  /external/chromium_org/content/renderer/pepper/
host_var_tracker.cc 3 // found in the LICENSE file.
100 InstanceMap::const_iterator found = instance_map_.find(instance); local
101 if (found == instance_map_.end())
103 return static_cast<int>(found->second->size());
  /external/chromium_org/gpu/command_buffer/service/
program_cache.cc 3 // found in the LICENSE file.
40 LinkStatusMap::const_iterator found = link_status_.find(sha_string); local
41 if (found == link_status_.end()) {
44 return found->second;
  /external/chromium_org/media/cdm/
json_web_key.cc 3 // found in the LICENSE file.
32 size_t found = encoded_text.find_last_not_of(kBase64Padding); local
33 if (found != std::string::npos)
34 encoded_text.erase(found + 1);
86 // Have found a JWK, start by checking that it is a symmetric key.
  /external/chromium_org/ppapi/generators/
idl_lint.py 3 # found in the LICENSE file.
91 found = False;
93 if node.GetProperty(form): found = True
94 if not found:
  /external/chromium_org/sandbox/win/src/
Wow64.cc 3 // found in the LICENSE file.
194 bool found = NtdllPresent();
195 if (found) {
203 if (found)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.cpp 54 bool found = false; local
59 found = true;
63 return found;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.cpp 345 bool found = false; local
348 found = true;
352 ASSERT(found);
395 bool found = false; local
398 found = true;
402 ASSERT(found);
418 bool found = false; local
421 found = true;
425 ASSERT(found);
465 bool found = false local
    [all...]

Completed in 822 milliseconds

<<11121314151617181920>>