HomeSort by relevance Sort by last modified time
    Searched refs:observe (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.idl 36 [RaisesException] void observe(Node target, Dictionary options);
MutationObserver.h 87 void observe(Node*, const Dictionary&, ExceptionState&);
  /external/libcxx/test/utilities/optional/optional.object/optional.object.observe/
Android.mk 17 test_makefile := external/libcxx/test/utilities/optional/optional.object/optional.object.observe/Android.mk
19 test_name := utilities/optional/optional.object/optional.object.observe/bool
23 test_name := utilities/optional/optional.object/optional.object.observe/value_const
27 test_name := utilities/optional/optional.object/optional.object.observe/value_or
31 test_name := utilities/optional/optional.object/optional.object.observe/dereference_const
35 test_name := utilities/optional/optional.object/optional.object.observe/dereference
39 test_name := utilities/optional/optional.object/optional.object.observe/op_arrow_const
43 test_name := utilities/optional/optional.object/optional.object.observe/value
47 test_name := utilities/optional/optional.object/optional.object.observe/value_or_const
51 test_name := utilities/optional/optional.object/optional.object.observe/op_arro
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.h 55 void observe(Element*);
CustomElementObserver.cpp 64 void CustomElementObserver::observe(Element* element) function in class:WebCore::CustomElementObserver
CustomElementUpgradeCandidateMap.cpp 56 observe(element);
  /external/chromium_org/chrome/test/ispy/client/
wait_on_ajax.js 17 }).observe(target, {attributes: true, childList: true,
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3315.js 23 Object.observe({}, function(){}, acceptList);
regress-observe-map-cache.js 10 Object.observe(x, function() { });
regress-1237.js 32 function observe(x, y) { return x; } function
34 return observe(1, ((x? observe(observe.prototype.x): 'c'), x + 1));
regress-1167.js 40 // OSR (after deoptimization) is used to observe the stack height mismatch.
66 function observe(x, y) { return x; } function
68 return observe(this,
69 (((side_effect.observe <= side_effect.side_effect) !== false),
regress-1166.js 32 function observe(x, y) { return x; } function
34 function test(x) { return observe(1, ((false || false), x + 1)); }
regress-1210.js 35 function observe(x, y) { return x; } function
43 return observe(a, arguments[side_effect(a), a + 0]);
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js 112 // Object.observe
113 assertThrows(function() { Object.observe("non-object", observer.callback); },
115 assertThrows(function() { Object.observe(this, observer.callback); },
117 assertThrows(function() { Object.observe(obj, nonFunction); }, TypeError);
118 assertThrows(function() { Object.observe(obj, frozenFunction); }, TypeError);
119 assertEquals(obj, Object.observe(obj, observer.callback, [1]));
120 assertEquals(obj, Object.observe(obj, observer.callback, [true]));
121 assertEquals(obj, Object.observe(obj, observer.callback, ['foo', null]));
122 assertEquals(obj, Object.observe(obj, observer.callback, [undefined]));
123 assertEquals(obj, Object.observe(obj, observer.callback
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-push7.js 16 // Test that Object.observe() notification events are properly sent from
24 Object.observe(array, somethingChanged);
  /frameworks/av/media/libmediaplayerservice/
HDCP.h 58 void observe(int msg, int ext1, int ext2);
HDCP.cpp 163 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
166 void HDCP::observe(int msg, int ext1, int ext2) { function in class:android::HDCP
  /external/chromium_org/base/android/javatests/src/org/chromium/base/
ObserverListTest.java 20 void observe(int x); method in interface:ObserverListTest.Observer
32 public void observe(int x) { method in class:ObserverListTest.Foo
38 * An observer which add a given Observer object to the list when observe is called.
50 public void observe(int x) { method in class:ObserverListTest.FooAdder
56 * An observer which removes a given Observer object from the list when observe is called.
68 public void observe(int x) { method in class:ObserverListTest.FooRemover
95 obs.observe(10);
105 obs.observe(10);
107 // observe should be called twice on a.
109 // observe should be called twice on b
    [all...]
  /frameworks/base/core/java/android/os/
FileObserver.java 85 observe(m_fd);
130 private native void observe(int fd); method in class:FileObserver.ObserverThread
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-3218915.js 36 // A function to observe the value of its first argument.
37 function observe(x, y) { try {} finally {} return x; } function
42 function test(x) { return observe(this, ((0, side_effect()), x + 1)); }
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
  /frameworks/base/policy/src/com/android/internal/policy/impl/
ShortcutManager.java 59 public void observe() { method in class:ShortcutManager
  /external/chromium_org/v8/src/
object-observe.js 9 // This file contains all of the routing and accounting for Object.observe.
10 // User code will interact with these mechanisms via the Object.observe APIs
13 // proper change records for objects which were mutated. The Object.observe
166 // An Observer is a registration to observe an object by a callback with
168 // set for Object.observe, the observer is represented as a direct reference
363 throw MakeTypeError("observe_non_object", ["observe"]);
365 throw MakeTypeError("observe_global_proxy", ["observe"]);
367 throw MakeTypeError("observe_non_function", ["observe"]);
628 "observe", ObjectObserve,
632 "observe", ArrayObserve
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
tag_watcher.js 17 // Observe the tags added later.
29 documentObserver.observe(document, {subtree: true, childList: true});
  /frameworks/base/services/core/java/com/android/server/
NetworkTimeUpdateService.java 123 mSettingsObserver.observe(mContext);
298 void observe(Context context) { method in class:NetworkTimeUpdateService.SettingsObserver

Completed in 410 milliseconds

1 2 3