HomeSort by relevance Sort by last modified time
    Searched defs:Get (Results 401 - 425 of 483) sorted by null

<<11121314151617181920

  /external/chromium_org/base/message_loop/
message_loop_unittest.cc 358 TaskItem Get(int n) {
469 event.Get(),
478 EXPECT_EQ(order.Get(0), TaskItem(RECURSIVE, 1, true));
479 EXPECT_EQ(order.Get(1), TaskItem(RECURSIVE, 1, false));
480 EXPECT_EQ(order.Get(2), TaskItem(MESSAGEBOX, 2, true));
481 EXPECT_EQ(order.Get(3), TaskItem(MESSAGEBOX, 2, false));
482 EXPECT_EQ(order.Get(4), TaskItem(RECURSIVE, 3, true));
483 EXPECT_EQ(order.Get(5), TaskItem(RECURSIVE, 3, false));
486 EXPECT_EQ(order.Get(6), TaskItem(ENDDIALOG, 4, true));
487 EXPECT_EQ(order.Get(7), TaskItem(QUITMESSAGELOOP, 5, true))
    [all...]
  /external/chromium_org/base/
values.cc 330 return CreateWithCopiedBuffer(buffer_.get(), size_);
465 bool DictionaryValue::Get(const std::string& path,
485 bool DictionaryValue::Get(const std::string& path, Value** out_value) {
486 return static_cast<const DictionaryValue&>(*this).Get(
494 if (!Get(path, &value))
503 if (!Get(path, &value))
512 if (!Get(path, &value))
521 if (!Get(path, &value))
530 if (!Get(path, &value))
554 bool result = Get(path, &value)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
wallpaper_manager.cc 86 CHECK(PathService::Get(chrome::DIR_CHROMEOS_CUSTOM_WALLPAPERS,
133 WallpaperManager* WallpaperManager::Get() {
184 CrosSettings::Get()->AddSettingsObserver(
204 SetUserWallpaper(UserManager::Get()->GetLoggedInUser()->email());
236 PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
243 if (UserManager::Get()->IsLoggedInAsStub()) {
251 return GetUserWallpaperInfo(UserManager::Get()->GetLoggedInUser()->email(),
257 UserManager* user_manager = UserManager::Get();
436 !UserManager::Get()->IsUserNonCryptohomeDataEphemeral(username);
481 SetDefaultWallpaper(UserManager::Get()->IsLoggedInAsGuest())
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_api.cc 139 return iter->get();
162 DeveloperPrivateAPI* DeveloperPrivateAPI::Get(Profile* profile) {
245 ExtensionSystem::Get(profile)->event_router()->BroadcastEvent(event.Pass());
253 ExtensionSystem::Get(profile_)->event_router()->RegisterObserver(
270 if (!ExtensionSystem::Get(profile_)->event_router()->HasEventListener(
293 ExtensionSystem* system = ExtensionSystem::Get(GetProfile());
371 developer_private::ItemInfo* info = iter->get();
420 ShellWindowRegistry* registry = ShellWindowRegistry::Get(GetProfile());
474 // Get the extension process's active views.
476 ExtensionSystem::Get(GetProfile())->process_manager()
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/extension_action/
extension_action_api.cc 245 return &g_factory.Get();
249 ExtensionActionAPI* ExtensionActionAPI::Get(Profile* profile) {
328 if (!extensions::ExtensionSystem::Get(profile)->event_router())
334 ExtensionSystem::Get(profile)->event_router()->
404 StateStore* storage = ExtensionSystem::Get(profile_)->state_store();
420 if (!ExtensionActionManager::Get(profile_)->
425 StateStore* storage = ExtensionSystem::Get(profile_)->state_store();
452 StateStore* storage = ExtensionSystem::Get(profile_)->state_store();
466 ExtensionSystem::Get(profile_)->extension_service()->
472 ExtensionActionManager::Get(profile_)->GetBrowserAction(*extension)
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.cc 494 void IndexedDBDatabase::Get(int64 transaction_id,
500 IDB_TRACE("IndexedDBDatabase::Get");
799 backing_store_.get(),
840 backing_store_.get(),
    [all...]
  /external/chromium_org/content/browser/loader/
resource_dispatcher_host_impl.cc 214 if (request_data.request_body.get()) {
269 if (request->ssl_info().cert.get()) {
270 return CertStore::GetInstance()->StoreCert(request->ssl_info().cert.get(),
285 delegate->DidGetRedirectForResourceRequest(*details.get());
297 delegate->DidGetResourceResponseStart(*details.get());
303 ResourceDispatcherHost* ResourceDispatcherHost::Get() {
347 ResourceDispatcherHostImpl* ResourceDispatcherHostImpl::Get() {
482 SetReferrerForRequest(request.get(), referrer);
499 // No need to get offline load flags for downloads, but make sure
524 extra_info->AssociateWithRequest(request.get()); // Request takes ownership
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.cc 258 // Callback from TableCache::Get()
295 // TODO(sanjay): Change Version::Get() to use this function.
337 Status Version::Get(const ReadOptions& options,
360 // Get the list of files to search in this level
413 s = vset_->table_cache_->Get(options, f->number, f->file_size,
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.cc 369 bool Get() const {
441 if (voice_channel_.get()) {
445 if (video_channel_.get()) {
449 if (data_channel_.get()) {
538 ASSERT(voice_channel_.get() == NULL);
539 ASSERT(video_channel_.get() == NULL);
540 ASSERT(data_channel_.get() == NULL);
550 CopySavedCandidates(remote_desc_.get());
553 UseCandidatesInSessionDescription(remote_desc_.get());
568 LOG(LS_INFO) << "Local and Remote descriptions must be applied to get "
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
proxydetect.cc 76 const std::string& Get(const char * name, const char * def = "") const {
565 settings.Get("no_proxies_on", "localhost, 127.0.0.1");
566 if (settings.Get("type") == "1") {
571 } else if (settings.Get("share_proxy_settings") == "true") {
573 proxy->address.SetIP(settings.Get("http"));
574 proxy->address.SetPort(atoi(settings.Get("http_port").c_str()));
577 proxy->address.SetIP(settings.Get("socks"));
578 proxy->address.SetPort(atoi(settings.Get("socks_port").c_str()));
581 proxy->address.SetIP(settings.Get("ssl"));
582 proxy->address.SetPort(atoi(settings.Get("ssl_port").c_str()))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-internal-inl.h 646 << "Failed to get the current working directory.";
728 return gtest_trace_stack_.get();
740 return internal_run_death_test_flag_.get();
745 return death_test_factory_.get();
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 80 // not ever use a RepeatedField directly; they will use the get-by-index,
95 const Element& Get(int index) const;
251 const typename TypeHandler::Type& Get(int index) const;
355 // caller called Get(index) out of bounds.
364 // caller called Get(index) out of bounds.
415 const Element& Get(int index) const;
527 // Get the number of cleared objects that are currently being kept
612 inline const Element& RepeatedField<Element>::Get(int index) const {
657 elements[i] = this->Get(i + start);
663 this->Set(i - num, this->Get(i))
    [all...]
  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 181 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
906 const InstructionDesc& idesc = instruction_table_->Get(*data);
    [all...]
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 191 const InstructionDesc& Get(byte x) const {
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 646 << "Failed to get the current working directory.";
728 return gtest_trace_stack_.get();
740 return internal_run_death_test_flag_.get();
745 return death_test_factory_.get();
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 645 << "Failed to get the current working directory.";
727 return gtest_trace_stack_.get();
739 return internal_run_death_test_flag_.get();
744 return death_test_factory_.get();
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 646 << "Failed to get the current working directory.";
728 return gtest_trace_stack_.get();
740 return internal_run_death_test_flag_.get();
745 return death_test_factory_.get();
    [all...]
  /external/v8/src/
elements.cc 115 Object* element = array->get(i);
155 ASSERT(to->get(i)->IsTheHole());
197 ASSERT(to->get(i)->IsTheHole());
249 ASSERT(to->get(i)->IsTheHole());
262 MaybeObject* maybe_value = from->get(i + from_start);
336 Object* hole_or_object = from->get(i + from_start);
427 virtual MaybeObject* Get(Object* receiver,
443 ? backing_store->get(key)
512 ASSERT(!to->get(i)->IsTheHole());
558 Object* e = to->get(i)
    [all...]
serialize.h 95 // For a few types of references, we can get their address from their id.
168 int Get() {
266 // 0x74-0x7f Repeat last word (subtract 0x73 to get the count).
307 int snapshot_byte = Get();
313 snapshot_byte = Get();
  /external/v8/src/ia32/
disasm-ia32.cc 181 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
894 const InstructionDesc& idesc = instruction_table_->Get(*data);
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 190 const InstructionDesc& Get(byte x) const {
    [all...]
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 386 ANNOTATE_CONDVAR_SIGNAL(&mu_); // LockWhen in Get()
391 // Get.
393 void *Get() {
543 Closure *closure = reinterpret_cast<Closure*>(pool->queue_.Get());
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 276 /// Get the token start index for this subtree; return -1 if no such index
281 /// Get the token stop index for this subtree; return -1 if no such index
287 /// <summary>Get a child 0..n-1 node </summary>
342 /// <summary>Get a tree node at an absolute index i; 0..n-1.</summary>
347 function Get(const I: Integer): IANTLRInterface;
350 /// Get tree node at current input pointer + i ahead where i=1 is next node.
400 /// Get the ITokenStream from which this stream's Tree was created
413 /// E.g., get text of a node.
575 /// Get the children internal list of children. Manipulating the list
680 /// To get your parser to build nodes of a different type, overrid
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_prefs.cc 124 virtual DictionaryValue* Get() {
125 DictionaryValue* dict = DictionaryPrefUpdate::Get();
149 virtual DictionaryValue* Get() {
150 DictionaryValue* dict = DictionaryPrefUpdate::Get();
210 DictionaryValue* update_dictionary = update.Get();
304 const DictionaryValue* update_dict = update.Get();
604 SaveTime(update.Get(), kLastPingDay, time);
614 SaveTime(update.Get(), kLastPingDay, time);
626 SaveTime(update.Get(), kLastActivePingDay, time);
640 update.Get()->SetBoolean(kActiveBit, active)
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_unittest.cc 107 FAIL() << "Should not get silenced.";
125 out->push_back(worker_.get());
159 return new SyncSession(context_.get(), this,
166 syncer_->SyncShare(session.get());
188 context_.reset(new SyncSessionContext(mock_server_.get(),
214 EXPECT_FALSE(entry->Get(IS_DIR));
215 EXPECT_FALSE(entry->Get(IS_DEL));
223 EXPECT_FALSE(entry->Get(IS_DIR));
224 EXPECT_FALSE(entry->Get(IS_DEL));
228 const sync_pb::EntitySpecifics& specifics = entry->Get(syncable::SPECIFICS)
    [all...]

Completed in 2392 milliseconds

<<11121314151617181920