HomeSort by relevance Sort by last modified time
    Searched full:get (Results 751 - 775 of 13186) sorted by null

<<31323334353637383940>>

  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PeopleTest.java 154 cursor = mProvider.query(mPeopleRowsAdded.get(0), PEOPLE_PROJECTION,
197 cursor = mProvider.query(mPeopleRowsAdded.get(1), PEOPLE_PROJECTION,
202 cursor = mProvider.query(mGroupRowsAdded.get(0), GROUPS_PROJECTION,
215 cursor = mProvider.query(mPeopleRowsAdded.get(2), PEOPLE_PROJECTION,
246 cursor = mProvider.query(mPeopleRowsAdded.get(0), PEOPLE_PROJECTION,
253 cursor = mProvider.query(mPeopleRowsAdded.get(0), PEOPLE_PROJECTION,
262 cursor = mProvider.query(mPeopleRowsAdded.get(0), PEOPLE_PROJECTION,
304 People.setPhotoData(mContentResolver, mPeopleRowsAdded.get(0), data);
306 mContentResolver, mPeopleRowsAdded.get(0));
312 // Uri photoUri = Uri.withAppendedPath(mPeopleRowsAdded.get(0)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInNibble(regs.get(0).getReg()))) {
102 opcodeUnit(insn, makeByte(regs.get(0).getReg(), value & 0xf)));
Form11x.java 45 return regs.get(0).regString();
67 unsignedFitsInByte(regs.get(0).getReg());
80 write(out, opcodeUnit(insn, regs.get(0).getReg()));
Form21s.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
101 opcodeUnit(insn, regs.get(0).getReg()),
Form21t.java 45 return regs.get(0).regString() + ", " + branchString(insn);
67 unsignedFitsInByte(regs.get(0).getReg()))) {
97 opcodeUnit(insn, regs.get(0).getReg()),
Form31i.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
99 opcodeUnit(insn, regs.get(0).getReg()),
Form31t.java 45 return regs.get(0).regString() + ", " + branchString(insn);
67 unsignedFitsInByte(regs.get(0).getReg()))) {
92 write(out, opcodeUnit(insn, regs.get(0).getReg()),
Form51l.java 50 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInByte(regs.get(0).getReg()))) {
96 opcodeUnit(insn, regs.get(0).getReg()),
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationsList.java 50 Annotations a1 = list1.get(i);
51 Annotations a2 = list2.get(i);
76 public Annotations get(int n) { method in class:AnnotationsList
  /dalvik/dx/src/com/android/dx/util/
AnnotatedOutput.java 26 * Get whether this instance will actually keep annotations.
33 * Get whether this instance is intended to keep verbose annotations.
71 * Get the maximum width of the annotated output. This is advisory:
  /dalvik/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmVmInternal.java 30 * This is built into the VM, since that's where threads get managed.
55 * Get status info for all threads. This is for the THST chunk.
63 * Get a stack trace for the specified thread ID. The ID can be found
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
ThreadLocalCache.java 37 ThreadLocal<T> tls = storage.get();
59 public T get() { method in class:ThreadLocalCache
60 return getThreadLocal().get();
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
BitSetTest.java 68 * @tests java.util.BitSet#get(int, int)
73 method = "get",
78 bitset.get(3, 3);
  /dalvik/libcore/nio/src/main/java/java/nio/
CharArrayBuffer.java 53 public final char get() { method in class:CharArrayBuffer
61 public final char get(int index) { method in class:CharArrayBuffer
69 public final CharBuffer get(char[] dest, int off, int len) { method in class:CharArrayBuffer
DoubleArrayBuffer.java 53 public final double get() { method in class:DoubleArrayBuffer
61 public final double get(int index) { method in class:DoubleArrayBuffer
69 public final DoubleBuffer get(double[] dest, int off, int len) { method in class:DoubleArrayBuffer
FloatArrayBuffer.java 53 public final float get() { method in class:FloatArrayBuffer
61 public final float get(int index) { method in class:FloatArrayBuffer
69 public final FloatBuffer get(float[] dest, int off, int len) { method in class:FloatArrayBuffer
IntArrayBuffer.java 53 public final int get() { method in class:IntArrayBuffer
61 public final int get(int index) { method in class:IntArrayBuffer
69 public final IntBuffer get(int[] dest, int off, int len) { method in class:IntArrayBuffer
LongArrayBuffer.java 53 public final long get() { method in class:LongArrayBuffer
61 public final long get(int index) { method in class:LongArrayBuffer
69 public final LongBuffer get(long[] dest, int off, int len) { method in class:LongArrayBuffer
ShortArrayBuffer.java 53 public final short get() { method in class:ShortArrayBuffer
61 public final short get(int index) { method in class:ShortArrayBuffer
69 public final ShortBuffer get(short[] dest, int off, int len) { method in class:ShortArrayBuffer
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
ASN1OpenType.java 50 int[] oid = (int[]) in.get(key);
55 AttributeType attr = (AttributeType) pool.get(oid);
82 return in.get(this);
  /dalvik/libcore/support/src/test/java/tests/support/
Support_PortManager.java 75 throw new Error("Unable to get " + num + " ports for UDP: " + ex);
99 int minutes = c.get(Calendar.MINUTE);
100 int seconds = c.get(Calendar.SECOND);
  /dalvik/libdex/
DexCatch.c 23 /* Get the first handler offset for the given DexCode.
39 /* Get count of handler lists for the given DexCode. */
83 /* Get the handler offset just past the end of the one just iterated over.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Grid1.java 31 //Need the following import to get access to the app resources, since this
75 ResolveInfo info = mApps.get(position);
87 return mApps.get(position);
  /external/bluetooth/glib/glib/gnulib/
printf-args.h 22 /* Get wchar_t. */
27 /* Get wint_t. */
32 /* Get va_list. */
  /external/dropbear/libtomcrypt/src/pk/asn1/der/bit/
der_decode_bit_string.c 51 /* get the length of the data */
53 /* long format get number of length bytes */
76 /* get padding count */

Completed in 51 milliseconds

<<31323334353637383940>>