Home
last modified time | relevance | path

Searched refs:implement (Results 1 – 25 of 1560) sorted by relevance

12345678910>>...63

/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryModuleBuilder.java217 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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
DNodeWithImplements.java45 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/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryModuleBuilderTest.java135 .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/rust/crates/once_cell/
DCHANGELOG.md69 - implement `Default` for `Lazy`: it creates an empty `Lazy<T>` which is initialized with `T::defau…
79 - implement `RefUnwindSafe` for `Lazy`.
87 - implement `Eq` for `OnceCell`.
114 - implement `Clone` for `sync::OnceCell<T> where T: Clone`
122 - implement `sync::OnceCell::get_or_try_init` if `parking_lot` feature is enabled
125 - implement `std::panic::RefUnwindSafe` and `std::panic::UnwindSafe` for `OnceCell`
141 - cells implement `PartialEq` and `From`
/external/llvm-project/clang/docs/
DRefactoringEngine.rst7 can be used to implement different refactoring actions. The :doc:`LibTooling`
11 Refactoring engine can be used to implement local refactorings that are
13 :doc:`AST matchers<LibASTMatchers>` and the refactoring engine to implement
26 Clang's refactoring engine defines a set refactoring actions that implement
35 Each action must implement the ``RefactoringAction`` interface. Here's an
84 to the source files. Subclasses that choose to implement this rule have to
85 implement the ``createSourceReplacements`` member function. This type of
86 rule is typically used to implement local refactorings that transform the
91 of rule is typically used to implement an interactive renaming action that
93 refactoring. Subclasses that choose to implement this rule have to implement
[all …]
/external/llvm-project/clang/test/SemaObjC/
Dattr-objc-runtime-visible.m10 @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/clang/test/SemaObjC/
Dattr-objc-runtime-visible.m10 @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/python/cpython2/Demo/classes/
DREADME1 Examples of classes that implement special operators (see reference manual):
6 Range.py Example of a generator: re-implement built-in range()
/external/rust/cxx/tests/ui/
Dnonlocal_rust_type.stderr10 = note: define and implement a trait or new type instead
21 = note: define and implement a trait or new type instead
Dderive_noncopy.stderr8 | ------------ this field does not implement `Copy`
/external/llvm-project/libcxx/docs/DesignDocs/
DThreadingSupportAPI.rst12 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/libcxx/docs/DesignDocs/
DThreadingSupportAPI.rst12 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/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dreadability-container-size-empty.rst13 clearer intent to use ``empty()``. Furthermore some containers may implement
14 the ``empty()`` method but not implement the ``size()`` method. Using
/external/llvm-project/llvm/docs/tutorial/
Dindex.rst14 This is the "Kaleidoscope" Language tutorial, showing how to implement a simple
46 A simple guide for how to implement an LLVM integrated assembler for an
/external/libpng/
DANNOUNCE44 Send comments/corrections/commendations to png-mng-implement at lists.sf.net.
46 https://lists.sourceforge.net/lists/listinfo/png-mng-implement
/external/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp11 // 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/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DSubclassBytecodeGenerator.java86 .implement(new ArrayList<Type>(features.interfaces)) in mockClass()
99 .implement(MockAccess.class) in mockClass()
102 builder = builder.implement(CrossClassLoaderSerializableMock.class) in mockClass()
/external/mesa3d/docs/relnotes/
D20.3.0.rst199 - docs: Stop claiming to implement OpenVG
1182 - ac/nir: implement nir_op_[un]pack_[64/32]_\*
1197 - aco: implement nir_op_unpack_[64/32]_\*
1198 - ac/nir: implement nir_op_[un]pack_64_4x16
1422 - freedreno: implement pipe screen's resource_from_memobj
1716 - egl/x11_dri3: implement EGL_KHR_swap_buffers_with_damage
1776 - gallium/indices: implement prim-restart for line-loops
1778 - gallium/indices: implement prim-restart for triangle fans
2009 - zink: implement pipe_device_reset_callback
2023 - v3dv: implement vkCreateInstance
[all …]
D20.0.0.rst74 - radv: implement VK_AMD_shader_explicit_vertex_parameter
78 - aco: implement GFX6 support
736 - aco: implement nir_op_fquantize2f16 for SI/CI
738 - aco: implement nir_op_isign on SI/CI
740 - aco: implement quad swizzles for SI/CI
744 - aco: implement 64bit VGPR shifts for SI/CI
746 - aco: implement 64bit i2b for SI /CI
747 - aco: implement 64bit ine/ieq for SI/CI
752 - aco: implement (clustered) reductions for SI/CI
753 - aco: implement inclusive_scan for SI/CI
[all …]
/external/llvm-project/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp10 // libsupc++ does not implement the dependent EH ABI and the functionality
11 // it uses to implement std::exception_ptr (which it declares as an alias of
/external/llvm-project/polly/lib/External/
Disl_config.h.cmake47 /* use gmp to implement isl_int */
50 /* use imath to implement isl_int */
/external/python/pyasn1/
DTODO.rst80 * may need to implement prettyIn/Out
84 * may need to implement constraints
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
DREADME.md3 Used by chttp2/{client,server}/{insecure,secure} plugins to implement most of
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
DREADME.md3 Used by chttp2/{client,server}/{insecure,secure} plugins to implement most of
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DAssistedInjectModule.java32 .implement(DanceParty.class, DancePartyImpl.class) in configure()

12345678910>>...63