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

<<61626364656667686970>>

  /external/skia/src/gpu/
GrDrawTarget.cpp 595 // Set the same bounds for all the draws.
648 avmr.set(this->drawState(), *matrix);
693 this->set(target, init, vm);
703 void GrDrawTarget::AutoStateRestore::set(GrDrawTarget* target, ASRInit init, const SkMatrix* vm) { function in class:GrDrawTarget::AutoStateRestore
719 fTempState.set(*fSavedState);
739 fTempState.set(*fSavedState);
760 this->set(target, vertexCount, indexCount);
771 bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target, function in class:GrDrawTarget::AutoReleaseGeometry
    [all...]
GrInOrderDrawBuffer.cpp 137 // We set the draw state's color to white here. This is done so that any batching performed
140 // constant color in its op== when the kColor layout bit is set and then we can remove
142 acr.set(drawState, 0xFFFFFFFF);
173 // since we already computed the dev verts, set the bounds hint. This will help us avoid
305 void set(GrDrawState* drawState) { function in class:AutoClipReenable
324 acr.set(this->drawState());
  /external/skia/src/gpu/gl/
GrGLShaderBuilder.h 125 uniform should be accessible. At least one bit must be set. Geometry shader uniforms are not
326 kYesDstRead_DstReadKeyBit = 0x1, // Set if we do a dst-copy-read.
327 kUseAlphaConfig_DstReadKeyBit = 0x2, // Set if dst-copy config is alpha only.
328 kTopLeftOrigin_DstReadKeyBit = 0x4, // Set if dst-copy origin is top-left.
438 void set(int index, const SkString& name) { function in struct:GrGLFullShaderBuilder::AttributePair
  /external/smack/src/org/xbill/DNS/
Message.java 360 Set hash = new HashSet();
366 RRset set = (RRset) sets.get(j); local
367 if (set.getType() == recs[i].getRRsetType() &&
368 set.getDClass() == recs[i].getDClass() &&
369 set.getName().equals(name))
371 set.addRR(recs[i]);
378 RRset set = new RRset(recs[i]); local
379 sets.add(set);
497 * sign the message with the TSIG key set by a call to setTSIG(). This
  /external/stlport/stlport/stl/
_bitset.h 73 //returns the number of bit set within the buffer between __beg and __end.
88 // Mapping from 8 bit unsigned integers to the index of the first one bit set:
479 // Versions of single-bit set, reset, flip, test with no range checking.
510 // Set, reset, and flip.
512 bitset<_Nb>& set() { function in class:bitset
518 bitset<_Nb>& set(size_t __pos) { function in class:bitset
524 bitset<_Nb>& set(size_t __pos, int __val) { function in class:bitset
646 set(__i);
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-linux.c 95 /* Set the threadgroup for real. This overwrites the provisional
96 value set in do_clone() syswrap-*-linux.c. See comments in
100 /* Thread created with all signals blocked; scheduler will set the
198 Use the continuation pointer set at startup in m_main. */
227 "movl %1, %0\n" /* set tst->status = VgTs_Empty */
228 "movl %2, %%eax\n" /* set %eax = __NR_exit */
229 "movl %3, %%ebx\n" /* set %ebx = tst->os_state.exitcode */
238 "movl %1, %0\n" /* set tst->status = VgTs_Empty */
239 "movq %2, %%rax\n" /* set %rax = __NR_exit */
240 "movq %3, %%rdi\n" /* set %rdi = tst->os_state.exitcode *
2901 vki_old_sigset_t* set; local
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 81 int set; member in struct:milenage_parameters
159 m->set = 1;
207 if (!db_tmp_milenage.set)
221 "UPDATE milenage SET sqn='%s' WHERE imsi=%s;",
  /frameworks/av/media/libmedia/
AudioRecord.cpp 96 mStatus = set(inputSource, sampleRate, format, channelMask, frameCount, cbf, user,
122 status_t AudioRecord::set( function in class:android::AudioRecord
166 ALOGV("set(): sampleRate %u, channelMask %#x, frameCount %u", sampleRate, channelMask,
223 ALOGV("AudioRecord::set() minFrameCount = %d", minFrameCount);
241 ALOGV("set(): mSessionId %d", mSessionId);
335 // the record head position will reset to 0, so if a marker is set, we need
772 // These fields don't need to be cached, because they are assigned only by set():
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 73 * The set of keyframes (time/value pairs) that define this animation.
115 * type will need to set the evaluator to a custom evaluator for that type.
120 * The value most recently calculated by calculateValue(). This is set during
127 * Internal utility constructor, used by the factory methods to set the property name.
135 * Internal utility constructor, used by the factory methods to set the property.
147 * set of int values.
158 * set of int values.
169 * set of float values.
180 * set of float values.
191 * set of Object values. This variant also takes a TypeEvaluator because the syste
    [all...]
  /frameworks/base/core/java/android/text/
TextLine.java 40 * <p>Call set to prepare the instance for use, then either draw, measure,
131 void set(TextPaint paint, CharSequence text, int start, int limit, int dir, method in class:TextLine
248 emojiRect.set(x + h, y + bmAscent,
626 wp.set(mPaint);
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 172 // Set the daylight-saving indicator to the unknown value -1 so that
192 set(other);
389 * ends with "Z" then the timezone is set to UTC. If the date-time string
391 * field of this Time class is set to true and the <code>hour</code>,
392 * <code>minute</code>, and <code>second</code> fields are set to zero;
394 * <code>allDay</code> is set to false. The fields <code>weekDay</code>,
395 * <code>yearDay</code>, and <code>gmtoff</code> are always set to zero,
396 * and the field <code>isDst</code> is set to -1 (unknown). To set those
448 * the {@link #allDay} field is set to true and the {@link #hour}
542 native public void set(long millis); method in class:Time
555 public void set(Time that) { method in class:Time
574 public void set(int second, int minute, int hour, int monthDay, int month, int year) { method in class:Time
597 public void set(int monthDay, int month, int year) { method in class:Time
    [all...]
  /frameworks/base/core/java/android/widget/
FrameLayout.java 50 * is set to true.
205 * Returns a set of layout parameters with a width of
264 * @return A Drawable or null if no foreground was set.
486 selfBounds.set(0, 0, w, h);
488 selfBounds.set(mPaddingLeft, mPaddingTop, w - mPaddingRight, h - mPaddingBottom);
630 * Creates a new set of layout parameters with the specified width, height
  /frameworks/base/core/java/com/android/internal/util/
XmlUtils.java 35 import java.util.Set;
231 Set s = val.entrySet();
285 public static final void writeSetXml(Set val, String name, XmlSerializer out)
293 out.startTag(null, "set");
302 out.endTag(null, "set");
446 } else if (v instanceof Set) {
447 writeSetXml((Set)v, name, out);
521 * @return HashSet The resulting set.
623 * <em>after</em> the tag that begins the set.
625 * @param parser The XmlPullParser from which to read the set data
639 HashSet set = new HashSet(); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 44 public void set(Matrix src) {
260 public void set(Matrix src) { method in class:Matrix
286 /** Set the matrix to identity */
291 /** Set the matrix to translate by (dx, dy). */
297 * Set the matrix to scale by sx and sy, with a pivot point at (px, py).
305 /** Set the matrix to scale by sx and sy. */
311 * Set the matrix to rotate by the specified number of degrees, with a pivot
320 * Set the matrix to rotate about (0,0) by the specified number of degrees.
327 * Set the matrix to rotate by the specified sine and cosine values, with a
335 /** Set the matrix to rotate by the specified sine and cosine values. *
    [all...]
Path.java 103 public void set(Path src) { method in class:Path
140 * Set this path to the result of applying the Op to this path and the specified path.
157 * Set this path to the result of applying the Op to the two specified paths.
229 * Set the path's fill type. This defines how "inside" is computed.
267 * not null, set rect to the bounds of the path. If the path does not
281 * set to (0,0,0,0)
303 * Set the beginning of the next contour to the point (x,y).
313 * Set the beginning of the next contour relative to the last point on the
329 * automatically set to (0,0).
357 * this contour, the first point is automatically set to (0,0)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 101 * <li> <b>States</b>: a compound drawable that selects one of a set of
103 * <li> <b>Levels</b>: a compound drawable that selects one of a set of
131 * Draw in its bounds (set via setBounds) respecting optional effects such
132 * as alpha (set via setAlpha) and color filter (set via setColorFilter).
155 mBounds.set(left, top, right, bottom);
177 bounds.set(mBounds);
216 * Set a mask of the configuration parameters for which this drawable
246 * Set to true to have the drawable dither its colors when drawn to a device
253 * Set to true to have the drawable filter its bitmap when scaled or rotate
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EnvReverbTest.java 84 sPlayerController.set(this, R.id.playPause1, playPause,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 232 mMetadata.set(key, null);
234 mMetadata.set(key, value);
245 mMetadata.set(key, value);
499 mMetadata.set(gpsProcessingMethodKey, helloWorld);
519 mMetadata.set(gpsProcessingMethodKeyArray, gpsStrings);
556 mMetadata.set(CameraCharacteristics.SCALER_AVAILABLE_FORMATS, availableFormats);
606 mMetadata.set(CaptureResult.STATISTICS_FACE_DETECT_MODE,
608 mMetadata.set(CaptureResult.STATISTICS_FACE_IDS, expectedFaceIds);
609 mMetadata.set(CaptureResult.STATISTICS_FACE_SCORES, expectedFaceScores);
610 mMetadata.set(CaptureResult.STATISTICS_FACE_RECTANGLES, expectedRects)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 442 mWantRegion.set(x, y, x + t, y + t);
469 mWantRegion.set(x, y, x + t, y + t);
471 mOverlapRegion.set(0, 0, mWidth, mHeight);
  /frameworks/base/services/java/com/android/server/power/
ShutdownThread.java 285 SystemProperties.set(SHUTDOWN_ACTION_PROPERTY, reason);
293 SystemProperties.set(REBOOT_SAFEMODE_PROPERTY, "1");
344 // Set initial variables and time out time.
  /frameworks/base/services/java/com/android/server/wifi/
WifiController.java 295 * Determine whether the bit value corresponding to {@code pluggedType} is set in
329 * Set a timer to put Wi-Fi to sleep, but only if the screen is off
338 if (DBG) Slog.d(TAG, "set idle timer: " + mIdleMillis + " ms");
339 mAlarmManager.set(AlarmManager.RTC_WAKEUP,
352 * Set a timer to put Wi-Fi to sleep, but only if the screen is off
356 * the already-set timer.
363 if (DBG) Slog.d(TAG, "set idle timer for " + mIdleMillis + "ms");
364 mAlarmManager.set(AlarmManager.RTC_WAKEUP, triggerTime, mIdleIntent);
  /frameworks/base/services/java/com/android/server/wm/
AppTransition.java 72 /** Bit mask that is set for all enter transition. */
75 /** Bit mask that is set for all exit transitions. */
78 /** Not set up for a transition. */
349 AnimationSet set = new AnimationSet(false); local
350 set.addAnimation(scale);
351 set.addAnimation(alpha);
352 set.setDetachWallpaper(true);
353 a = set;
409 AnimationSet set = new AnimationSet(false); local
410 set.addAnimation(scale)
453 AnimationSet set = new AnimationSet(true); local
    [all...]
DisplayContent.java 218 out.set(left, top, left + width, top + height);
386 mTouchExcludeRegion.set(mBaseDisplayRect);
392 mTmpRect.set(win.mVisibleFrame);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 181 TreeSet<TestResult> set = new TreeSet<TestResult>(new Comparator<TestResult>() { local
195 set.add(t);
198 for (TestResult t : set.descendingSet()) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 78 * @param year The year that was set.
79 * @param monthOfYear The month that was set (0-11) for compatibility
81 * @param dayOfMonth The day of the month that was set.
437 // if year was not set, use 2000 as it was a leap year
438 cal.set(mHasYear ? mYear : 2000, mMonth, 1);
459 // if year was not set, use 2000 as it was a leap year
460 cal.set(Calendar.YEAR, mHasYear ? mYear : 2000);
461 cal.set(Calendar.MONTH, mMonth);

Completed in 1473 milliseconds

<<61626364656667686970>>