Home
last modified time | relevance | path

Searched refs:expose (Results 1 – 25 of 105) sorted by relevance

12345

/external/webrtc/webrtc/tools/rtcbot/bot/browser/
Dbot.js33 expose(obj, pc, "close");
34 expose(obj, pc, "createOffer");
35 expose(obj, pc, "createAnswer");
36 expose(obj, pc, "addEventListener");
37 expose(obj, pc, "addIceCandidate", { 0: RTCIceCandidate});
38 expose(obj, pc, "setRemoteDescription", { 0: RTCSessionDescription });
39 expose(obj, pc, "setLocalDescription", { 0: RTCSessionDescription });
/external/guice/core/test/com/google/inject/
DPrivateModuleTest.java53 expose(AB.class).annotatedWith(named("one")); in testBasicUsage()
62 expose(AB.class).annotatedWith(named("two")); in testBasicUsage()
82 bindA.expose(String.class).annotatedWith(named("a")); in testWithoutPrivateModules()
87 bindB.expose(String.class).annotatedWith(named("b")); in testWithoutPrivateModules()
118 ((PrivateBinder) binder()).expose(String.class).annotatedWith(named("a")); in testMisplacedExposeStatement()
134 expose(String.class).annotatedWith(named("a")); in testPrivateModulesAndProvidesMethods()
184 expose(String.class); in testCannotBindAKeyExportedByASibling()
213 expose(AB.class); in testExposeButNoBind()
260 expose(String.class); in testNestedPrivateInjectors()
265 expose(String.class); in testNestedPrivateInjectors()
[all …]
DJitBindingsTest.java412 expose(FooBar.class); in testPrivateModulesInheritOptions()
430 expose(Foo.class); in testPrivateModulesInheritOptions()
450 expose(FooBar.class); in testPrivateModuleAddsOption()
479 expose(FooBar.class); in testPrivateModuleSiblingsDontShareOption()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/
Dtestharness.js139 expose(test, 'test');
140 expose(async_test, 'async_test');
141 expose(generate_tests, 'generate_tests');
142 expose(setup, 'setup');
143 expose(done, 'done');
144 expose(on_event, 'on_event');
291 expose(format_value, "format_value");
302 expose(assert_true, "assert_true");
309 expose(assert_false, "assert_false");
339 expose(assert_equals, "assert_equals");
[all …]
/external/guice/core/src/com/google/inject/
DPrivateModule.java113 protected final <T> void expose(Key<T> key) { in expose() method in PrivateModule
114 binder().expose(key); in expose()
122 protected final AnnotatedElementBuilder expose(Class<?> type) { in expose() method in PrivateModule
123 return binder().expose(type); in expose()
131 protected final AnnotatedElementBuilder expose(TypeLiteral<?> type) { in expose() method in PrivateModule
132 return binder().expose(type); in expose()
DPrivateBinder.java31 void expose(Key<?> key); in expose() method
38 AnnotatedElementBuilder expose(Class<?> type); in expose() method
45 AnnotatedElementBuilder expose(TypeLiteral<?> type); in expose() method
/external/v8/test/mjsunit/regress/
Dregress-crbug-431602.js17 function expose(a, b, c) { function
21 assertEquals(9, expose(8, 9, 10));
22 assertEquals(9, expose(8, BreakIt(), 10));
/external/webrtc/webrtc/tools/rtcbot/bot/
Dapi.js28 function expose(obj, src, method, casts) { function
36 window.expose = expose;
/external/jemalloc/test/include/test/
Djemalloc_test.h.in70 * For unit tests, expose all public and private interfaces.
79 * For integration tests, expose the public jemalloc interfaces, but only
80 * expose the minimum necessary internal utility code (to avoid re-implementing
107 * For stress tests, expose the public jemalloc interfaces with name mangling
108 * so that they can be tested as e.g. malloc() and free(). Also expose the
/external/mesa3d/docs/
DMESA_copy_sub_buffer.spec34 used to quickly repaint 3D windows in response to expose events
65 in response to expose events when the back color buffer cannot be
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DPrivateTestModule.java32 expose(Exposed.class); in configure()
/external/guice/core/test/com/google/inject/util/
DOverrideModuleTest.java377 expose(Integer.class); in testOverridePrivateModuleOverPrivateModule()
386 expose(Long.class); in testOverridePrivateModuleOverPrivateModule()
399 expose(Integer.class); in testOverridePrivateModuleOverPrivateModule()
428 expose(Integer.class); in testOverrideModuleAndPrivateModule()
454 expose(Integer.class); in testOverrideDeepExpose()
459 expose(Integer.class); in testOverrideDeepExpose()
/external/llvm/test/Transforms/FunctionImport/
Dfuncimport.ll44 ; The import of referencestatics will expose call to staticfunc that
53 ; The import of referenceglobals will expose call to globalfunc1 that
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
Dant.cmd78 _testenv_: procedure expose env ANT_HOME JAVA_HOME
88 _getenv_: procedure expose env
/external/autotest/utils/named_semaphore/
DREADME1 A simple module to expose the standard sem_* functions in Linux needed for
/external/libmicrohttpd/src/testzzuf/
DREADME4 clients and the MHD server. The goal is to expose problems in MHD's
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DServletScopesTest.java75 expose(f); in testIsRequestScopedPositive()
139 expose(i); in testIsRequestScopedNegative()
/external/guice/core/src/com/google/inject/util/
DModules.java188 privateBinder.withSource(privateElements.getExposedSource(exposed)).expose(exposed); in configure()
258 privateBinder.withSource(privateElements.getExposedSource(key)).expose(key); in configure()
/external/guice/core/src/com/google/inject/spi/
DElements.java460 public void expose(Key<?> key) { in expose() method in Elements.RecordingBinder
465 public AnnotatedElementBuilder expose(Class<?> type) { in expose() method in Elements.RecordingBinder
470 public AnnotatedElementBuilder expose(TypeLiteral<?> type) { in expose() method in Elements.RecordingBinder
/external/llvm/test/Transforms/LoopUnroll/
D2011-08-09-IVSimplify.ll4 ; expose nice opportunities for GVN.
/external/guice/core/src/com/google/inject/internal/
DPrivateElementsImpl.java123 privateBinder.withSource(entry.getValue()).expose(entry.getKey()); in applyTo()
/external/llvm/test/Transforms/SimplifyCFG/
Dvolatile-phioper.ll8 ; needs to expose the volatile access to the platform.
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DCheckedProviderMethod.java99 ((PrivateBinder) binder).expose(sbinder.getKey()); in configure()
/external/v8/src/
Dlog.h422 #define V(TimerName, expose) \ argument
426 static bool expose_to_api() { return expose; } \
/external/llvm/docs/HistoricalNotes/
D2001-02-06-TypeNotationDebateResp2.txt21 * As a low level VM, we want to expose addressing computations

12345