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

<<41424344454647484950>>

  /system/bt/stack/srvc/
srvc_eng.c 388 BOOLEAN set = TRUE; local
397 set = FALSE;
399 return set;
  /system/core/toolbox/upstream-netbsd/bin/dd/
args.c 88 u_int set, noset; member in struct:arg
144 "%s: illegal argument combination or already set",
148 ddflags |= ap->set;
157 * just wanted to set both the input and output block sizes
336 u_int set, noset; member in struct:conv
377 ddflags |= cp->set;
  /art/tools/dexfuzz/src/dexfuzz/program/
MutatableCode.java 219 mTryBlock.handlers.set(idxToChange, after);
224 mTryBlock.handlers.set(idxToChange, before);
302 mutatableInsns.set(aIdx, bInsn);
303 mutatableInsns.set(bIdx, aInsn);
314 * The idea is to allocate these registers at the top of the set of registers.
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
ScriptGraph.java 330 * Set a script parameter to the specified value.
340 * @throws IllegalStateException if the parameter was already {@link #set}
342 public <K> ScriptBuilder<T> set(Script.ScriptParameter<T, K> parameter, K value) { method in class:ScriptGraph.Builder.ScriptBuilder
345 checkState("Parameter has already been set", !mParameterMap.contains(parameter));
347 mParameterMap.set(parameter, value);
361 * Build the script and freeze the parameter list to what was {@link #set}.
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 63 theInterningItem.set(reg, type, local);
608 * Set all the instance variables.
617 public void set(int reg, TypeBearer type, LocalItem local) { method in class:RegisterSpec.ForComparison
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(3, type3)
384 public void set(int n, Type type) { method in class:StdTypeList
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 278 catches.set(i, startPc, endPc, handlerPc, catchType);
437 list.set(i, innerClass, outerClass, name, accessFlags);
488 list.set(i, startPc, lineNumber);
586 list.set(i, startPc, length, name,
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 66 theInterningItem.set(reg, type, local);
620 * Set all the instance variables.
629 public void set(int reg, TypeBearer type, LocalItem local) { method in class:RegisterSpec.ForComparison
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(3, type3)
384 public void set(int n, Type type) { method in class:StdTypeList
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 146 * Constructs an instance of the renamer with threshold set
234 ssaRegToLocalItems.set(reg, local);
290 * contains the set of moves we need to keep to preserve local
296 * maps the set of insns to replace after renaming is finished
388 insns.set(i, replaceInsn);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastFourierTransformer.java 39 * We require the length of data set to be power of 2, this greatly simplifies
64 * Transform the given real data set.
101 * Transform the given complex data set.
117 * Transform the given real data set.
158 * Transform the given complex data set.
176 * Inversely transform the given real data set.
217 * Inversely transform the given complex data set.
235 * Inversely transform the given real data set.
276 * Inversely transform the given complex data set.
489 * Verifies that the data set has length of power of 2
688 public Complex set(Complex magnitude, int... vector) method in class:FastFourierTransformer.MultiDimensionalComplexMatrix
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpec.java 67 theInterningItem.set(reg, type, local);
615 * Set all the instance variables.
624 public void set(int reg, TypeBearer type, LocalItem local) { method in class:RegisterSpec.ForComparison
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(3, type3)
384 public void set(int n, Type type) { method in class:StdTypeList
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 147 * Constructs an instance of the renamer with threshold set
235 ssaRegToLocalItems.set(reg, local);
291 * contains the set of moves we need to keep to preserve local
297 * maps the set of insns to replace after renaming is finished
389 insns.set(i, replaceInsn);
  /external/guava/guava/src/com/google/common/collect/
Sets.java 43 import java.util.Set;
52 * Static utility methods pertaining to {@link Set} instances. Also see this
85 * Returns an immutable set instance containing the given enum elements.
86 * Internally, the returned set will be backed by an {@link EnumSet}.
88 * <p>The iteration order of the returned set follows the enum's iteration
91 * @param anElement one of the elements the set should contain
92 * @param otherElements the rest of the elements the set should contain
93 * @return an immutable set containing those elements, minus duplicates
103 * Returns an immutable set instance containing the given enum elements.
104 * Internally, the returned set will be backed by an {@link EnumSet}
146 EnumSet<E> set = EnumSet.noneOf(elementType); local
183 HashSet<E> set = newHashSetWithExpectedSize(elements.length); local
238 HashSet<E> set = newHashSet(); local
274 Set<E> set = newConcurrentHashSet(); local
328 LinkedHashSet<E> set = newLinkedHashSet(); local
365 TreeSet<E> set = newTreeSet(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GregorianCalendar.java 70 * 1</code>) is the earliest set of at least
102 * // set up rules for daylight savings time
137 * calendar.set(Calendar.HOUR, 3);
189 * historical usage differs. For example, if the Gregorian change is set
397 * Constructs a GregorianCalendar with the given date set
399 * @param year the value used to set the YEAR time field in the calendar.
400 * @param month the value used to set the MONTH time field in the calendar.
402 * @param date the value used to set the DATE time field in the calendar.
408 set(ERA, AD); method
409 set(YEAR, year) method
410 set(MONTH, month); method
411 set(DATE, date); method
431 set(ERA, AD); method
432 set(YEAR, year); method
433 set(MONTH, month); method
434 set(DATE, date); method
435 set(HOUR_OF_DAY, hour); method
436 set(MINUTE, minute); method
458 set(ERA, AD); method
459 set(YEAR, year); method
460 set(MONTH, month); method
461 set(DATE, date); method
462 set(HOUR_OF_DAY, hour); method
463 set(MINUTE, minute); method
464 set(SECOND, second); method
599 set(WEEK_OF_YEAR, woy); method
600 set(YEAR, isoYear); \/\/ Why not YEAR_WOY? - Alan 11\/6\/00 method
    [all...]
HebrewCalendar.java 349 * Constructs a <code>HebrewCalendar</code> with the given date set
352 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
354 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
357 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
363 this.set(YEAR, year);
364 this.set(MONTH, month);
365 this.set(DATE, date);
369 * Constructs a <code>HebrewCalendar</code> with the given date set
372 * @param date The date to which the new calendar is set.
383 * and time set for the default time zone with the default <code>FORMAT</code> locale
488 set(MONTH, month); method
489 set(YEAR, year); method
554 set(MONTH, (newMonth + 13) % 13); method
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
HebrewTest.java 238 calendar.set(Calendar.YEAR, 5717);
239 calendar.set(Calendar.MONTH, 2);
240 calendar.set(Calendar.DAY_OF_MONTH, 23);
252 * ELUL on non leap years causes the date to be set on TISHRI next year.
264 cal.set(Calendar.YEAR, year);
265 cal.set(Calendar.MONTH, ELUL);
266 cal.set(Calendar.DAY_OF_MONTH, 1);
293 // the calendar is set to ADAR_1 on a non-leap year, the result is undefined.
298 // m3/y3 - month/year after set(MONTH, m1+delta)
302 1 , 2, +12, 1, 3, 13, 2, //*set != add; also see '*' belo
    [all...]
HolidayTest.java 138 c.set(2014, 10, 8); // when this test was hit
215 fCalendar.set(Calendar.ERA, era);
216 fCalendar.set(Calendar.YEAR, year);
217 fCalendar.set(Calendar.MONTH, month);
218 fCalendar.set(Calendar.DATE, 1);
255 logln("Set the new rule to the SimpleHoliday ...");
287 gcal.set(Calendar.YEAR, 2000);
288 gcal.set(Calendar.MONTH, Calendar.AUGUST);
289 gcal.set(Calendar.DAY_OF_MONTH, 15);
301 gcal.set(Calendar.YEAR, 1957)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetTest.java 20 import java.util.Set;
428 UnicodeSet set = new UnicodeSet(); local
429 expectPattern(set, "[[a-m]&[d-z]&[k-y]]", "km");
430 expectPattern(set, "[[a-z]-[m-y]-[d-r]]", "aczz");
431 expectPattern(set, "[a\\-z]", "--aazz");
432 expectPattern(set, "[-az]", "--aazz");
433 expectPattern(set, "[az-]", "--aazz");
434 expectPattern(set, "[[[a-z]-[aeiou]i]]", "bdfnptvz");
437 set.complement();
439 expectPairs(set, exp)
444 UnicodeSet set = new UnicodeSet("[:Lu:]"); local
472 UnicodeSet set = new UnicodeSet(); local
519 UnicodeSet set = new UnicodeSet("[h-km-q]"); local
542 UnicodeSet set = new UnicodeSet(); local
1210 UnicodeSet set = new UnicodeSet("[a-cx-y3578]"); local
1268 UnicodeSet set = new UnicodeSet(pat); local
1354 UnicodeSet set = null; local
1951 UnicodeSet set = new UnicodeSet(DATA[i]); local
2269 UnicodeSet set; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneBoundaryTest.java 304 cal.set(year, month, dom, hour, 0, 0);
350 // cal.set(year, month, dom, hour, 0, 0);
416 tempcal.set(1997, Calendar.APRIL, 6);
447 tempcal.set(1997, 0, 1);
450 tempcal.set(1997, 6, 1);
467 tempcal.set(1997, 0, 1);
470 tempcal.set(1997, 6, 1);
477 tempcal.set(1997, 0, 1);
480 tempcal.set(1997, 6, 1);
489 tempcal.set(1997, 3, 4)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Cylinder.java 203 * Rebuilds the cylinder based on a new set of parameters.
271 vRadial.set(cos[radialCount], sin[radialCount], 0.0f);
316 tempNormal.set(cos[radialCount], sin[radialCount], 0.0f);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
BresenhamTerrainPicker.java 78 worldPickRay.set(worldPick);
86 workRay.set(worldPick);
92 tracer.getGridSpacing().set(patch.getWorldScale());
95 workRay.getOrigin().set(worldPick.getDirection()).multLocal(pd.cr.getDistance()-.1f).addLocal(worldPick.getOrigin());
171 store.set(gridTriA.get1(), gridTriA.get2(), gridTriA.get3());
175 store.set(gridTriB.get1(), gridTriB.get2(), gridTriB.get3());
198 calcVec1.set(gridX, 0, gridY);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 41 set(other);
45 public void set(Time other) { method in class:ShadowTime
61 set(System.currentTimeMillis());
86 set(millis);
94 // Set the time to 12am and re-normalize.
103 public void set(long millis) { method in class:ShadowTime
106 set(
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) { method in class:ShadowTime
137 public void set(int monthDay, int month, int year) { method in class:ShadowTime
138 set(0, 0, 0, monthDay, month, year)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraConstrainedHighSpeedCaptureSessionImpl.java 98 // Overwrite the capture intent to make sure a good value is set.
103 singleTargetRequestBuilder.set(CaptureRequest.CONTROL_CAPTURE_INTENT,
107 singleTargetRequestBuilder.set(CaptureRequest.CONTROL_CAPTURE_INTENT,
120 doubleTargetRequestBuilder.set(CaptureRequest.CONTROL_CAPTURE_INTENT,

Completed in 337 milliseconds

<<41424344454647484950>>