Searched defs:get (Results 76 - 100 of 1167) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenStream.java54 public Token get(int i); method in interface:TokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java13 Map<Key2, Value> data2 = data.get(k1);
20 prev = data2.get(k2);
26 public Value get(Key1 k1, Key2 k2) { method in class:DoubleKeyMap
27 Map<Key2, Value> data2 = data.get(k1);
29 return data2.get(k2);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); } method in class:DoubleKeyMap
36 Map<Key2, Value> data2 = data.get(k1);
41 /** get all primary keys */
46 /** get al
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DFastQueue.h34 /** A queue that can dequeue and get(i) in O(1) and grow arbitrarily large.
35 * A linked list is fast at dequeue but slow at get(i). An array is
54 T o = get(0);
68 public T head() { return get(0); }
74 public T get(int i) { function in class:FastQueue
78 return data.get(p+i);
88 buf.append(get(i));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java25 List list = (ArrayList)table.get(sid);
45 public SignerInformation get( method in class:SignerInformationStore
104 List list = (ArrayList)table.get(selector);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDigestCalculatorProvider.java19 public DigestCalculator get(final AlgorithmIdentifier algorithm) method in class:BcDigestCalculatorProvider
22 Digest dig = digestProvider.get(algorithm);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1EncodableVector.java27 public ASN1Encodable get(int i) method in class:ASN1EncodableVector
/external/chromium_org/base/android/
H A Djni_weak_ref.cc43 JavaObjectWeakGlobalRef::get(JNIEnv* env) const { function in class:JavaObjectWeakGlobalRef
/external/chromium_org/base/mac/
H A Dscoped_cffiledescriptorref.h56 CFFileDescriptorRef get() const { function in class:base::mac::ScopedCFFileDescriptorRef
/external/chromium_org/base/win/
H A Dscoped_co_mem.h55 T* get() const { function in class:base::win::ScopedCoMem
H A Dscoped_hglobal.h26 T get() { return data_; } function in class:base::win::ScopedHGlobal
H A Dscoped_propvariant.h43 const PROPVARIANT& get() const { return pv_; } function in class:base::win::ScopedPropVariant
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dexterns.js16 WeakMap.prototype.get = function(key) {};
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapp_engine_handler.py20 def get(self): member in class:AppEngineHandler
24 profile_mode = self.request.get('profile')
34 arguments[argument] = self.request.get(argument)
H A Dsamples_data_source.py21 accept_language = request.headers.get('Accept-Language', None)
74 def get(self, platform): member in class:SamplesDataSource
H A Dtemplate_data_source.py29 def get(self, path): member in class:TemplateDataSource
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dchrome_direct_setting.js16 this.get = function(details, callback) {
17 var getSchema = this.functionSchemas.get.definition.parameters;
19 return sendRequest('types.private.ChromeDirectSetting.get',
H A Dchrome_setting.js16 this.get = function(details, callback) {
17 var getSchema = this.functionSchemas.get.definition.parameters;
19 return sendRequest('types.ChromeSetting.get',
H A Dcontent_setting.js17 this.get = function(details, callback) {
18 var getSchema = this.functionSchemas.get.definition.parameters;
20 return sendRequest('contentSettings.get',
/external/chromium_org/chrome/test/ispy/server/
H A Ddebug_view_handler.py24 def get(self): member in class:DebugViewHandler
25 """Handles get requests to the /debug_view page.
31 test_run = self.request.get('test_run')
32 expectation = self.request.get('expectation')
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dshared_ptr.h27 P* get() { function in class:mojo::internal::SharedPtr
30 const P* get() const { function in class:mojo::internal::SharedPtr
34 P* operator->() { return get(); }
35 const P* operator->() const { return get(); }
/external/chromium_org/ppapi/shared_impl/
H A Dscoped_pp_var.h38 const PP_Var& get() const { return var_; } function in class:ppapi::ScopedPPVar
68 PP_Var* get() { return array_; } function in class:ppapi::ScopedPPVarArray
/external/chromium_org/printing/backend/
H A Dprinting_info_win.h31 const PrinterInfoType* get() const { function in class:printing::internal::PrinterInfo
32 return reinterpret_cast<const PrinterInfoType*>(buffer_.get());
49 const DriverInfoType* get() const { function in class:printing::internal::DriverInfo
50 return reinterpret_cast<const DriverInfoType*>(buffer_.get());
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
H A DInvalidationClientNameProvider.java24 public static InvalidationClientNameProvider get() { method in class:InvalidationClientNameProvider
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DVerticalPositionCache.h45 int get(RenderObject* renderer, FontBaseline baselineType) const function in class:blink::VerticalPositionCache
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DDataRef.h33 const T* get() const { return m_data.get(); } function in class:blink::DataRef
35 const T& operator*() const { return *get(); }
36 const T* operator->() const { return get(); }
42 return m_data.get();

Completed in 368 milliseconds

1234567891011>>