/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | FactoryModuleBuilder.java | 217 public <T> FactoryModuleBuilder implement(Class<T> source, Class<? extends T> target) { in implement() method in FactoryModuleBuilder 218 return implement(source, TypeLiteral.get(target)); in implement() 222 public <T> FactoryModuleBuilder implement(Class<T> source, TypeLiteral<? extends T> target) { in implement() method in FactoryModuleBuilder 223 return implement(TypeLiteral.get(source), target); in implement() 227 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Class<? extends T> target) { in implement() method in FactoryModuleBuilder 228 return implement(source, TypeLiteral.get(target)); in implement() 232 public <T> FactoryModuleBuilder implement( in implement() method in FactoryModuleBuilder 234 return implement(Key.get(source), target); in implement() 238 public <T> FactoryModuleBuilder implement( in implement() method in FactoryModuleBuilder 240 return implement(source, annotation, TypeLiteral.get(target)); in implement() [all …]
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
D | FactoryModuleBuilderTest.java | 135 .implement(Car.class, Volkswagen.class) in testExplicitForwardingAssistedBindingFailsWithInterface() 161 .implement(Car.class, AbstractCar.class) in testExplicitForwardingAssistedBindingFailsWithAbstractClass() 187 .implement(Car.class, Mustang.class) in testExplicitForwardingAssistedBindingCreatesNewObjects() 216 .implement(Car.class, Names.named("german"), Beetle.class) in testAnnotatedAndParentBoundReturnValue() 217 .implement(Car.class, Names.named("american"), Mustang.class) in testAnnotatedAndParentBoundReturnValue() 237 .implement(Car.class, Mustang.class) in testParentBoundReturnValue() 255 .implement(Car.class, Names.named("german"), Beetle.class) in testConfigureAnnotatedReturnValue() 256 .implement(Car.class, Names.named("american"), Mustang.class) in testConfigureAnnotatedReturnValue() 290 .implement(Car.class, Mustang.class) in testBindingAssistedInject() 309 .implement(Car.class, Mustang.class) in testDuplicateBindings() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithImplements.java | 45 default N setImplementedType(int i, ClassOrInterfaceType implement) { in setImplementedType() argument 46 getImplementedTypes().set(i, implement); in setImplementedType() 51 default N addImplementedType(ClassOrInterfaceType implement) { in addImplementedType() argument 52 getImplementedTypes().add(implement); in addImplementedType()
|
/external/clang/test/SemaObjC/ |
D | attr-objc-runtime-visible.m | 10 @implementation A(X) // expected-error{{cannot implement a category for class 'A' that is only visi… 16 @implementation B // expected-error{{cannot implement subclass 'B' of a superclass 'A' that is only…
|
/external/tensorflow/tensorflow/contrib/recurrent/ |
D | README.md | 6 Its chief application is to implement recurrent neural networks (RNNs, LSTMs, 8 used to implement deep networks.
|
/external/libcxx/docs/DesignDocs/ |
D | ThreadingSupportAPI.rst | 12 to implement the threading parts of libc++, including ``<thread>`` and ``<mutex>``. 15 consistent API, which it uses internally to implement threading primitives. 66 This macro is defined when libc++ should use POSIX threads to implement the 70 This macro is defined when libc++ should use Win32 threads to implement the
|
/external/python/cpython2/Demo/classes/ |
D | README | 1 Examples of classes that implement special operators (see reference manual): 6 Range.py Example of a generator: re-implement built-in range()
|
/external/u-boot/doc/ |
D | README.hwconfig | 17 We can implement this by integrating apt-get[3] into Das 20 2. Since we don't implement a hwconfig command, i.e. we're working 50 It's quite trivial to implement simple cases though.
|
/external/libunwind/ |
D | TODO | 28 + implement non-local versions of dwarf_readXX() 45 we can use them in libunwind to implement an efficient version of a 57 + implement the remote-lookup of the dynamic registration list 64 + implement unw_resume() for the case where the current register frame is split 67 + implement remote cases of unw_resume()
|
/external/libpng/ |
D | ANNOUNCE | 29 Send comments/corrections/commendations to png-mng-implement at lists.sf.net 31 https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | SubclassBytecodeGenerator.java | 86 .implement(new ArrayList<Type>(features.interfaces)) in mockClass() 99 .implement(MockAccess.class) in mockClass() 102 builder = builder.implement(CrossClassLoaderSerializableMock.class) in mockClass()
|
/external/libcxx/src/support/runtime/ |
D | exception_pointer_glibcxx.ipp | 11 // libsupc++ does not implement the dependent EH ABI and the functionality 12 // it uses to implement std::exception_ptr (which it declares as an alias of
|
/external/python/cpython3/Doc/library/ |
D | asyncio-policy.rst | 22 Policy objects should implement the APIs defined 121 which child watchers should implement, and has two different 138 policy. *watcher* must implement methods defined in the 206 To implement a new event loop policy, it is recommended to subclass
|
/external/python/pyasn1/ |
D | TODO.rst | 80 * may need to implement prettyIn/Out 84 * may need to implement constraints
|
/external/antlr/runtime/C/doxygen/ |
D | runtime.dox | 23 /// for its function pointers, then look at the documentation for the default methods that implement 29 /// to implement the class methods.
|
/external/clang/tools/scan-build-py/libear/ |
D | ear.c | 169 #error can not implement execv without execve 208 # error can not implement execl without execve 227 # error can not implement execlp without execvp 245 # error can not implement execle without execve
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | messages.proto | 71 // implement the full compression tests by introspecting the call to verify 100 // implement the full compression tests by introspecting the call to verify 124 // implement the full compression tests by introspecting the call to verify
|
/external/curl/docs/ |
D | ALTSVC.md | 38 - implement `CURLOPT_ALTSVC_CTRL` 39 - implement `CURLOPT_ALTSVC`
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | README.md | 3 Used by chttp2/{client,server}/{insecure,secure} plugins to implement most of
|
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/ |
D | AssistedInjectModule.java | 32 .implement(DanceParty.class, DancePartyImpl.class) in configure()
|
/external/llvm/test/CodeGen/AArch64/ |
D | global-alignment.ll | 13 ; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load. 41 ; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load.
|
/external/apache-commons-bcel/ |
D | TODO.JustIce | 35 - It is not verified if classes that propose they would implement an 36 interface _really_ implement all the methods.
|
/external/catch2/docs/ |
D | event-listeners.md | 11 so you are not forced to implement events you're not interested in. 16 Simply derive a class from `Catch::TestEventListenerBase` and implement the methods you are interes…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | global-alignment.ll | 13 ; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load. 41 ; emit an "LDR x0, [x0, #:lo12:var32] instruction to implement this load.
|
/external/pdfium/testing/ |
D | gtest_mac.mm | 19 // to the NSObject protocol. Used to implement {ASSERT|EXPECT}_EQ(). 32 // to the NSObject protocol. Used to implement {ASSERT|EXPECT}_NE().
|