HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1301 - 1325 of 2528) sorted by null

<<51525354555657585960>>

  /external/chromium_org/base/memory/
scoped_ptr.h 21 // foo.get()->Method(); // Foo::Method() called.
32 // foo.get()->Method(); // Foo::Method on the 0th element.
230 // get_deleter()(get()) deletes this. In order to pevent this, reset()
250 T* get() const { return data_.ptr; } function in class:base::internal::scoped_ptr_impl
298 // dereference it, you get the thread safety guarantees of T.
369 // Accessors to get the owned object.
372 assert(impl_.get() != NULL);
373 return *impl_.get();
376 assert(impl_.get() != NULL);
377 return impl_.get();
379 element_type* get() const { return impl_.get(); } function in class:scoped_ptr
494 element_type* get() const { return impl_.get(); } function in class:scoped_ptr
636 C* get() const { function in class:scoped_ptr_malloc
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
PrintingControllerTest.java 139 result.get(TEST_TIMEOUT, TimeUnit.MILLISECONDS);
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/sync/
SyncController.java 44 mChromeSigninController = ChromeSigninController.get(mContext);
45 mSyncStatusHelper = SyncStatusHelper.get(context);
47 mProfileSyncService = ProfileSyncService.get(mContext);
60 public static SyncController get(Context context) { method in class:SyncController
102 SigninManager signinManager = SigninManager.get(mContext);
108 SigninManager.get(mContext).logInSignedInUser();
132 // Since we do not override the UniqueIdentificationGenerator, we get it from the factory,
150 InvalidationController.get(mContext).start();
161 InvalidationController.get(mContext).stop();
  /external/chromium_org/chrome/browser/component_updater/
update_response.cc 97 xmlDocPtr get() { function in class:component_updater::ScopedXmlDocument
143 // Get the version.
157 // Get the minimum browser version (not required).
170 // Get the <packages> node.
191 // Get the url nodes.
198 // Get the list of urls for full and optionally, for diff updates.
231 // Get the <urls> tag.
262 // Get the <updatecheck> tag.
288 if (!document.get()) {
293 xmlNode* root = xmlDocGetRootElement(document.get());
    [all...]
  /external/chromium_org/chrome/browser/extensions/
blacklist.cc 32 // database manager before it has a chance to get a fake one.
44 scoped_refptr<SafeBrowsingDatabaseManager> get() { function in class:extensions::__anon4877::LazySafeBrowsingDatabaseManager
80 g_database_manager.Get().get(),
159 g_database_manager.Get().get();
164 content::Source<SafeBrowsingDatabaseManager>(database_manager.get()));
186 if (ids.empty() || !g_database_manager.Get().get().get()) {
    [all...]
  /external/chromium_org/chrome/browser/value_store/
leveldb_value_store.cc 36 const leveldb::Snapshot* get() { function in class:__anon6594::ScopedSnapshot
87 ValueStore::ReadResult LeveldbValueStore::Get(const std::string& key) {
105 ValueStore::ReadResult LeveldbValueStore::Get(
118 ScopedSnapshot snapshot(db_.get());
119 options.snapshot = snapshot.get();
133 ValueStore::ReadResult LeveldbValueStore::Get() {
146 ScopedSnapshot snapshot(db_.get());
147 options.snapshot = snapshot.get();
181 AddToBatch(options, key, value, &batch, changes.get());
203 AddToBatch(options, it.key(), it.value(), &batch, changes.get());
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source.py 58 event_list = [t for t in events['types'] if t.get('name') == 'Event']
87 self._namespace = api_models.GetModel(api_name).Get()
107 'namespace': self._namespace.documentation_options.get('namespace',
109 'title': self._namespace.documentation_options.get('title',
375 (PRIVATE_TEMPLATES, status)).Get(),
384 feature = self._api_features.Get().get(self._namespace.name)
388 dependencies = feature.get('dependencies')
406 self._api_features.Get().get(name, {}).get('dependencies', [])
470 def get(self, key): member in class:_LazySamplesGetter
567 def get(self, api_name, disable_refs=False): member in class:APIDataSource
    [all...]
api_data_source_test.py 71 def get(self, key, disable_refs=False): member in class:_FakeAPIDataSource
137 self.assertEquals('method-get', dict_['functions'][0]['id'])
  /external/chromium_org/chrome/common/extensions/
update_manifest.cc 104 xmlDocPtr get() { function in class:ScopedXmlDocument
138 // Get the updatecheck node.
164 // Get the version.
178 // Get the minimum browser version (not required).
231 if (!document.get()) {
236 xmlNode *root = xmlDocGetRootElement(document.get());
  /external/chromium_org/content/browser/gpu/
gpu_data_manager_impl_private_unittest.cc 77 EXPECT_TRUE(impl_->private_.get());
81 GpuDataManagerImpl* get() const { return impl_; } function in class:content::GpuDataManagerImplPrivateTest::ScopedGpuDataManagerImpl
96 EXPECT_TRUE(impl_->private_.get());
100 GpuDataManagerImplPrivate* get() const { function in class:content::GpuDataManagerImplPrivateTest::ScopedGpuDataManagerImplPrivate
101 return impl_->private_.get();
105 return impl_->private_.get();
389 GetDomain1ForTesting(), JustBeforeExpiration(manager.get())));
392 GetDomain1ForTesting(), JustAfterExpiration(manager.get())));
410 GetDomain1ForTesting(), JustBeforeExpiration(manager.get())));
413 GetDomain1ForTesting(), JustAfterExpiration(manager.get())));
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
BrowserStartupController.java 30 * always get their callback executed; if the browser process has already been started, the callback
118 public static BrowserStartupController get(Context context) { method in class:BrowserStartupController
266 ResourceExtractor resourceExtractor = ResourceExtractor.get(mContext);
289 ResourceExtractor resourceExtractor = ResourceExtractor.get(mContext);
LocationProviderFactory.java 29 * LocationProviderFactory.get() returns an instance of this interface.
46 public static LocationProvider get(Context context) { method in class:LocationProviderFactory
135 Log.e(TAG, "Could not get location manager.");
204 && providers.get(0).equals(LocationManager.PASSIVE_PROVIDER);
  /external/chromium_org/content/test/
webrtc_audio_device_test.h 71 T* get() const { return ptr_; } function in class:content::ScopedWebRTCPtr
105 T* get() const { return ptr_; } function in class:content::WebRTCAutoDelete
  /external/chromium_org/mojo/public/system/
core_cpp.h 38 const HandleType& get() const { return handle_; } function in class:mojo::ScopedHandleBase
  /external/chromium_org/remoting/host/
desktop_resizer_linux.cc 117 XRRScreenResources* get() { return resources_; } function in class:remoting::ScreenResources
319 outputs = resources_.get()->outputs;
320 number_of_outputs = resources_.get()->noutput;
322 XRRSetCrtcConfig(display_, resources_.get(), resources_.GetCrtc(),
  /external/chromium_org/sync/engine/net/
server_connection_manager.cc 123 manager_->OnConnectionDestroyed(connection_.get());
128 ServerConnectionManager::ScopedConnectionHelper::get() { function in class:syncer::ServerConnectionManager::ScopedConnectionHelper
129 return connection_.get();
193 // Calling a virtual function from a constructor. We can get away with it
308 if (!post.get()) {
315 bool ok = post.get()->Init(
325 if (post.get()->ReadBufferResponse(
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.cpp 98 array->Set(i, toV8(key->array()[i].get(), creationContext, isolate));
176 v8::Local<v8::Value> item = array->Get(v8::Int32::New(i, isolate));
205 v8Value = object->Get(indexOrName);
216 static bool get(v8::Handle<v8::Value>& object, const String& keyPathElement, v8::Handle<v8::Value>& result, v8::Isolate* isolate) function in namespace:WebCore
242 if (!get(parentValue, keyPathElements[i], currentValue, isolate))
260 if (!get(parentValue, keyPathElement, currentValue, isolate))
275 if (!get(parentValue, keyPathElement, currentValue, isolate)) {
385 v8::Handle<v8::Value> v8Value(toV8(any.get(), context->Global(), isolate));
395 v8::Handle<v8::Value> v8Value(toV8(key.get(), context->Global(), isolate));
427 ScriptValue scriptValue(deserializeIDBValueBuffer(buffer.get(), isolate), isolate)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.cpp 312 if (m_previousMessage && !isGroupMessage(m_previousMessage->type()) && m_previousMessage->isEqual(consoleMessage.get())) {
317 m_previousMessage = consoleMessage.get();
332 virtual ScriptValue get(ScriptState*) function in class:WebCore::InspectableHeapObject
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.cpp 79 PassRefPtr<IDBRequest> IDBObjectStore::get(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState) function in class:WebCore::IDBObjectStore
81 IDB_TRACE("IDBObjectStore::get");
102 RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get());
103 backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), false, WebIDBCallbacksImpl::create(request).leakPtr());
230 RefPtr<IDBRequest> request = IDBRequest::create(context, source, m_transaction.get());
266 RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get());
291 RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get());
369 options.get("unique", unique);
372 options.get("multiEntry", multiEntry);
420 RefPtr<IDBIndex> index = IDBIndex::create(metadata, this, m_transaction.get());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtrHashMap.h 83 MappedPeekType get(const KeyType&) const;
84 MappedPeekType get(RawKeyType) const;
104 MappedPassOutType take(const KeyType&); // efficient combination of get with remove
105 MappedPassOutType take(RawKeyType); // efficient combination of get with remove
252 HashMap<RefPtr<T>, U, V, W, MappedTraits>::get(const KeyType& key) const function in class:WTF::HashMap
272 HashMap<RefPtr<T>, U, V, W, MappedTraits>::get(RawKeyType key) const function in class:WTF::HashMap
RetainPtr.h 92 PtrType get() const { return m_ptr; } function in class:WTF::RetainPtr
130 : m_ptr(o.get())
153 PtrType optr = o.get();
165 PtrType optr = o.get();
241 return a.get() == b.get();
246 return a.get() == b;
251 return a == b.get();
256 return a.get() != b.get();
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-common.cc 516 hb_user_data_array_t::get (hb_user_data_key_t *key) function in class:hb_user_data_array_t
hb-font-private.hh 71 } get; member in struct:hb_font_funcs_t
152 return klass->get.glyph (this, user_data,
159 return klass->get.glyph_h_advance (this, user_data,
166 return klass->get.glyph_v_advance (this, user_data,
175 return klass->get.glyph_h_origin (this, user_data,
184 return klass->get.glyph_v_origin (this, user_data,
191 return klass->get.glyph_h_kerning (this, user_data,
198 return klass->get.glyph_v_kerning (this, user_data,
207 return klass->get.glyph_extents (this, user_data,
217 return klass->get.glyph_contour_point (this, user_data
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
fldset.cpp 52 int32_t myVal = get(i);
53 int32_t theirVal = other.get(i);
182 int32_t FieldsSet::get(int32_t field) const { function in class:FieldsSet
213 value = inheritFrom->get((UCalendarDateFields)field);
260 int32_t value = get((UCalendarDateFields)i);
277 int32_t calVal = cal->get((UCalendarDateFields)i, status);
280 if (calVal != get((UCalendarDateFields)i)) {
283 //fprintf(stderr, "match failed: %s#%d=%d != %d\n",udbg_enumName(UDBG_UCalendarDateFields,i),i,cal->get((UCalendarDateFields)i,status), get((UCalendarDateFields)i));;
315 return (UDateFormatStyle)get(DTS_DATE)
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 172 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { function in class:Contains
234 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { function in class:SpanUTF16
285 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { function in class:SpanBackUTF16
294 * Get the same spans as with span() where we always start with a not-contained span.
335 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { function in class:SpanUTF8
381 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { function in class:SpanBackUTF8
390 * Get the same spans as with span() where we always start with a not-contained span.
409 case 0: name = "Contains"; if (exec) return Contains::get(*this); break;
410 case 1: name = "SpanUTF16"; if (exec) return SpanUTF16::get(*this); break;
411 case 2: name = "SpanBackUTF16";if (exec) return SpanBackUTF16::get(*this); break
    [all...]

Completed in 107 milliseconds

<<51525354555657585960>>