HomeSort by relevance Sort by last modified time
    Searched full:mutate (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/webkit/WebCore/manual-tests/inspector/
dom-mutation.html 3 document.getElementById("test").src = "resources/mutate-frame.html";
7 document.getElementById("test").src = "resources/mutate-frame-2.html";
29 <iframe id="test" src="resources/mutate-frame.html" width="200" height="300"></iframe>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ProxyDrawable.java 94 public Drawable mutate() { method in class:ProxyDrawable
95 if (mProxy != null && !mMutated && super.mutate() == this) {
96 mProxy.mutate();
  /frameworks/base/docs/html/resources/articles/
drawable-mutations.jd 68 with the new {@link android.graphics.drawable.Drawable#mutate()} method</a>.
73 you invoke <code>mutate()</code> on a drawable:</p>
77 <p>Let's update our previous piece of code to make use of <code>mutate()</code>:</p>
81 star.mutate().setAlpha(255); // opaque
83 star. mutate().setAlpha(70); // translucent
86 <p>For convenience, <code>mutate()</code>
  /frameworks/base/core/tests/coretests/src/android/view/
MutateDrawable.java 45 ok.getBackground().mutate().setAlpha(127);
  /external/webkit/WebCore/storage/
StorageEventDispatcher.cpp 47 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
48 // of any given page in the group or mutate the page group itself.
  /external/webkit/WebKit/chromium/src/
StorageEventDispatcherImpl.cpp 61 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
62 // of any given page in the group or mutate the page group itself.
StorageAreaProxy.cpp 116 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
117 // of any given page in the group or mutate the page group itself.
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
LevelListDrawableTest.java 203 method = "mutate",
215 // the state does not appear to be shared before calling mutate()
221 // simply call mutate to make sure no exception is thrown
222 d1.mutate();
NinePatchDrawableTest.java 442 method = "mutate",
445 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
454 // the state is not shared before mutate.
460 // cannot test if mutate worked, since state was not shared before
461 d1.mutate();
StateListDrawableTest.java 282 method = "mutate",
285 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
299 d1.mutate();
AnimationDrawableTest.java 450 method = "mutate",
453 @ToBeFixed(bug = "", explanation = "mutate always throws out NullPointerException")
458 // simply call mutate to make sure it does not throw an exception
459 d1.mutate();
RotateDrawableTest.java 322 method = "mutate",
343 d1.mutate();
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 526 // could mutate the list by calling the various add/remove methods. This prevents
544 // could mutate the list by calling the various add/remove methods. This prevents
565 // could mutate the list by calling the various add/remove methods. This prevents
585 // could mutate the list by calling the various add/remove methods. This prevents
602 // could mutate the list by calling the various add/remove methods. This prevents
627 // could mutate the list by calling the various add/remove methods. This prevents
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 276 public Drawable mutate() { method in class:AnimatedRotateDrawable
277 if (!mMutated && super.mutate() == this) {
278 mState.mDrawable.mutate();
InsetDrawable.java 246 public Drawable mutate() { method in class:InsetDrawable
247 if (!mMutated && super.mutate() == this) {
248 mInsetState.mDrawable.mutate();
RotateDrawable.java 277 public Drawable mutate() { method in class:RotateDrawable
278 if (!mMutated && super.mutate() == this) {
279 mState.mDrawable.mutate();
ScaleDrawable.java 245 public Drawable mutate() { method in class:ScaleDrawable
246 if (!mMutated && super.mutate() == this) {
247 mScaleState.mDrawable.mutate();
LevelListDrawable.java 144 public Drawable mutate() { method in class:LevelListDrawable
145 if (!mMutated && super.mutate() == this) {
DrawableContainer.java 246 public Drawable mutate() { method in class:DrawableContainer
247 if (!mMutated && super.mutate() == this) {
251 if (drawables[i] != null) drawables[i].mutate(); method
StateListDrawable.java 235 public Drawable mutate() { method in class:StateListDrawable
236 if (!mMutated && super.mutate() == this) {
AnimationDrawable.java 288 public Drawable mutate() { method in class:AnimationDrawable
289 if (!mMutated && super.mutate() == this) {
NinePatchDrawable.java 333 public Drawable mutate() { method in class:NinePatchDrawable
334 if (!mMutated && super.mutate() == this) {
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.graphics.drawable.Drawable.html 87 <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#mutate()" target="_top"><code>mutate</code></A>()</nobr>
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-290592.js 55 function mutate(v, index, array) function
57 reportCompare(v, array[index], 'mutate: check callback argument consistency');
219 actual = strings.map(mutate).toString();
225 reportCompare(expect, actual, 'Array.map: mutate');
326 reportCompare(expect, actual, 'Array.forEach: mutate');
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 62 * <p>WARNING: Do not mutate this class from this function!</p>

Completed in 126 milliseconds

1 2 3