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

1 2 3 4 5 6 78 91011>>

  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 24 * Get whether this instance is mutable. Note that the
34 * Get the number of attributes in the list.
41 * Get the {@code n}th attribute.
46 public Attribute get(int n); method in interface:AttributeList
49 * Get the total length of this list in bytes, when part of a
58 * Get the first attribute in the list with the given name, if any.
67 * Get the next attribute in the list after the given one, with the same
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 47 public IndexedItem get(Constant cst) { method in class:HeaderSection
  /dalvik/dx/src/com/android/dx/io/instructions/
AddressMap.java 40 public int get(int keyAddress) { method in class:AddressMap
41 Integer value = map.get(keyAddress);
  /dalvik/dx/tests/118-find-usages/
Foo.java 49 @Override public T get(int index) { method in class:Foo.MyList
  /development/ndk/platforms/android-3/include/linux/
klist.h 24 void (*get)(struct klist_node *); member in struct:klist
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
Injector.java 42 * Injector.get(this).inject();
59 public static Injector get(Activity activity) { method in class:Injector
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
StableArrayAdapter.java 34 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 37 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 37 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 123 public static object get( this IList list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
129 public static T get<T>( this IList<T> list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
136 public static T get<T>( this List<T> list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
TypeExtensions.cs 43 public static object get( this FieldInfo field, object obj ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnbufferedTokenStream.java 77 public Token get(int i) { method in class:UnbufferedTokenStream
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 35 /** Get a tree node at an absolute index i; 0..n-1.
39 public Object get(int i); method in interface:TreeNodeStream
41 /** Get tree node at current input pointer + i ahead where i=1 is next node.
67 * trees. E.g., get text of a node.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
FastQueue.h 34 /** 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
52 /** Get and remove first element in queue */
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
InheritableThreadLocalTest.java 29 assertNull(itl.get());
39 assertEquals("initial", itl.get());
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDefaultDigestProvider.java 47 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
55 // public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
63 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
70 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
77 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
84 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
92 // public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
99 // public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
106 // public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
113 // public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier
144 public ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier) method in class:BcDefaultDigestProvider
    [all...]
BcDigestCalculatorProvider.java 19 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/
ASN1EncodableVector.java 27 public ASN1Encodable get(int i) method in class:ASN1EncodableVector
  /external/ceres-solver/include/ceres/internal/
manual_constructor.h 100 inline Type* get() { function in class:ceres::internal::ManualConstructor
103 inline const Type* get() const { function in class:ceres::internal::ManualConstructor
107 inline Type* operator->() { return get(); }
108 inline const Type* operator->() const { return get(); }
110 inline Type& operator*() { return *get(); }
111 inline const Type& operator*() const { return *get(); }
113 // This is needed to get around the strict aliasing warning GCC generates.
196 get()->~Type();
  /external/chromium/base/i18n/
char_iterator.h 19 // VLOG(1) << iter.get();
45 int32 get() const { return char_; } function in class:base::i18n::UTF8CharIterator
92 int32 get() const { return char_; } function in class:base::i18n::UTF16CharIterator
  /external/chromium/base/mac/
scoped_cftyperef.h 59 CFT get() const { function in class:base::mac::ScopedCFTypeRef
  /external/chromium/base/memory/
scoped_nsobject.h 59 NST* get() const { function in class:scoped_nsobject
92 return p1 == p2.get();
97 return p1 != p2.get();
132 id get() const { function in class:scoped_nsobject
  /external/chromium/base/win/
event_trace_controller.h 42 EVENT_TRACE_PROPERTIES* get() { function in class:base::win::EtwTraceProperties
46 const EVENT_TRACE_PROPERTIES* get() const { function in class:base::win::EtwTraceProperties
51 return reinterpret_cast<const wchar_t *>(buffer_ + get()->LoggerNameOffset);
57 return reinterpret_cast<const wchar_t*>(buffer_ + get()->LogFileNameOffset);
scoped_hglobal.h 27 T* get() { return data_; } function in class:base::win::ScopedHGlobal
  /external/chromium/chrome/browser/cocoa/
scoped_authorizationref.h 54 AuthorizationRef get() const { function in class:scoped_AuthorizationRef

Completed in 563 milliseconds

1 2 3 4 5 6 78 91011>>