/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 33 time.set(System.currentTimeMillis()); 42 // set date to March 32. 77 time.set(date, month, year); 83 anotherTime.set(time); 105 time.set(12, 10, 2008); 174 time.set(1, 2, 1970); 330 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1); 331 // call normalize() to make sure that isDst is set 347 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1); 348 // call normalize() to make sure that isDst is set [all...] |
/cts/tools/dasm/src/dasm/ |
DAsm.java | 731 reg_spec_list.set(i, RegisterSpec 804 reg_spec_list.set(i, RegisterSpec.make(regC + i, Type.INT)); [all...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
FirstFitLocalCombiningAllocator.java | 62 /** indexed by SSA reg; the set of SSA regs we've mapped */ 71 /** set of rop registers reserved for parameters or local variables */ 74 /** set of rop registers that have been used by anything */ 109 reservedRopRegs.set(0, paramRangeEnd); 336 reservedRopRegs.set(ropReg, ropReg + category, true); 711 ssaRegsMapped.set(ssaReg); 712 usedRopRegs.set(ropReg, ropReg + category); 799 // by source index: set of sources needing moves in high scoring plan 883 * source index that will contain the set of sources which need 914 * source index that will contain the set of sources which nee [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CubeMapActivity.java | 189 grid.set(i, j, x, y, z, nx, ny, nz); 317 public void set(int i, int j, float x, float y, float z, float nx, float ny, float nz) { method in class:CubeMapActivity.Grid 394 // Create our surface view and set it as the content of our
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
FirstFitLocalCombiningAllocator.java | 58 /** indexed by SSA reg; the set of SSA regs we've mapped */ 67 /** set of rop registers reserved for parameters or local variables */ 70 /** set of rop registers that have been used by anything */ 105 reservedRopRegs.set(0, paramRangeEnd); 332 reservedRopRegs.set(ropReg, ropReg + category, true); 707 ssaRegsMapped.set(ssaReg); 708 usedRopRegs.set(ropReg, ropReg + category); 795 // by source index: set of sources needing moves in high scoring plan 879 * source index that will contain the set of sources which need 910 * source index that will contain the set of sources which nee [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingBox.java | 78 this.center.set(c);
85 this.center.set(source.center);
101 * set of points. It uses the <code>containAABB</code> method as default.
112 * set of triangles. It is used in OBBTree calculations.
125 Vector3f min = vars.vect1.set(new Vector3f(Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY));
126 Vector3f max = vars.vect2.set(new Vector3f(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY));
138 center.set(min.addLocal(max));
159 Vector3f min = vect1.set(Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY);
160 Vector3f max = vect2.set(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY);
173 center.set(min.addLocal(max)); [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
RenderManager.java | 337 // assums worldMatrix is properly set.
361 tempMat4.set(viewMatrix);
366 tempMat4.set(viewMatrix);
374 tempMat4.set(viewProjMatrix);
379 tempMat4.set(worldMatrix);
389 tempMat4.set(viewMatrix);
394 tempMat4.set(projMatrix);
399 tempMat4.set(viewProjMatrix);
404 tempMat4.set(viewMatrix);
410 tempMat4.set(viewMatrix); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
SipUri.java | 297 // If port not set assign the default. 372 /** Set the user password. 373 *@param password - password to set. 435 * "telephone-subscriber" that are not either in the set 436 * "unreserved" or "user-unreserved" MUST be escaped. The set 501 * Set the user type. 545 /** Set the default parameters for this URI. 546 * Do nothing if the parameter is already set to some value. 547 * Otherwise set it to the given value. 548 * @param name Name of the parameter to set [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
GeneratedMessage.java | 206 internalGetFieldAccessorTable().getField(field).set(this, value); 524 * e.g. "get", "set", and "add" -- but for extensions. The extensions are 599 /** Set the value of an extension. */ 611 /** Set the value of one element of a repeated extension. */ 1030 void set(Builder builder, Object value); method in interface:GeneratedMessage.FieldAccessorTable.FieldAccessor 1068 public void set(final Builder builder, final Object value) { method in class:GeneratedMessage.FieldAccessorTable.SingularFieldAccessor 1134 public void set(final Builder builder, final Object value) { method in class:GeneratedMessage.FieldAccessorTable.RepeatedFieldAccessor 1195 public void set(final Builder builder, final Object value) { method in class:GeneratedMessage.FieldAccessorTable.SingularEnumFieldAccessor 1273 public void set(final Builder builder, final Object value) { method in class:GeneratedMessage.FieldAccessorTable.SingularMessageFieldAccessor [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowParcel.java | 23 import java.util.Set; 485 list.set(i, readString()); 840 Set<Map.Entry<String, Object>> entries = val.entrySet(); 866 parcelData.set(index, value);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraMetadataNative.java | 108 * Set a camera metadata field to a value. The field definitions can be 113 * @param value The value to set the field to, which must be of a matching 116 public <T> void set(Key<T> key, T value) { method in class:CameraMetadataNative 157 mMetadataPtr = 0; // set it to 0 again to prevent eclipse from making this field final 406 Array.set(array, i, elem); 589 // Set the camera metadata override. 595 // For other keys, set() falls back to setBase(). 737 * Register a non-sequential set of values to be used with the pack/unpack functions. 738 * This enables get/set to correctly marshal the enum into a value that is C-compatible.
|
/frameworks/base/core/java/android/view/animation/ |
Animation.java | 97 * Set by {@link #getTransformation(long, Transformation)} when the animation ends. 102 * Set by {@link #getTransformation(long, Transformation)} when the animation starts. 107 * Set by {@link #getTransformation(long, Transformation)} when the animation repeats 113 * This value must be set to true by {@link #initialize(int, int, int, int)}. It 218 * fillBefore set to true and fillAfter set to false 226 * attributes set. 229 * @param attrs the set of attributes holding the animation parameters 289 * listener, if set, to notify the end of the animation. 488 * When this animation should start. When the start time is set t [all...] |
/frameworks/base/core/java/android/widget/ |
DatePicker.java | 54 * year, month, and day spinners or a {@link CalendarView}. The set of spinners 136 * @param year The year that was set. 137 * @param monthOfYear The month that was set (0-11) for compatibility 139 * @param dayOfMonth The day of the month that was set. 200 mTempDate.set(Calendar.YEAR, newVal); 204 // now set the date to the adjusted one 256 // set the min date giving priority of the minDate over startYear 260 mTempDate.set(startYear, 0, 1); 263 mTempDate.set(startYear, 0, 1); 267 // set the max date giving priority of the maxDate over endYea [all...] |
/frameworks/base/services/java/com/android/server/am/ |
BroadcastQueue.java | 109 * Set when we current have a BROADCAST_INTENT_MSG in flight. 193 mParallelBroadcasts.set(i, r); 206 mOrderedBroadcasts.set(i, r); 660 // Set this to null so that the reference [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
RecurrenceProcessor.java | 341 * Generate a set according to the BYDAY rules. For each day of the month, determine 342 * if its day of the week is included. If so, append it to the day set. 349 // For each month day, see if it's part of the set. (This makes some assumptions 446 t.set(day, realMonth, realYear); 460 Log.i(TAG, "set t=" + t + " " + realMonth + "/" + day + "/" + realYear); 466 t.set(day, realMonth, realYear); 469 Log.i(TAG, "set t=" + t + " " + t.month 486 * Fill in a bit set containing the days of the month on which this 648 mIterator.set(rangeStartMillis); 653 mIterator.set(rangeEndMillis) [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactDeltaListTests.java | 117 final RawContactDeltaList set = new RawContactDeltaList(); local 118 Collections.addAll(set, deltas); 119 return set; 168 static void insertPhone(RawContactDeltaList set, long rawContactId, ContentValues values) { 169 final RawContactDelta match = set.getByRawContactId(rawContactId); 173 static ValuesDelta getPhone(RawContactDeltaList set, long rawContactId, long dataId) { 174 final RawContactDelta match = set.getByRawContactId(rawContactId); 185 static void assertDiffPattern(RawContactDeltaList set, ContentProviderOperation... pattern) { 186 assertDiffPattern(set.buildDiff(), pattern); 285 static Long getVersion(RawContactDeltaList set, Long rawContactId) 306 final RawContactDeltaList set = buildSet(insert); local 317 final RawContactDeltaList set = buildSet(updateFirst, updateSecond); local 328 final RawContactDeltaList set = buildSet(update, insert); local 340 final RawContactDeltaList set = buildSet(insertFirst, update, insertSecond); local 352 final RawContactDeltaList set = buildSet(insertFirst, insertSecond, insertThird); local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GeometryMathUtils.java | 54 public void set(GeometryHolder h) { method in class:GeometryMathUtils.GeometryHolder 57 crop.set(h.crop); 185 r.set(r.left * scale, r.top * scale, r.right * scale, r.bottom * scale); 478 outCrop.set(crop);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GLView.java | 361 mBounds.set(left, top, right, bottom); 417 out.set(xoffset, yoffset, xoffset + descendant.getWidth(),
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
CellLayout.java | 112 // These values allow a fixed measurement to be set on the CellLayout. 244 // Set up all the animations that are used to implement this fading. 331 // Set whether or not to invert the layout horizontally if the layout is in RTL mode. 442 mTempRect.set(r); 633 // If the horizontal or vertical span is set to -1, it is taken to [all...] |
/packages/apps/Settings/src/com/android/settings/ |
KeyguardAppWidgetPickActivity.java | 98 // Set default return data 244 public void set(T t) { method in class:KeyguardAppWidgetPickActivity.Item.WidgetPreviewLoader.WeakReferenceThreadLocal 245 mThreadLocal.set(new WeakReference<T>(t)); 253 mThreadLocal.set(new WeakReference<T>(obj)); 259 mThreadLocal.set(new WeakReference<T>(obj)); 369 src.set(0, 0, defaultPreview.getWidth(), defaultPreview.getHeight()); 370 dest.set(0, 0, finalPreviewWidth, finalPreviewHeight); 376 sCachedAppWidgetPreviewPaint.set(p); 531 // bogus. Set the result to canceled, and exit. The app *should*
|
/art/test/100-reflect2/src/ |
Main.java | 85 f.set(null, Boolean.valueOf(true)); 87 f.set(null, Byte.valueOf((byte) 6)); 89 f.set(null, Character.valueOf('z')); 91 f.set(null, Double.valueOf(1.3)); 93 f.set(null, Float.valueOf(1.3f)); 95 f.set(null, Integer.valueOf(30)); 97 f.set(null, Long.valueOf(62)); 98 f.set(null, Integer.valueOf(62)); 100 f.set(null, Short.valueOf((short) 14)); 121 f.set(null, Integer.valueOf(14)) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
DetermineFovActivity.java | 199 // If the aspect ratio is smaller, set the destination rectangle to pad 202 drawRect.set(0, pad, canvasWidth, pad + scaledHeight - 1); 204 // Set the destination rectangle to pad horizontally. 208 drawRect.set(pad, 0, pad + scaledWidth - 1, canvasHeight);
|
/cts/tests/tests/animation/src/android/animation/cts/ |
PropertyValuesHolderTest.java | 220 public void set(Object object, Object value) { method in class:PropertyValuesHolderTest.ShapeHolderYProperty 264 public void set(Object object, Object value) { method in class:PropertyValuesHolderTest.ViewColorProperty
|
/cts/tests/tests/content/src/android/content/res/cts/ |
TypedArrayTest.java | 83 final int[] set = new int[1]; local 84 set[0] = 0; 87 getColorForState(set, DEFINT)); 89 // This get values equals attribute dimension value set in styles.xml 164 final AttributeSet set = parser; local 165 assertEquals(1, set.getAttributeCount()); 166 final TypedArray ta = getContext().getResources().obtainAttributes(set,
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraCaptureResultTest.java | 161 requestBuilder.set(CaptureRequest.STATISTICS_FACE_DETECT_MODE, 167 requestBuilder.set(CaptureRequest.STATISTICS_LENS_SHADING_MAP_MODE,
|