HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 1051 - 1075 of 3150) sorted by null

<<41424344454647484950>>

  /external/jetty/src/java/org/eclipse/jetty/xml/
XmlConfiguration.java 46 import java.util.Set;
63 * Configure Objects from XML. This class reads an XML file conforming to the configure.dtd DTD and uses it to configure and object by calling set, put or other
82 { ArrayList.class,ArrayQueue.class,HashSet.class,Queue.class,List.class,Set.class,Collection.class,};
372 * This method applies the nested Set, Put, Call, etc. elements to the given object.
395 if ("Set".equals(tag))
396 set(obj,node); method
424 * Call a set method. This method makes a best effort to find a matching set method. The type of the value is used to find a suitable set method by 1.
430 private void set(Object obj, XmlParser.Node node) throws Exceptio method in class:XmlConfiguration.JettyXmlConfiguration
455 Method set = oClass.getMethod(name,vClass); local
477 Method set = oClass.getMethod(name,vClass); local
515 Method set = null; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 45 * number of local variables of methods. If this flag is set, then the
57 * scratch. If this flag is set, then the calls to the
486 // // (Set)FIELDORMETH_INSN instructions
923 key.set(UTF8, value, null, null);
943 key2.set(CLASS, value, null, null);
    [all...]
  /frameworks/base/core/java/android/widget/
DatePickerCalendarDelegate.java 106 mMinDate.set(DEFAULT_START_YEAR, Calendar.JANUARY, 1);
107 mMaxDate.set(DEFAULT_END_YEAR, Calendar.DECEMBER, 31);
117 // Set up and attach container.
121 // Set up header views.
129 // color from the header month text appearance. If it's set, we'll let
153 // Set up header background, if available.
160 // Set up picker container.
163 // Set up day picker view.
171 // Set up year picker view.
177 // Set up content descriptions
    [all...]
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 502 AnimatorSet set = new AnimatorSet(); local
503 set.playTogether(trans, rot);
504 set.setDuration(100);
505 set.start();
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
CameraOps.java 140 throw new ApiFailureException("Can't query device set", e);
216 * Set up SurfaceView dimensions for camera preview
237 Log.i(TAG, "Set preview size to " + sz.toString());
257 // Insert a one-time request if any triggers were set into the request
316 requestBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
318 requestBuilder.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER,
393 captureBuilder.set(CaptureRequest.JPEG_ORIENTATION, getOrientationHint());
563 builder.set(CaptureRequest.CONTROL_MODE,
565 builder.set(CaptureRequest.SENSOR_SENSITIVITY,
567 builder.set(CaptureRequest.SENSOR_FRAME_DURATION
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsSerializer.java 547 // to see if it is being set. If it is found, remove the key from the
559 Array.set(val, i, ja.getInt(i));
561 Array.set(val, i, (byte)ja.getInt(i));
563 Array.set(val, i, (float)ja.getDouble(i));
565 Array.set(val, i, ja.getLong(i));
567 Array.set(val, i, ja.getDouble(i));
569 Array.set(val, i, ja.getBoolean(i));
571 Array.set(val, i, ja.getString(i));
574 Array.set(val, i, new Size(
578 Array.set(val, i, new Rect
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
SurfaceViewPreviewTest.java 198 previewRequest.set(CaptureRequest.CONTROL_AE_TARGET_FPS_RANGE, maxFpsTarget);
207 previewRequest.set(CaptureRequest.CONTROL_AE_LOCK, true);
346 requestBuilder.set(CaptureRequest.CONTROL_AE_TARGET_FPS_RANGE, fpsRange);
350 requestBuilder.set(CaptureRequest.CONTROL_AE_ANTIBANDING_MODE,
439 requestBuilder.set(CaptureRequest.SENSOR_TEST_PATTERN_MODE, mode);
442 requestBuilder.set(CaptureRequest.SENSOR_TEST_PATTERN_DATA, TEST_PATTERN_DATA);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 150 public void set(int i, int j, float x, float y, float z, method in class:MatrixPaletteRenderer.Grid
372 * Set our projection matrix. This doesn't have to be done
374 * be set when the viewport is resized.
401 grid.set(i, j, x, y, z, u, v, w0, w1, 0, 1);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleArrayTest.java 113 * get and set for out of bound indices throw IndexOutOfBoundsException
123 aa.set(index, 1.0);
150 * get returns the last value set at index
156 aa.set(i, VALUES[i]);
158 aa.set(i, -3.0);
203 a.set(0, 1.0);
260 aa.set(i, x);
277 aa.set(i, x);
320 aa.set(i, (double) COUNTDOWN);
337 x.set(i, (double) -i)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ChineseCalendar.java 153 * Construct a <code>ChineseCalendar</code> with the give date set in the default time zone
155 * @param date The date to which the new calendar is set.
164 * Constructs a <code>ChineseCalendar</code> with the given date set
167 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
168 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
170 * @param isLeapMonth The value used to set the Chinese calendar's (@link #IS_LEAP_MONTH)
172 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
182 * and time set for the default time zone with the default <code>FORMAT</code> locale.
184 * @param year the value used to set the {@link #YEAR YEAR} time field in the calendar.
185 * @param month the value used to set the {@link #MONTH MONTH} time field in the calendar
541 set(JULIAN_DAY, jd-1); method
548 set(JULIAN_DAY, jd); method
551 set(JULIAN_DAY, jd); method
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CopticTest.java 150 cal.set(Calendar.JULIAN_DAY, jd);
181 cal.set(Calendar.ERA, 0);
182 cal.set(Calendar.YEAR, 1);
190 cal.set(1000, 0, 30);
196 cal.set(1, 0, 30);
208 cal.set(2007, Calendar.JANUARY, 1);
225 copticCal.set(Calendar.YEAR, year);
230 copticCal.set(Calendar.MONTH, month);
408 testCalendar.set( item.getStartYear(), item.getStartMonth(), item.getStartDay(), 9, 0 );
JapaneseTest.java 108 cal.set(Calendar.ERA, JapaneseCalendar.MEIJI);
112 cal.set(Calendar.YEAR, cal.getActualMaximum(Calendar.YEAR));
289 c.set(Calendar.ERA, JapaneseCalendar.MEIJI);
298 c.set(Calendar.ERA, JapaneseCalendar.MEIJI);
299 c.set(Calendar.YEAR, 1);
300 c.set(Calendar.MONTH, Calendar.JANUARY);
301 c.set(Calendar.DATE, 1);
310 c.set(Calendar.YEAR, 1);
311 c.set(Calendar.MONTH, Calendar.JANUARY);
312 c.set(Calendar.DATE, 1)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHTree.java 144 Vector3f min = vars.vect1.set(new Vector3f(Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY));
145 Vector3f max = vars.vect2.set(new Vector3f(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY));
198 min.set(axis, value);
200 max.set(axis, value);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 249 store.set(origin).addLocal(direction.x * t,
260 store.set(t, w1, w2);
380 loc.set(direction).multLocal(ratio).addLocal(origin);
415 tempVb.set(origin);
441 this.origin.set(origin);
480 this.direction.set(direction);
489 public void set(Ray source) { method in class:Ray
490 origin.set(source.getOrigin());
491 direction.set(source.getDirection());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 177 field.set(instance, shadow);
272 realObjectField.set(target, value);
  /frameworks/base/core/java/android/provider/
BrowserContract.java 54 * the dirty flag is not automatically set and the "syncToNetwork" parameter
55 * is set to false when calling
538 * @see android.provider.SyncStateContract.Helpers#set
540 public static void set(ContentProviderClient provider, Account account, byte[] data) method in class:BrowserContract.SyncState
542 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
712 * If set to non-0 the user has opted into bookmark sync.
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 115 noTag.set(index, newRootTag);
143 lines.set(endTagPosition.line, newLine);
241 lines.set(start.line, newStartLine);
244 lines.set(i, replaceWithSpaces(line, 0, line.length() - 1));
248 lines.set(end.line, newEndLine);
255 lines.set(start.line, spacedText);
260 lines.set(start.line, newLine);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
SimpleDateFormatTest.java 327 temp.set(Calendar.MILLISECOND, 961);
566 cal.set(Calendar.MILLISECOND, 999);
570 cal.set(Calendar.ERA, GregorianCalendar.BC);
615 cal.set(Calendar.DAY_OF_YEAR, 243);
618 cal.set(1970, Calendar.JANUARY, 1, 4, 30);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
EnumMapTest.java 28 import java.util.Set;
343 Set set = enumSizeMap.entrySet(); local
345 Set set1 = enumSizeMap.entrySet();
346 assertSame("Should be same", set1, set);
348 set.add(mockEntry);
354 assertTrue("Returned false for contained object", set
357 assertFalse("Returned true for uncontained object", set
359 assertFalse("Returned true for uncontained object", set
362 assertFalse("Returned true for uncontained object", set
611 Set set = enumSizeMap.keySet(); local
    [all...]
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 87 * is the earliest set of at least {@code getMinimalDaysInFirstWeek()}
120 * // set up rules for daylight savings time
155 * calendar.set(Calendar.HOUR, 3);
247 set(year, month, day); method
267 set(year, month, day, hour, minute); method
290 set(year, month, day, hour, minute, second); method
336 * calculations. For use internally when the time will be set later. Other constructors, such as
337 * {@link GregorianCalendar#GregorianCalendar()}, set the time to the current system clock
338 * and recalculate the fields incurring unnecessary cost when the time or fields will be set
375 set(ERA, BC) method
380 set(ERA, AD); method
396 set(MONTH, month % 12); method
398 set(YEAR, fields[YEAR] + value); method
401 set(DATE, days); method
921 set(DATE, 31); method
922 set(MONTH, DECEMBER); method
925 set(DATE, 31 - 7); method
931 set(DATE, daysInMonth()); method
1169 set(field, 1); method
1171 set(field, newWeek - 1); method
1176 set(field, 1); method
1178 set(field, newWeek); method
1181 set(field, newWeek); method
1193 set(day, days); method
1195 set(field, newWeek); method
1200 set(day, 1); method
1202 set(field, newWeek); method
1205 set(field, newWeek); method
1230 set(field, mod(fields[field] + value, maximums[field] + 1)); method
1232 set(DATE, daysInMonth()); method
1239 set(field, mod(fields[field] - 1 + value, max) + 1); method
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 25 import java.util.Set;
115 field.set(obj, null);
142 Set<String> set = new HashSet<String>(); local
152 assertFalse("Duplicate " + signature, set.contains(signature));
153 set.add(signature);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 242 mngr.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, nextTimesup, p);
339 alarmManager.set(AlarmManager.ELAPSED_REALTIME, nextBroadcastTime, pendingNextBroadcast);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 304 * Converts a comma-separated list of Strings to a set of Strings. Trims strings
308 HashSet<String> set = new HashSet<String>(); local
312 set.add(split[i].trim().toUpperCase());
315 return set;
888 * Makes the best guess at the expected full name style based on the character set
922 * Makes the best guess at the expected full name style based on the character set
    [all...]
  /art/compiler/optimizing/
gvn.cc 32 * if there is one in the set. In GVN, we would say those instructions have the
44 // ArenaAllocator returns zeroed memory, so no need to set buckets to null.
65 // Hash table size changes. We copy and rehash all entries, and set all
77 // Adds an instruction in the set.
90 // If in the set, returns an equivalent instruction to the given instruction.
107 // Returns whether instruction is in the set.
120 // Removes all instructions in the set affected by the given side effects.
127 // Updates this set by intersecting with instructions in a predecessor's set.
281 // The internal bucket implementation of the set
342 ValueSet* set = nullptr; local
    [all...]
  /art/runtime/base/
stringpiece.h 70 void set(const char* data_in, size_type len) { function in class:art::StringPiece
74 void set(const char* str) { function in class:art::StringPiece
82 void set(const void* data_in, size_type len) { function in class:art::StringPiece

Completed in 1504 milliseconds

<<41424344454647484950>>