HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 1426 - 1450 of 2219) sorted by null

<<51525354555657585960>>

  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
TiledImageRenderer.java 385 out.set(left, top, right, bottom);
408 mTileRange.set(0, 0, 0, 0);
600 target.set(x, y, x + length, y + length);
601 source.set(0, 0, mTileSize, mTileSize);
626 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX,
  /packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 46 public void set(T t) { method in class:SoftReferenceThreadLocal
47 mThreadLocal.set(new SoftReference<T>(t));
55 mThreadLocal.set(new SoftReference<T>(obj));
61 mThreadLocal.set(new SoftReference<T>(obj));
585 src.set(0, 0, defaultPreview.getWidth(), defaultPreview.getHeight());
586 dest.set(x, 0, x + previewWidth, previewHeight);
592 mCachedAppWidgetPreviewPaint.set(p);
608 mCachedShortcutPreviewBitmap.set(tempBitmap);
645 mCachedShortcutPreviewPaint.set(p);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
gl-matrix.js 184 * Set the components of a vec2 to the given values
191 vec2.set = function(out, x, y) {
673 * Set the components of a vec3 to the given values
681 vec3.set = function(out, x, y, z) {
1162 * Set the components of a vec4 to the given values
1171 vec4.set = function(out, x, y, z, w) {
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 67 import java.util.Set;
654 * Notifify pending loads that a new value was set. This is only relevant to loading
677 * Placeholder. Indicates that the value hasn't been set yet.
734 * - Live: valid key/value are set
738 * - Expired: time expired (key/value may still be set)
3526 public boolean set(@Nullable V newValue) { method in class:LocalCache.LoadingValueReference
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java 251 * Action to set the selection. Performing this action with no arguments
548 * is set as the source.
900 * the client has to set the {@link AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS}
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 282 // non-wakeup alarms are types 1 and 3, i.e. have the low bit set
470 // We have to set current TimeZone info to kernel
512 public void set(int type, long triggerAtTime, long windowLength, long interval, method in class:AlarmManagerService
517 "AlarmManager.set");
520 set(type, triggerAtTime, windowLength, interval, operation, false, workSource); method
523 public void set(int type, long triggerAtTime, long windowLength, long interval, method in class:AlarmManagerService
526 Slog.w(TAG, "set/setRepeating ignored because there is no intent");
563 Slog.v(TAG, "set(" + operation + ") : type=" + type
699 SystemProperties.set(TIMEZONE_PROPERTY, zone.getID());
812 set(mDescriptor, type, alarmSeconds, alarmNanoseconds) method
1019 private native void set(int fd, int type, long seconds, long nanoseconds); method in class:AlarmManagerService
1357 set(ELAPSED_REALTIME, SystemClock.elapsedRealtime() + tickEventDelay, 0, method
1371 set(RTC, calendar.getTimeInMillis(), 0, 0, mDateChangeSender, true, workSource); method
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowStateAnimator.java 87 * Set when we have changed the size of the surface, to know that
93 * Set if the client has asked that the destroy of its surface be delayed
117 // Set to true if, when the window gets displayed, it should perform
121 /** This is set when there is no Surface */
123 /** This is set after the Surface has been created but before the window has been drawn. During
126 /** This is set after the window has finished drawing for the first time but before its surface
129 /** This is set during the time after the window's drawing has been committed, and before its
133 /** Set when the window has been shown in the screen the first time. */
497 mSize.set(w, h);
537 mPosition.set(x, y)
    [all...]
  /art/test/046-reflect/src/
Main.java 187 field.set(instance, new String("a new string"));
194 field.set(instance, new Object());
231 field.set(instance, null);
256 field.set(instance, new Integer(20202));
266 field.set(instance, new Long(123));
280 field.set(instance, new String("abc"));
339 System.out.println("ERROR: set-final failed");
350 field.set(instance, 88); // exercise Object version
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 172 public void startAnimatorSet(AnimatorSet set){
174 view.animateBall(set);
234 public void animateBall(AnimatorSet set) {
235 set.start();
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorTest.java 66 public boolean set() { method in class:ParcelFileDescriptorTest.DoneSignal
67 return super.set(null);
93 done.set();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 261 // Set up for end-of-block activities.
313 Bits.set(workSet, one.getLabel());
368 Bits.set(tracebackSet, label);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 511 decodedLocals.set(i, e2);
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 121 * result is a bit set with the offset of each opcode-per-se flipped on.
124 * @return {@code non-null;} appropriately constructed bit set
132 Bits.set(result, at, true);
141 * Processes the given "work set" by repeatedly finding the lowest bit
142 * in the set, clearing it, and parsing and visiting the instruction at
144 * work set is empty. It is expected that the visitor will regularly
145 * set new bits in the work set during the process.
147 * @param workSet {@code non-null;} the work set to process
192 * argument set to indicate the actual type. E.g.
    [all...]
RopperMachine.java 183 * {@link #insns} list, set {@link #catches}, reset whether it has
455 * And finally, set up for the remainder of this method to
666 sources.set(0, RegisterSpec.make(localIndex, arg(0)));
672 sources.set(i, spec);
691 sources.set(0, value);
692 sources.set(1, array);
693 sources.set(2, index);
707 sources.set(0, value);
708 sources.set(1, obj);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 267 // Set up for end-of-block activities.
319 Bits.set(workSet, one.getLabel());
374 Bits.set(tracebackSet, label);
  /dalvik/tests/046-reflect/src/
Main.java 173 field.set(instance, new String("a new string"));
180 field.set(instance, new Object());
217 field.set(instance, null);
242 field.set(instance, new Integer(20202));
252 field.set(instance, new Long(123));
266 field.set(instance, new String("abc"));
324 System.out.println("ERROR: set-final succeeded");
326 System.out.println(" got expected set-final failure");
333 field.set(instance, 88); // exercise Object version
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 50 * be swapped, all the corresponding data set and layout changes are handled here.
55 * a bitmap and its visibility is set to INVISIBLE. A hover cell is then created and
57 * hover cell is translated some distance to signify an item swap, a data set change
122 * been selected, the hover cell is created and set up.
307 * determined and the data set is changed. Upon posting a notification of the
308 * data set change, a layout is invoked to place the cells in the right place.
375 arrayList.set(indexOne, arrayList.get(indexTwo));
376 arrayList.set(indexTwo, temp);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 272 ANTLR3_UINT32 (*set) (struct ANTLR3_VECTOR_struct * vector, ANTLR3_UINT32 entry, void * element, void (ANTLR3_CDECL *freeptr)(void *), ANTLR3_BOOLEAN freeExisting); member in struct:ANTLR3_VECTOR_struct
392 * A topological sort system that given a set of dependencies of a node m on node n,
394 * that does not care what the things are it is sorting. Generally the set
399 * some set of your own device.
411 * contains a bitset, which has a bit index set for each node upon which the
437 * If this flag is set after you have called one of the sort routines
457 * The set of visited nodes as determined by a set entry in
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 45 from antlr3.compat import set, frozenset, reversed namespace
50 The set of fields needed by an abstract recognizer to recognize input
59 # Track the set of token types that can follow any rule invocation.
99 # emissions, then set this to the last token to be matched or
105 # Needed, for example, to get the text for current token. Set at
121 ## You can set the text for the current token to override what is in
122 # the input char buffer. Use setText() or can set this instance var.
208 to the set of symbols that can follow rule ref.
249 follow = follow - set([EOR_TOKEN_TYPE])
251 # if current token is consistent with what could come after set
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 38 /** A DFA state represents a set of possible NFA configurations.
46 * would be a bitset representing the set of states the
58 * is also the semantic context, which is the "set" of predicates found
63 * meaning that state was reached via a different set of rule invocations.
137 /** The set of NFA configurations (state,alt,context) for this DFA state */
146 * the stack context. This just the nfa config set because we want to
153 protected Set<NFAConfiguration> closureBusy = new HashSet<NFAConfiguration>();
217 * As we add configurations to this DFA state, track the set of all possible
273 * another set or int/char forces breaking up the set(s)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 58 protected Set<NFAState> refClosureBusy = new HashSet<NFAState>();
101 * This is combined set of lexer rules from all lexer grammars
104 protected Set<String> lexerRules = new HashSet<String>();
123 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.INVALID, "<INVALID>");
124 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.EOT, "<EOT>");
125 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.SEMPRED, "<SEMPRED>");
126 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.SET, "<SET>");
127 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.EPSILON, Label.EPSILON_STR)
    [all...]
GrammarReport.java 290 protected String getDFALocations(Set dfas) {
291 Set decisions = new HashSet();
332 f.set(data, v);
335 f.set(data, Double.valueOf(v));
338 f.set(data, Integer.valueOf(v));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 37 * @tests java.util.Calendar#set(int, int)
40 // Test for correct result defined by the last set field
44 cal.set(Calendar.YEAR, 2002);
49 cal.set(Calendar.YEAR, 2002);
50 cal.set(Calendar.MONTH, Calendar.MARCH);
55 cal.set(Calendar.YEAR, 2002);
56 cal.set(Calendar.DATE, 24);
60 cal.set(Calendar.MONTH, Calendar.OCTOBER);
61 cal.set(Calendar.DATE, 31);
62 cal.set(Calendar.MONTH, Calendar.NOVEMBER)
    [all...]

Completed in 956 milliseconds

<<51525354555657585960>>