Searched refs:get (Results 176 - 200 of 16629) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCharStream.as46 function get line():int;
54 function get charPositionInLine():int;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DDigestCalculatorProvider.java7 DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier) method in interface:DigestCalculatorProvider
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBlockCipherProvider.java7 BlockCipher get(); method in interface:BlockCipherProvider
/external/chromium_org/base/files/
H A Dfile_path_watcher_mac.cc22 DCHECK(!impl_.get());
32 DCHECK(impl_.get());
37 if (impl_.get())
43 if (impl_.get())
/external/chromium_org/chrome/browser/content_settings/
H A Dlocal_shared_objects_container.h42 return appcaches_.get();
45 return channel_ids_.get();
47 CannedBrowsingDataCookieHelper* cookies() const { return cookies_.get(); }
49 return databases_.get();
52 return file_systems_.get();
55 return indexed_dbs_.get();
58 return local_storages_.get();
61 return service_workers_.get();
64 return session_storages_.get();
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dsize.js32 get width() {
37 get height() {
/external/chromium_org/components/storage_monitor/
H A Dudev_util_linux.cc22 if (!udev.get())
25 udev.get(), device_path.value().c_str()));
26 if (!device.get())
28 *result = GetUdevDevicePropertyValue(device.get(), key);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_connection.cc17 if (!callbacks_.get())
25 if (!callbacks_.get())
34 if (!database_.get())
40 return database_.get() != NULL;
/external/chromium_org/content/browser/shared_worker/
H A Dworker_storage_partition.cc51 return url_request_context_.get() == other.url_request_context_.get() &&
52 media_url_request_context_.get() ==
53 other.media_url_request_context_.get() &&
54 appcache_service_.get() == other.appcache_service_.get() &&
55 quota_manager_.get() == other.quota_manager_.get() &&
56 filesystem_context_.get() == other.filesystem_context_.get()
[all...]
/external/chromium_org/net/quic/crypto/
H A Dp256_key_exchange_openssl.cc34 if (!private_key.get() || !EC_KEY_check_key(private_key.get())) {
40 if (EC_POINT_point2oct(EC_KEY_get0_group(private_key.get()),
41 EC_KEY_get0_public_key(private_key.get()),
44 DVLOG(1) << "Can't get public key.";
54 if (!key.get() || !EC_KEY_generate_key(key.get())) {
59 int key_len = i2d_ECPrivateKey(key.get(), NULL);
65 uint8* keyp = private_key.get();
66 if (!i2d_ECPrivateKey(key.get(),
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCreateLinkCommand.cpp49 applyStyledElement(anchorElement.get());
51 insertNodeAt(anchorElement.get(), endingSelection().start());
53 appendNode(textNode.get(), anchorElement.get());
/external/chromium_org/third_party/WebKit/Source/modules/geofencing/
H A DCircularGeofencingRegion.cpp16 DictionaryHelper::get(dictionary, "id", id);
18 DictionaryHelper::get(dictionary, "latitude", region.latitude);
19 DictionaryHelper::get(dictionary, "longitude", region.longitude);
20 DictionaryHelper::get(dictionary, "radius", region.radius);
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DResponseInit.h27 DictionaryHelper::get(options, "status", status);
29 DictionaryHelper::get(options, "statusText", statusText);
30 DictionaryHelper::get(options, "headers", headers);
32 DictionaryHelper::get(options, "headers", headersDictionary);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKeyPath.cpp56 ASSERT(keyPath.m_private.get());
67 ASSERT(m_private.get());
73 ASSERT(m_private.get());
79 ASSERT(m_private.get());
86 ASSERT(m_private.get());
94 ASSERT(m_private.get());
99 ASSERT(m_private.get());
106 ASSERT(m_private.get());
107 return *(m_private.get());
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DDataSource.java24 AddressVerificationNodeData get(String key); method in interface:DataSource
/external/chromium_org/ui/gl/
H A Dscoped_make_current.cc26 if (previous_context_.get()) {
27 DCHECK(previous_surface_.get());
28 previous_context_->MakeCurrent(previous_surface_.get());
30 context_->ReleaseCurrent(surface_.get());
/external/chromium_org/v8/test/mjsunit/regress/
H A Djson-stringifier-emptyhandle.js33 get: function () { throw "dynamite"; },
H A Dregress-crbug-137689.js37 Object.defineProperty(o, "foo", { get: getter, configurable: true });
38 Object.defineProperty(o2, "foo", { get: getter, configurable: true });
41 Object.defineProperty(o, "bar", { get: getter2 });
42 Object.defineProperty(o2, "bar", { get: getter2 });
/external/clang/test/CodeGenCXX/
H A Dstatic-init-3.cpp12 static T & get() { function in struct:X1
21 template<class T> T & X1<T>::instance = X1<T>::get();
27 X2< B > bg = X1< X2< B > >::get();
28 X2< A > ag = X1< X2< A > >::get();
/external/guava/guava/src/com/google/common/base/
H A DSupplier.java37 T get(); method in interface:Supplier
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestIteratorGenerator.java31 Iterator<E> get(); method in interface:TestIteratorGenerator
/external/guava/guava-tests/test/com/google/common/collect/
H A DCountTest.java29 assertEquals(20, new Count(20).get());
35 assertEquals(21, holder.get());
46 assertEquals(20, holder.get());
52 assertEquals(20, holder.get());
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DOutputBufferProvider.java27 Appendable get(); method in interface:OutputBufferProvider
32 * @param buffer the Appendable object handed out by {@link #get}
H A DThreadLocalOutputBufferProvider.java41 public Appendable get() { method in class:ThreadLocalOutputBufferProvider
42 if (!available.get()) {
45 StringBuilder sb = pool.get();
53 if (buffer != pool.get()) {
/external/libcxx/test/containers/sequences/array/array.tuple/
H A Dget.fail.cpp12 // template <size_t I, class T, size_t N> T& get(array<T, N>& a);
23 std::get<3>(c) = 5.5; // Can't get element 3!

Completed in 535 milliseconds

1234567891011>>