Searched refs:notifier (Results 176 - 200 of 217) sorted by path

123456789

/external/chromium_org/v8/src/
H A Dobject-observe.js19 // notifier.performChange).
203 notifier: null,
216 function ObjectInfoGetFromNotifier(notifier) {
217 return GetNotifierObjectInfoMap().get(notifier);
221 if (IS_NULL(objectInfo.notifier)) {
222 objectInfo.notifier = { __proto__: notifierPrototype };
223 GetNotifierObjectInfoMap().set(objectInfo.notifier, objectInfo);
226 return objectInfo.notifier;
/external/chromium_org/v8/test/cctest/
H A Dtest-object-observe.cc541 CompileRun("var notifier = Object.getNotifier(obj);"
542 "notifier.notify({ type: 'update' });");
694 Handle<Value> notifier = CompileRun("Object.getNotifier(obj)"); local
701 context2->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "notifier"),
702 notifier);
706 "notifier, 'foo', function(){})");
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js138 var notifier = Object.getNotifier(obj);
139 assertSame(notifier, Object.getNotifier(obj));
142 assertFalse(notifier.hasOwnProperty('notify'));
143 assertEquals([], Object.keys(notifier));
144 var notifyDesc = Object.getOwnPropertyDescriptor(notifier.__proto__, 'notify');
148 assertThrows(function() { notifier.notify({}); }, TypeError);
149 assertThrows(function() { notifier.notify({ type: 4 }); }, TypeError);
151 assertThrows(function() { notifier.performChange(1, function(){}); }, TypeError);
152 assertThrows(function() { notifier.performChange(undefined, function(){}); }, TypeError);
153 assertThrows(function() { notifier
[all...]
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/junit/src/junit/framework/
H A DJUnit4TestAdapterCache.java47 RunNotifier notifier = new RunNotifier();
48 notifier.addListener(new RunListener() {
66 return notifier;
/external/junit/src/org/junit/internal/builders/
H A DIgnoredClassRunner.java18 public void run(RunNotifier notifier) { argument
19 notifier.fireTestIgnored(getDescription());
/external/junit/src/org/junit/internal/runners/
H A DClassRoadie.java25 public ClassRoadie(RunNotifier notifier, TestClass testClass, argument
27 fNotifier= notifier;
H A DErrorReportingRunner.java32 public void run(RunNotifier notifier) { argument
34 runCause(each, notifier);
54 private void runCause(Throwable child, RunNotifier notifier) { argument
56 notifier.fireTestStarted(description);
57 notifier.fireTestFailure(new Failure(description, child));
58 notifier.fireTestFinished(description);
H A DJUnit38ClassRunner.java26 private OldTestClassAdaptingListener(RunNotifier notifier) { argument
27 fNotifier= notifier;
80 public void run(RunNotifier notifier) { argument
82 result.addListener(createAdaptingListener(notifier));
86 public TestListener createAdaptingListener(final RunNotifier notifier) { argument
87 return new OldTestClassAdaptingListener(notifier);
H A DJUnit4ClassRunner.java51 public void run(final RunNotifier notifier) { argument
52 new ClassRoadie(notifier, fTestClass, getDescription(), new Runnable() {
54 runMethods(notifier);
59 protected void runMethods(final RunNotifier notifier) { argument
61 invokeTestMethod(method, notifier);
85 protected void invokeTestMethod(Method method, RunNotifier notifier) { argument
91 testAborted(notifier, description, e.getCause());
94 testAborted(notifier, description, e);
98 new MethodRoadie(test, testMethod, notifier, description).run();
101 private void testAborted(RunNotifier notifier, Descriptio argument
[all...]
H A DMethodRoadie.java31 public MethodRoadie(Object test, TestMethod method, RunNotifier notifier, Description description) { argument
33 fNotifier= notifier;
/external/junit/src/org/junit/internal/runners/model/
H A DEachTestNotifier.java17 public EachTestNotifier(RunNotifier notifier, Description description) { argument
18 fNotifier= notifier;
/external/junit/src/org/junit/runner/
H A DRunner.java29 * @param notifier will be notified of events while tests are being run--tests being
32 public abstract void run(RunNotifier notifier); argument
/external/junit/src/org/junit/runners/
H A DBlockJUnit4ClassRunner.java63 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { argument
66 notifier.fireTestIgnored(description);
68 runLeaf(methodBlock(method), description, notifier);
H A DParameterized.java118 protected Statement classBlock(RunNotifier notifier) { argument
119 return childrenInvoker(notifier);
H A DParentRunner.java96 * reported through {@code notifier}
98 protected abstract void runChild(T child, RunNotifier notifier); argument
152 * @param notifier
155 protected Statement classBlock(final RunNotifier notifier) { argument
156 Statement statement= childrenInvoker(notifier);
218 protected Statement childrenInvoker(final RunNotifier notifier) { argument
222 runChildren(notifier);
227 private void runChildren(final RunNotifier notifier) { argument
231 ParentRunner.this.runChild(each, notifier);
259 RunNotifier notifier) {
258 runLeaf(Statement statement, Description description, RunNotifier notifier) argument
295 run(final RunNotifier notifier) argument
[all...]
H A DSuite.java127 protected void runChild(Runner runner, final RunNotifier notifier) { argument
128 runner.run(notifier);
/external/lldb/include/lldb/Core/
H A DModuleList.h68 ModuleList (ModuleList::Notifier* notifier);
/external/lldb/source/Core/
H A DModuleList.cpp50 ModuleList::ModuleList (ModuleList::Notifier* notifier) : argument
53 m_notifier(notifier)
/external/mockito/src/org/mockito/internal/handler/
H A DMockHandlerFactory.java18 InternalMockHandler notifier = new InvocationNotifierHandler(nullResultGuardian, settings);
20 return notifier;
/external/mockito/src/org/mockito/internal/runners/
H A DJUnit44RunnerImpl.java33 public void run(RunNotifier notifier) { argument
35 notifier.addListener(new FrameworkUsageValidator(notifier));
37 runner.run(notifier);
H A DJUnit45AndHigherRunnerImpl.java33 public void run(final RunNotifier notifier) { argument
35 notifier.addListener(new FrameworkUsageValidator(notifier));
37 runner.run(notifier);

Completed in 1163 milliseconds

123456789