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

<<21222324252627282930>>

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraFunctionalTest.java 142 // only get integer values for exposure compensation
181 Log.v(TAG, "Setting flash mode to " + supportedFlashModes.get(i));
182 params.setFlashMode(supportedFlashModes.get(i));
212 Log.v(TAG, "Setting focus mode to: " + supportedFocusModes.get(i));
213 params.setFocusMode(supportedFocusModes.get(i));
243 Log.v(TAG, "Setting white balance to: " + supportedWhiteBalance.get(i));
244 params.setWhiteBalance(supportedWhiteBalance.get(i));
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
SparseTableTests.java 63 assertEquals(i * 2, table.get(0, i));
65 assertEquals(SparseTable.NOT_EXIST, table.get(0, i));
84 if (mRandomIndex.get(i) != SparseTable.NOT_EXIST) {
85 table.set(0, i, mRandomIndex.get(i));
94 assertEquals(table.get(0, i), (int)mRandomIndex.get(i));
111 assertEquals(table.get(0, i), newTable.get(0, i));
145 if (mRandomIndex.get(i) != SparseTable.NOT_EXIST) {
147 table.set(j, i, mRandomIndex.get(i))
    [all...]
  /external/chromium_org/v8/test/mjsunit/
object-define-property.js 85 get: getter1,
91 get: getter2,
101 get: getter3,
126 // foo should be undefined as it has no get, set or value
135 assertEquals(desc.get, undefined);
160 assertEquals(desc.get, accessorConfigurable.get);
175 assertEquals(desc.get, accessorNoConfigurable.get);
208 assertEquals(desc.get, accessorNoConfigurable.get)
395 function get(){return this.x} function
    [all...]
  /external/v8/test/mjsunit/
object-define-property.js 85 get: getter1,
91 get: getter2,
101 get: getter3,
126 // foo should be undefined as it has no get, set or value
135 assertEquals(desc.get, undefined);
160 assertEquals(desc.get, accessorConfigurable.get);
175 assertEquals(desc.get, accessorNoConfigurable.get);
208 assertEquals(desc.get, accessorNoConfigurable.get)
395 function get(){return this.x} function
    [all...]
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 124 String link = links.get(s);
147 String to = links.get(from);
149 starts.put(from, starts.get(to));
150 lengths.put(from, lengths.get(to));
151 offsets.put(from, offsets.get(to));
191 f.writeInt(starts.get(zoneName));
192 f.writeInt(lengths.get(zoneName));
193 f.writeInt(offsets.get(zoneName));
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 160 rowBuilder.put(rowList.get(i), i);
166 columnBuilder.put(columnList.get(i), i);
213 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but
231 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)}
331 public V get(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:ArrayTable
332 Integer rowIndex = rowKeyToIndex.get(rowKey);
333 Integer columnIndex = columnKeyToIndex.get(columnKey)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 192 if (affectedBones != null && !affectedBones.get(targetBoneIndex)) {
207 rotations.get(0, tempQ);
208 translations.get(0, tempV);
210 scales.get(0, tempS);
213 rotations.get(lastFrame, tempQ);
214 translations.get(lastFrame, tempV);
216 scales.get(lastFrame, tempS);
231 rotations.get(startFrame, tempQ);
232 translations.get(startFrame, tempV);
234 scales.get(startFrame, tempS)
    [all...]
SpatialTrack.java 81 rotations.get(0, tempQ);
83 translations.get(0, tempV);
85 scales.get(0, tempS);
89 rotations.get(lastFrame, tempQ);
91 translations.get(lastFrame, tempV);
93 scales.get(lastFrame, tempS);
107 rotations.get(startFrame, tempQ);
109 translations.get(startFrame, tempV);
111 scales.get(startFrame, tempS);
114 rotations.get(endFrame, tempQ2);
    [all...]
  /bionic/libc/kernel/tools/
utils.py 58 def get(self): member in class:StringOutput
  /build/core/
node_fns.mk 121 # $(call get-inherited-nodes,PREFIX,A B)
128 define get-inherited-nodes
138 # get list of inherited words; if not empty:
151 $(eval ### "Get the list of nodes that this variable inherits") \
198 $(call get-inherited-nodes,$(1).$(2),$(3)))
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TextReport.java 95 builder.append(parameterTypes.get(i));
111 builder.append(parameterTypes.get(i));
  /cts/tools/dex-tools/src/dex/structure/
DexEncodedValueType.java 185 public static DexEncodedValueType get(byte value) { method in class:DexEncodedValueType
186 // FIXME don't loop -> switch to get performance boost
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 49 public Entry get(int n) { method in class:CatchTable
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefsSection.java 67 public IndexedItem get(Constant cst) { method in class:ClassDefsSection
75 IndexedItem result = classDefs.get(type);
122 if (classDefs.get(type) != null) {
159 ClassDefItem c = classDefs.get(type);
ProtoIdsSection.java 56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
97 ProtoIdItem result = protoIds.get(prototype);
121 ProtoIdItem item = protoIds.get(prototype);
TypeIdsSection.java 56 public IndexedItem get(Constant cst) { method in class:TypeIdsSection
64 IndexedItem result = typeIds.get(type);
110 TypeIdItem result = typeIds.get(type);
134 TypeIdItem result = typeIds.get(typePerSe);
158 TypeIdItem item = typeIds.get(type);
UniformItemSection.java 66 public abstract IndexedItem get(Constant cst); method in class:UniformItemSection
  /dalvik/dexgen/src/com/android/dexgen/rop/
LineNumberList.java 49 result.set(i, list1.get(i));
53 result.set(sz1 + i, list2.get(i));
74 public Item get(int n) { method in class:LineNumberList
122 Item one = get(i);
  /dalvik/dexgen/src/com/android/dexgen/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/dexgen/src/com/android/dexgen/rop/cst/
CstArray.java 91 * Get the underlying list.
146 public Constant get(int n) { method in class:CstArray.List
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 58 public static boolean get(int[] bits, int idx) { method in class:Bits
224 if (Bits.get(bits, i)) {
  /dalvik/dx/src/com/android/dx/cf/code/
LineNumberList.java 49 result.set(i, list1.get(i));
53 result.set(sz1 + i, list2.get(i));
74 public Item get(int n) { method in class:LineNumberList
122 Item one = get(i);
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 48 public Entry get(int n) { method in class:CatchTable
74 Entry thisEntry = get(i);
75 Entry otherEntry = other.get(i);
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 66 public IndexedItem get(Constant cst) { method in class:ClassDefsSection
74 IndexedItem result = classDefs.get(type);
121 if (classDefs.get(type) != null) {
158 ClassDefItem c = classDefs.get(type);
ProtoIdsSection.java 55 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
96 ProtoIdItem result = protoIds.get(prototype);
120 ProtoIdItem item = protoIds.get(prototype);

Completed in 358 milliseconds

<<21222324252627282930>>