Searched defs:Provider (Results 1 - 25 of 45) sorted by relevance

12

/external/jsr330/src/javax/inject/
H A DProvider.java22 * {@code Provider<T>}. Compared to injecting {@code T} directly, injecting
23 * {@code Provider<T>} enables:
37 * &#064;Inject Car(Provider&lt;Seat> seatProvider) {
44 public interface Provider<T> { interface
/external/skia/src/core/
H A DSkNormalSource.h34 class Provider { class in class:SkNormalSource
36 virtual ~Provider() {}
44 /** Returns an instance of 'Provider' that provides normals for the CPU pipeline. The
47 virtual Provider* asProvider(const SkShader::ContextRec&, SkArenaAlloc*) const = 0;
H A DSkNormalFlatSource.h21 SkNormalSource::Provider* asProvider(const SkShader::ContextRec& rec,
30 class Provider : public SkNormalSource::Provider { class in class:SkNormalFlatSourceImpl
32 Provider();
34 ~Provider() override;
39 typedef SkNormalSource::Provider INHERITED;
H A DSkNormalFlatSource.cpp73 SkNormalFlatSourceImpl::Provider::Provider() {} function in class:SkNormalFlatSourceImpl::Provider
75 SkNormalFlatSourceImpl::Provider::~Provider() {}
77 SkNormalSource::Provider* SkNormalFlatSourceImpl::asProvider(const SkShader::ContextRec &rec,
79 return alloc->make<Provider>();
82 void SkNormalFlatSourceImpl::Provider::fillScanLine(int x, int y, SkPoint3 output[],
H A DSkNormalBevelSource.h24 SkNormalSource::Provider* asProvider(const SkShader::ContextRec& rec,
33 class Provider : public SkNormalSource::Provider { class in class:SkNormalBevelSourceImpl
35 Provider();
37 ~Provider() override;
42 typedef SkNormalSource::Provider INHERITED;
H A DSkNormalMapSource.h23 SkNormalSource::Provider* asProvider(const SkShader::ContextRec& rec,
34 class Provider : public SkNormalSource::Provider { class in class:SkNormalMapSourceImpl
36 Provider(const SkNormalMapSourceImpl& source, SkShader::Context* mapContext);
44 typedef SkNormalSource::Provider INHERITED;
H A DSkNormalBevelSource.cpp257 SkNormalBevelSourceImpl::Provider::Provider() {} function in class:SkNormalBevelSourceImpl::Provider
259 SkNormalBevelSourceImpl::Provider::~Provider() {}
261 SkNormalSource::Provider* SkNormalBevelSourceImpl::asProvider(const SkShader::ContextRec &rec,
263 return alloc->make<Provider>();
267 void SkNormalBevelSourceImpl::Provider::fillScanLine(int x, int y, SkPoint3 output[],
H A DSkNormalMapSource.cpp134 SkNormalMapSourceImpl::Provider::Provider(const SkNormalMapSourceImpl& source, function in class:SkNormalMapSourceImpl::Provider
139 SkNormalSource::Provider* SkNormalMapSourceImpl::asProvider(const SkShader::ContextRec &rec,
157 return alloc->make<Provider>(*this, context);
171 void SkNormalMapSourceImpl::Provider::fillScanLine(int x, int y, SkPoint3 output[],
/external/guice/core/src/com/google/inject/
H A DProvider.java25 * is insufficient for a particular binding, the module can specify a custom {@code Provider}
28 * <li>An implementation class may always choose to have a {@code Provider<T>} instance injected,
34 * <li>A custom {@link Scope} is implemented as a decorator of {@code Provider<T>}, which decides
37 * <li>The {@link Injector} offers access to the {@code Provider<T>} it uses to fulfill requests
45 public interface Provider<T> extends javax.inject.Provider<T> { interface in inherits:javax.inject.Provider
/external/syslinux/com32/include/sys/
H A Dgpxe.h10 uint32_t Provider; member in struct:s_PXENV_FILE_CHECK_API
/external/libchrome/base/files/
H A Dfile_tracing.h32 class Provider { class in class:base::FileTracing
34 virtual ~Provider() = default;
58 static void SetProvider(Provider* provider);
/external/dagger2/lib/
H A Djavax-inject.jarjavax/ javax/inject/ javax/inject/Qualifier.class Qualifier.java package javax.inject public abstract annotation javax ...
/external/guice/lib/
H A Djavax.inject.jarjavax/ javax/inject/ javax/inject/Inject.class Inject.java package javax.inject public abstract annotation javax ...
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cpp34 struct Provider struct in namespace:PR9325
40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}}
44 Target<int*>* traits = &Provider<int*>::Instance; // expected-note{{requested here}}
/external/libmojo/base/
H A Dpath_service.cc43 struct Provider { struct in namespace:base::__anon10820
45 struct Provider* next;
53 Provider base_provider = {
64 Provider base_provider_win = {
76 Provider base_provider_mac = {
88 Provider base_provider_android = {
100 Provider base_provider_posix = {
116 Provider* providers; // Linked list of path service providers.
181 Provider* provider = NULL;
296 Provider*
[all...]
/external/wycheproof/java/com/google/security/wycheproof/
H A DWycheproofRunner.java37 * <p>To exclude certain tests, a runner class should be annotated with {@code @Provider} which
60 * <p>Usage: @Provider(ProviderType.BOUNCY_CASTLE)
64 public @interface Provider { interface in class:WycheproofRunner
137 Provider targetProvider;
143 this.targetProvider = runnerClass.getAnnotation(Provider.class);
160 // Run all test functions if the test runner is not annotated with {@code @Provider}.
/external/pdfium/core/fpdfdoc/
H A Dcpdf_variabletext.h64 class Provider { class in class:CPDF_VariableText
66 explicit Provider(IPVT_FontMap* pFontMap);
67 virtual ~Provider();
85 void SetProvider(CPDF_VariableText::Provider* pProvider);
237 CPDF_VariableText::Provider* m_pVTProvider;
H A Dcpdf_variabletext.cpp32 CPDF_VariableText::Provider::Provider(IPVT_FontMap* pFontMap) function in class:CPDF_VariableText::Provider
37 CPDF_VariableText::Provider::~Provider() {}
39 int32_t CPDF_VariableText::Provider::GetCharWidth(int32_t nFontIndex,
49 int32_t CPDF_VariableText::Provider::GetTypeAscent(int32_t nFontIndex) {
55 int32_t CPDF_VariableText::Provider::GetTypeDescent(int32_t nFontIndex) {
61 int32_t CPDF_VariableText::Provider::GetWordFontIndex(uint16_t word,
75 bool CPDF_VariableText::Provider::IsLatinWord(uint16_t word) {
80 int32_t CPDF_VariableText::Provider
[all...]
/external/v8/tools/clang/plugins/tests/
H A Dipc.cpp282 struct Provider { struct
310 Provider p;
320 IPC::WriteParam(nullptr, p.get<Provider::flags>()); // OK
/external/guice/core/src/com/google/inject/internal/
H A DInjectorImpl.java35 import com.google.inject.Provider;
180 // If Key is a Provider, we have to see if the type it is providing exists,
184 // This is safe because isProvider above ensures that T is a Provider<?>
286 /** Returns true if the key type is Provider (but not a subclass of Provider). */
288 return key.getTypeLiteral().getRawType().equals(Provider.class);
295 private static <T> Key<T> getProvidedKey(Key<Provider<T>> key, Errors errors) throws ErrorsException {
298 // If the Provider has no type parameter (raw Provider)...
305 @SuppressWarnings("unchecked") // safe because T came from Key<Provider<
370 acceptTargetVisitor(BindingTargetVisitor<? super Provider<T>, V> visitor) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp1709 BitPart(Value *P, unsigned BW) : Provider(P) {
1714 Value *Provider; member in struct:BitPart
1716 /// in Provider becomes bit B in the result of this expression.
1733 /// BitPart is returned with Provider set to %X and Provenance[24-31] set to
1767 if (!A->Provider || A->Provider != B->Provider)
1770 Result = BitPart(A->Provider, BitWidth);
1846 Result = BitPart(Res->Provider, BitWidth);
1931 Value *Provider local
[all...]
/external/syslinux/com32/include/syslinux/
H A Dpxe_api.h404 uint32_t Provider; member in struct:s_PXENV_FILE_API_CHECK
/external/syslinux/gpxe/src/arch/i386/include/
H A Dpxe_api.h1770 UINT32_t Provider; /**< Implementation identifier */ member in struct:s_PXENV_FILE_API_CHECK
/external/caliper/lib/
H A Djsr311-api-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2014 milliseconds

12