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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.idl 36 [RaisesException] void observe(Node target, MutationObserverInit options);
MutationObserver.h 89 void observe(Node*, const MutationObserverInit&, 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:blink::CustomElementObserver
  /external/chromium_org/v8/test/mjsunit/harmony/regress/
regress-405844.js 9 Object.observe(proxy, function(){});
13 Object.observe(functionProxy, function(){});
  /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),
  /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...]
object-observe-debug-event.js 32 assertEquals("Object.observe", event_data.name());
43 Object.observe(obj, function(changes) {
  /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);
  /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/es6/debug-promises/
reject-caught-all.js 66 // Run testDone through the Object.observe processing loop.
68 Object.observe(dummy, checkResult);
reject-uncaught-all.js 63 // Run testDone through the Object.observe processing loop.
65 Object.observe(dummy, checkResult);
reject-uncaught-late.js 70 // Run testDone through the Object.observe processing loop.
72 Object.observe(dummy, checkResult);
reject-uncaught-uncaught.js 63 // Run testDone through the Object.observe processing loop.
65 Object.observe(dummy, checkResult);
reject-with-invalid-reject.js 69 // Run testDone through the Object.observe processing loop.
71 Object.observe(dummy, checkResult);
reject-with-undefined-reject.js 69 // Run testDone through the Object.observe processing loop.
71 Object.observe(dummy, checkResult);
throw-caught-all.js 65 // Run testDone through the Object.observe processing loop.
67 Object.observe(dummy, checkResult);
throw-uncaught-all.js 64 // Rerun testDone through the Object.observe processing loop.
66 Object.observe(dummy, checkResult);

Completed in 492 milliseconds

1 2 3 4 5