Searched defs:get (Results 101 - 125 of 1152) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrivateOwnPtr.h56 T* get() const { return m_ptr; } function in class:blink::WebPrivateOwnPtr
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DRenderbufferProxySet.cpp73 FramebufferAttachment *RenderbufferProxySet::get(unsigned int mipLevel, unsigned int layer) const function in class:gl::RenderbufferProxySet
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dnormalizedunicodetext.h38 // In case of failure, get() returns the original text.
42 const WCHAR* get() const { return normalized_text_; } function in class:NormalizedUnicodeText
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-cache-private.hh46 inline bool get (unsigned int key, unsigned int *value) function in struct:hb_cache_t
/external/chromium_org/third_party/icu/source/common/unicode/
H A Derrorcode.h97 UErrorCode get() const { return errorCode; } function in class:ErrorCode
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DAddressVerificationData.java47 public AddressVerificationNodeData get(String key) { method in class:AddressVerificationData
48 String json = mPropertiesMap.get(key);
126 AddressDataKey df = AddressDataKey.get(m.group(1));
151 AddressVerificationNodeData data = get(key);
153 throw new RuntimeException("failed to get default data with key " + key);
H A DAddressVerificationNodeData.java52 public String get(AddressDataKey key) { method in class:AddressVerificationNodeData
53 return mMap.get(key);
H A DSimpleClientCacheManager.java23 // URL to get public address data.
27 public String get(String key) { method in class:SimpleClientCacheManager
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DUnmodifiableLazyStringList.java55 public String get(int index) { method in class:UnmodifiableLazyStringList
56 return list.get(index);
/external/chromium_org/third_party/skia/include/utils/
H A DSkLua.h37 lua_State* get() const { return fL; } function in class:SkLua
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp13 #define GET_PROC(F) functions->f ## F = (GrGL ## F ## Proc) get(ctx, "gl" #F)
14 #define GET_PROC_SUFFIX(F, S) functions->f ## F = (GrGL ## F ## Proc) get(ctx, "gl" #F #S)
15 #define GET_PROC_LOCAL(F) GrGL ## F ## Proc F = (GrGL ## F ## Proc) get(ctx, "gl" #F)
17 const GrGLInterface* GrGLAssembleGLInterface(void* ctx, GrGLGetProc get) { argument
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcodec.py34 def get(self, length): member in class:Parser
50 lengthBytes = self.get(lengthLength)
56 l[x] = self.get(length)
60 lengthList = self.get(lengthLength)
66 l[x] = self.get(length)
70 self.lengthCheck = self.get(lengthLength)
/external/chromium_org/v8/test/mjsunit/
H A Darray-literal-transitions.js46 function get(foo) { return foo; } // Used to generate dynamic values. function
51 var a1 = [get(1), get(2), get(3)];
54 var b0 = [1, 2, get("three")];
56 var b1 = [get(1), get(2), get("three")];
59 var c0 = [1, 2, get(3.5)];
71 var c2 = [get(
[all...]
H A Dobject-seal.js103 function get() { return 43; }; function
105 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
111 assertEquals(get, desc.get);
127 assertEquals(get, desc.get);
/external/clang/test/Analysis/
H A Dcxx-for-range.cpp31 MagicVector get(bool fail = false) { function
38 for (int y : get()) {
88 for (int y : get(true)) { // error inside get()
671 // CHECK-NEXT: <string>Calling &apos;get&apos;</string>
673 // CHECK-NEXT: <string>Calling &apos;get&apos;</string>
825 // CHECK-NEXT: <key>issue_context</key><string>get</string>
/external/clang/test/Analysis/inlining/
H A Ddyn-dispatch-bifurcate.cpp7 virtual int get() { return 0; } function in class:A
11 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}} expected-warning{{UNKNOWN}}
16 clang_analyzer_eval(a.get() == 0); // expected-warning{{TRUE}}
21 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}}
/external/clang/test/CodeGenCXX/
H A Dreference-in-blocks.cpp9 T get() {return _i;}; function in class:range
35 void (^bl)(range<int> ) = ^(range<int> i){printf("Hello Blocks %d\n", i.get()); };
38 void (^bl2)(range<int>& ) = ^(range<int>& i){printf("Hello Blocks %d\n", i.get()); };
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/compiler-rt/test/asan/TestCases/
H A Duse-after-scope-dtor-order.cc14 int *get() { return val_; } function in struct:IntHolder
/external/conscrypt/src/compat/java/dalvik/system/
H A DCloseGuard.java30 m_get = c_closeGuard.getDeclaredMethod("get");
51 public static CloseGuard get() { method in class:CloseGuard
/external/conscrypt/src/compat/native/
H A DNetFd.h39 int get() const { function in class:NetFd
H A DScopedLocalRef.h50 T get() const { function in class:ScopedLocalRef
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderSection.java48 public IndexedItem get(Constant cst) { method in class:HeaderSection
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DAddressMap.java41 public int get(int keyAddress) { method in class:AddressMap
42 Integer value = map.get(keyAddress);
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotationsList.java50 Annotations a1 = list1.get(i);
51 Annotations a2 = list2.get(i);
76 public Annotations get(int n) { method in class:AnnotationsList

Completed in 762 milliseconds

1234567891011>>