Searched defs:Get (Results 276 - 300 of 512) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/base/
H A Dexpiring_cache.h125 const ValueType* Get(const KeyType& key, const ExpirationType& now) { function in class:net::ExpiringCache
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc29 Var* Get() { return &exception_; } function in class:pp::deprecated::__anon9970::ExceptionConverter
46 Var(Var::DontManage(), name), e.Get());
52 Var(Var::DontManage(), name), e.Get());
60 Var(Var::DontManage(), name), e.Get()).Detach();
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
75 pp::Module::Get()->GetBrowserInterface(PPB_MEMORY_DEV_INTERFACE));
89 Var(Var::DontManage(), name), Var(Var::DontManage(), value), e.Get());
97 Var(Var::DontManage(), name), e.Get());
110 Var(Var::DontManage(), method_name), args, e.Get()).Detach();
122 args, e.Get())
[all...]
/external/chromium_org/ppapi/proxy/
H A Dplugin_globals.h46 // PpapiGlobals::Get() when possible. Use this only when you need some
48 inline static PluginGlobals* Get() { function in class:ppapi::proxy::PluginGlobals
51 CHECK(PpapiGlobals::Get()->IsPluginGlobals());
52 return static_cast<PluginGlobals*>(PpapiGlobals::Get());
/external/chromium_org/rlz/win/lib/
H A Dmachine_deal.cc173 // Get the current DCC value to compare to later)
175 if (!Get(stored_dcc, arraysize(stored_dcc)))
245 if (!Get(cgi + cgi_arg_length, cgi_size - cgi_arg_length)) {
252 bool MachineDealCode::Get(char* dcc, int dcc_size) { function in class:rlz_lib::MachineDealCode
258 ASSERT_STRING("MachineDealCode::Get: Invalid buffer");
272 ASSERT_STRING("MachineDealCode::Get: Insufficient buffer size");
/external/chromium_org/storage/common/blob/
H A Dshareable_file_reference.cc62 scoped_refptr<ShareableFileReference> ShareableFileReference::Get( function in class:storage::ShareableFileReference
64 ShareableFileMap::iterator found = g_file_map.Get().Find(path);
66 (found == g_file_map.Get().End()) ? NULL : found->second;
91 InsertResult result = g_file_map.Get().Insert(
107 DCHECK(g_file_map.Get().CalledOnValidThread());
113 DCHECK(g_file_map.Get().Find(path())->second == NULL);
117 DCHECK(g_file_map.Get().Find(path())->second == this);
118 g_file_map.Get().Erase(path());
/external/chromium_org/sync/internal_api/public/util/
H A Dweak_handle.h137 base::WeakPtr<T> Get() const { function in class:syncer::internal::WeakHandleCore
211 if (!Get()) {
214 (Get().get()->*fn)();
221 if (!Get()) {
224 (Get().get()->*fn)(a1);
232 if (!Get()) {
235 (Get().get()->*fn)(a1, a2);
244 if (!Get()) {
247 (Get().get()->*fn)(a1, a2, a3);
257 if (!Get()) {
308 base::WeakPtr<T> Get() const { function in class:syncer::WeakHandle
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueMap.h67 v8::PersistentContainerValue oldValue = Get(impl, key);
71 static v8::PersistentContainerValue Get(const Impl* impl, KeyType key) function in class:blink::V8PersistentValueMapTraits
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dtable_cache.cc105 Status TableCache::Get(const ReadOptions& options, function in class:leveldb::TableCache
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc37 int32_t ByteArray::Get(int32_t index) { function in class:sfntly::ByteArray
41 int32_t ByteArray::Get(int32_t index, ByteVector* b) { function in class:sfntly::ByteArray
43 return Get(index, &((*b)[0]), 0, b->size());
46 int32_t ByteArray::Get(int32_t index, function in class:sfntly::ByteArray
116 Get(index + src_offset, &(b[0]), 0, buffer_length)) > 0) {
135 while ((bytes_read = Get(index + offset, &(b[0]), 0, buffer_length)) > 0) {
/external/chromium_org/third_party/skia/src/core/
H A DSkTypefaceCache.cpp110 SkTypefaceCache& SkTypefaceCache::Get() { function in class:SkTypefaceCache
126 Get().add(face, requestedStyle, strong);
131 return Get().findByID(fontID);
136 SkTypeface* typeface = Get().findByProcAndRef(proc, ctx);
142 Get().purgeAll();
158 (void)Get().findByProcAndRef(DumpProc, NULL);
/external/chromium_org/tools/cr/cr/
H A Dvisitor.py239 def Get(self, key, raise_errors=False): member in class:Node
/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py14 import tempfile # Get a temporary directory to hold intermediates namespace
99 # Get the list of URLs to generate masks for
131 # Get the scraper
H A Dtimeload.py16 import tempfile # Get a temporary directory to hold intermediates namespace
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dcloud_storage.py178 def Get(bucket, remote_path, local_path): function
/external/chromium_org/ui/wm/core/
H A Dtransient_window_manager.cc28 TransientWindowManager* TransientWindowManager::Get(Window* window) { function in class:wm::TransientWindowManager
38 const TransientWindowManager* TransientWindowManager::Get( function in class:wm::TransientWindowManager
56 TransientWindowManager* child_manager = Get(child);
58 Get(child_manager->transient_parent_)->RemoveTransientChild(child);
78 TransientWindowManager* child_manager = Get(child);
116 TransientWindowManager* descendant_manager = Get(*it);
132 Get(transient_parent);
151 Get(static_cast<const Window*>(window));
170 TransientWindowManager::Get(transient_parent_)->RemoveTransientChild(
/external/chromium_org/v8/src/base/
H A Dlazy-instance.h9 // be called once, even if two threads are racing to create the object. Get()
28 // my_instance.Get().SomeMethod(); // MyClass::SomeMethod()
192 const T& Get() const { function in struct:v8::base::LazyInstanceImpl
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h31 args_type Get(u32 id);
134 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Get(u32 id) { function in class:__sanitizer::StackDepotBase
/external/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp62 if (!Get(category_name,category))
72 if (!Get(category_name,category))
130 TypeCategoryMap::Get (KeyType name, ValueSP& entry) function in class:TypeCategoryMap
141 TypeCategoryMap::Get (uint32_t pos, ValueSP& entry) function in class:TypeCategoryMap
196 if (!category_sp->Get(valobj, current_format, use_dynamic, &reason_why))
224 if (!category_sp->Get(valobj, current_format, use_dynamic, &reason_why))
/external/openfst/src/include/fst/extensions/ngram/
H A Dbitmap-index.h49 bool Get(size_t index) const { function in class:fst::BitmapIndex
/external/pdfium/core/src/fpdfapi/
H A Dfpdf_basic_module.cpp10 CPDF_ModuleMgr* CPDF_ModuleMgr::Get() function in class:CPDF_ModuleMgr
/external/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc37 int32_t ByteArray::Get(int32_t index) { function in class:sfntly::ByteArray
41 int32_t ByteArray::Get(int32_t index, ByteVector* b) { function in class:sfntly::ByteArray
43 return Get(index, &((*b)[0]), 0, b->size());
46 int32_t ByteArray::Get(int32_t index, function in class:sfntly::ByteArray
116 Get(index + src_offset, &(b[0]), 0, buffer_length)) > 0) {
135 while ((bytes_read = Get(index + offset, &(b[0]), 0, buffer_length)) > 0) {
/external/skia/src/core/
H A DSkTypefaceCache.cpp110 SkTypefaceCache& SkTypefaceCache::Get() { function in class:SkTypefaceCache
126 Get().add(face, requestedStyle, strong);
131 return Get().findByID(fontID);
136 SkTypeface* typeface = Get().findByProcAndRef(proc, ctx);
142 Get().purgeAll();
158 (void)Get().findByProcAndRef(DumpProc, NULL);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs205 public virtual IToken Get(int i) { method in class:Antlr.Runtime.BufferedTokenStream
214 /// Get all tokens from start..(start+count-1) inclusively
216 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.BufferedTokenStream
H A DLegacyCommonTokenStream.cs281 * Get the ith token from the current position 1..n where k=1 is the
350 public virtual IToken Get(int i) { method in class:Antlr.Runtime.LegacyCommonTokenStream
355 /** Get all tokens from start..stop inclusively */
356 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs236 public virtual IToken Get(int i) method in class:Antlr.Runtime.BufferedTokenStream
247 /// Get all tokens from start..(start+count-1) inclusively
249 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.BufferedTokenStream

Completed in 7898 milliseconds

<<11121314151617181920>>