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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/aidl/android/telecom/cts/thirdptyincallservice/
ICtsThirdPartyInCallServiceControl.aidl 21 boolean checkBindStatus(boolean bind);
27 void resetLatchForServiceBound(boolean bind);
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_int_0.pass.cpp 15 // unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
46 test(std::bind(f), 1);
47 test(std::bind(&f), 1);
48 test(std::bind(A_int_0()), 4);
49 test_const(std::bind(A_int_0()), 5);
51 test(std::bind<int>(f), 1);
52 test(std::bind<int>(&f), 1);
53 test(std::bind<int>(A_int_0()), 4);
54 test_const(std::bind<int>(A_int_0()), 5)
    [all...]
invoke_void_0.pass.cpp 15 // unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
60 test(std::bind(f));
61 test(std::bind(&f));
62 test(std::bind(A_void_0()));
63 test_const(std::bind(A_void_0()));
65 test(std::bind<void>(f));
66 test(std::bind<void>(&f));
67 test(std::bind<void>(A_void_0()));
68 test_const(std::bind<void>(A_void_0()))
    [all...]
invoke_rvalue.pass.cpp 15 // unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
51 std::bind(f_void_1, _1)(2);
56 std::bind(f_void_1, 2)();
63 std::bind(fp, _1)(3);
69 std::bind(fp, 3)();
76 std::bind(a0, _1)(4);
82 std::bind(a0, 4)();
89 std::bind(fp, _1)(A_void_1());
93 std::bind(fp, _1)(&a)
    [all...]
invoke_lvalue.pass.cpp 15 // unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
52 std::bind(f_void_1, _1)(i);
58 std::bind(f_void_1, i)();
66 std::bind(fp, _1)(i);
73 std::bind(fp, i)();
81 std::bind(a0, _1)(i);
88 std::bind(a0, i)();
96 std::bind(fp, _1)(a);
100 std::bind(fp, _1)(ap)
    [all...]
invoke_function_object.pass.cpp 15 // unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
45 // instantiated when checking if BadUnaryFunction is a nested bind
47 auto b = std::bind(DummyUnaryFunction(), BadUnaryFunction());
49 auto b2 = std::bind<long>(DummyUnaryFunction(), BadUnaryFunction());
  /external/swiftshader/src/Reactor/
Routine.hpp 30 void bind();
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
BackToTheFutureModule.java 33 bind(DeLorian.class);
35 bind(EnergySource.class).annotatedWith(Nuclear.class).to(Plutonium.class);
36 bind(EnergySource.class).annotatedWith(Renewable.class).to(Lightning.class);
38 bind(Plutonium.class).toProvider(PlutoniumProvider.class);
39 bind(PinballParts.class).annotatedWith(Used.class).toInstance(new PinballParts());
41 bind(Person.class).annotatedWith(Driver.class).to(MartyMcFly.class).in(Singleton.class);
42 bind(Person.class).annotatedWith(Inventor.class).to(DocBrown.class).in(Singleton.class);
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/
is_bind_expression.pass.cpp 33 test<true>(std::bind(C()));
34 test<true>(std::bind(C(), std::placeholders::_2));
35 test<true>(std::bind<int>(C()));
  /bionic/libc/arch-arm/syscalls/
bind.S 5 ENTRY(bind) function
16 END(bind)
  /bionic/libc/arch-arm64/syscalls/
bind.S 5 ENTRY(bind) function
14 END(bind)
  /bionic/libc/arch-mips/syscalls/
bind.S 5 ENTRY(bind) function
19 END(bind)
  /bionic/libc/arch-x86_64/syscalls/
bind.S 5 ENTRY(bind) function
15 END(bind)
  /external/grpc-grpc/test/cpp/interop/
client.cc 104 std::bind(&CreateChannelForTestCase, FLAGS_test_case);
110 std::bind(&grpc::testing::InteropClient::DoEmpty, &client);
112 std::bind(&grpc::testing::InteropClient::DoLargeUnary, &client);
113 actions["server_compressed_unary"] = std::bind(
115 actions["client_compressed_unary"] = std::bind(
118 std::bind(&grpc::testing::InteropClient::DoRequestStreaming, &client);
120 std::bind(&grpc::testing::InteropClient::DoResponseStreaming, &client);
121 actions["server_compressed_streaming"] = std::bind(
123 actions["client_compressed_streaming"] = std::bind(
125 actions["slow_consumer"] = std::bind(
    [all...]
  /external/guice/core/test/com/google/inject/
ErrorHandlingTest.java 44 bind(String.class)
127 bind(Runnable.class);
128 bind(Foo.class);
129 bind(Bar.class);
130 bind(Tee.class);
131 bind(new TypeLiteral<List<String>>() {}); method
132 bind(String.class).annotatedWith(Names.named("foo")).in(Named.class);
133 bind(Key.get(Runnable.class)).to(Key.get(Runnable.class));
134 bind(TooManyScopes.class);
136 bind(Object.class
    [all...]
ModuleTest.java 17 binder.bind(X.class);
26 binder.bind(Y.class);
34 binder.bind(Z.class);
42 binder.bind(W.class);
  /external/testng/src/test/java/test/guice/
GuiceParentModule.java 19 bind(MyService.class).toProvider(MyServiceProvider.class);
20 bind(MyContext.class).to(MyContextImpl.class).in(Singleton.class);
21 bind(ITestContext.class).toInstance(context);
  /cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/src/android/telecom/cts/thirdptyincallservice/
CtsThirdPartyInCallServiceControl.java 33 public boolean checkBindStatus(boolean bind) {
34 return CtsThirdPartyInCallService.checkBindStatus(bind);
43 public void resetLatchForServiceBound(boolean bind) {
44 CtsThirdPartyInCallService.resetLatchForServiceBound(bind);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
unicast.py 9 s.bind(('', 0))
  /external/google-fruit/examples/scaling_doubles/
multiplier.cpp 27 return fruit::createComponent().bind<Multiplier, MultiplierImpl>().registerConstructor<MultiplierImpl()>();
  /external/google-fruit/examples/simple_injection/
simple_adder.cpp 29 return fruit::createComponent().bind<Adder, SimpleAdder>();
  /external/google-fruit/examples/testing/
greeter.cpp 30 .bind<Greeter, GreeterImpl>();
  /external/pdfium/fxjs/xfa/
cjx_map.h 19 JS_PROP(bind);
  /external/python/cpython2/Demo/sockets/
unicast.py 9 s.bind(('', 0))
  /external/strace/
bind.c 34 SYS_FUNC(bind)

Completed in 868 milliseconds

1 2 3 4 5 6 7 8 91011>>