HomeSort by relevance Sort by last modified time
    Searched defs:factories (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
TranscoderRegistry.java 15 private final Map<MultiClassKey, ResourceTranscoder<?, ?>> factories = field in class:TranscoderRegistry
29 factories.put(new MultiClassKey(decodedClass, transcodedClass), transcoder);
50 result = factories.get(GET_KEY);
  /external/tensorflow/tensorflow/compiler/xla/service/
compiler.cc 53 auto* factories = GetPlatformCompilerFactories(); local
54 CHECK(factories->find(platform_id) == factories->end())
56 (*factories)[platform_id] = std::move(compiler_factory);
75 auto* factories = GetPlatformCompilerFactories(); local
76 auto it = factories->find(platform->id());
77 if (it == factories->end()) {
  /external/tensorflow/tensorflow/core/distributed_runtime/
server_lib.cc 33 static ServerFactories* factories = new ServerFactories; local
34 return factories;
43 LOG(ERROR) << "Two server factories are being registered under "
  /external/skia/gm/
localmatriximagefilter.cpp 52 const ImageFilterFactory factories[] = { local
68 for (auto&& factory : factories) {
  /external/skqp/gm/
localmatriximagefilter.cpp 52 const ImageFilterFactory factories[] = { local
68 for (auto&& factory : factories) {
  /external/tensorflow/tensorflow/core/common_runtime/
session_factory.cc 38 static SessionFactories* factories = new SessionFactories; local
39 return factories;
48 LOG(ERROR) << "Two session factories are being registered "
59 return strings::StrCat("Registered factories are {",
102 "Multiple session factories registered for the given session "
104 SessionOptionsToString(options), "} Candidate factories are {",
device_factory.cc 45 static std::unordered_map<string, FactoryItem>* factories = local
47 return *factories;
55 std::unordered_map<string, FactoryItem>& factories = device_factories(); local
56 auto iter = factories.find(device_type);
57 if (iter != factories.end()) {
69 std::unordered_map<string, FactoryItem>& factories = device_factories(); local
70 auto iter = factories.find(device_type);
71 if (iter == factories.end()) {
72 factories[device_type] = {std::move(factory_ptr), priority};
  /external/conscrypt/benchmark-android/src/main/java/org/conscrypt/
AndroidEndpointFactory.java 18 private final Factories factories; field in class:AndroidEndpointFactory
20 AndroidEndpointFactory(Factories factories) {
21 this.factories = factories;
28 factories.clientFactory, channelType, port, protocols, ciphers);
34 return new ServerEndpoint(factories.serverFactory, factories.serverSocketFactory,
38 private static final class Factories {
    [all...]
  /external/skia/tests/
StreamBufferTest.cpp 97 } factories[] = { local
105 for (auto f : factories) {
  /external/skqp/tests/
StreamBufferTest.cpp 97 } factories[] = { local
105 for (auto f : factories) {
  /frameworks/av/media/libmedia/include/media/
PluginLoader.h 34 * factories list.
49 factories.push(plugin);
58 for (size_t i = 0; i < factories.size(); i++) {
59 delete factories[i];
64 return factories[i];
67 size_t factoryCount() const {return factories.size();}
89 Vector<T *> factories; member in class:android::PluginLoader
  /external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
OpenJdkEndpointFactory.java 20 private final Factories factories; field in class:OpenJdkEndpointFactory
22 OpenJdkEndpointFactory(Factories factories) {
23 this.factories = factories;
30 factories.clientFactory, channelType, port, protocols, ciphers);
36 return new ServerEndpoint(factories.serverFactory, factories.serverSocketFactory,
40 private static final class Factories {
    [all...]
  /hardware/interfaces/drm/1.0/default/include/
PluginLoader.h 38 * factories list.
53 factories.push(plugin);
62 for (size_t i = 0; i < factories.size(); i++) {
63 delete factories[i];
68 return factories[i];
71 size_t factoryCount() const {return factories.size();}
93 Vector<T *> factories; member in class:android::hardware::drm::V1_0::helper::PluginLoader
  /prebuilts/misc/windows/sdl2/test/
testnative.c 25 static NativeWindowFactory *factories[] = { variable
145 for (i = 0; factories[i]; ++i) {
146 if (SDL_strcmp(driver, factories[i]->tag) == 0) {
147 factory = factories[i];
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 289 protected static Hashtable factories = null; field in class:LogFactory
293 * <code>factories</code> map, but for the case where
302 * Note that <code>factories</code> is a <i>Hashtable</i> (not a HashMap),
640 * having to care about factories.
662 * having to care about factories.
697 synchronized (factories) {
704 LogFactory factory = (LogFactory) factories.get(classLoader);
707 factories.remove(classLoader);
728 synchronized (factories) {
729 Enumeration elements = factories.elements()
    [all...]
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/
LogFactory.java 122 protected static Hashtable factories = null; field in class:LogFactory
263 * to care about factories.
278 * to care about factories.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUServiceThreadTest.java 211 List factories; field in class:ICUServiceThreadTest.UnregisterFactoryThread
217 factories = service.factories();
222 int s = factories.size();
224 factories = service.factories();
227 Factory f = (Factory)factories.remove(n);
235 Factory[] factories; field in class:ICUServiceThreadTest.UnregisterFactoryListThread
238 UnregisterFactoryListThread(String name, ICUService service, long delay, Factory[] factories) {
241 this.factories = factories
352 List factories = new ArrayList(locales.size()); local
437 Factory[] factories = (Factory[])fc.toArray(new Factory[fc.size()]); local
    [all...]
ICUServiceTest.java 141 // get a list of the factories, should be two
142 List factories = service.factories(); local
143 confirmIdentical("4) factory size", factories.size(), 2);
149 confirmIdentical("5) factory size", factories.size(), 2);
152 // stack of factories is now en, en_US_FOO, en_US
160 factories = service.factories();
161 confirmIdentical("9) factory size", factories.size(), 4);
168 // should have fewer factories agai
778 List factories = service.factories(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceThreadTest.java 208 List factories; field in class:ICUServiceThreadTest.UnregisterFactoryThread
214 factories = service.factories();
219 int s = factories.size();
221 factories = service.factories();
224 Factory f = (Factory)factories.remove(n);
232 Factory[] factories; field in class:ICUServiceThreadTest.UnregisterFactoryListThread
235 UnregisterFactoryListThread(String name, ICUService service, long delay, Factory[] factories) {
238 this.factories = factories
349 List factories = new ArrayList(locales.size()); local
434 Factory[] factories = (Factory[])fc.toArray(new Factory[fc.size()]); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUService.java 53 * <p>Factories can be dynamically registered and unregistered with the
60 * <p>ICUService uses Keys to query factories and perform
63 * parse complex IDs into components that Factories can more easily
71 * unique ids. Factories are associated with each simple ID and
78 * to receive notification when factories are added or removed from
87 * of the objects returned from get, to limit the factories that can
118 * Access to factories is protected by a read-write lock. This is
125 * All the factories registered with this service.
127 private final List<Factory> factories = new ArrayList<Factory>(); field in class:ICUService
130 * Record the default number of factories for this service
761 public final List<Factory> factories() { method in class:ICUService
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUService.java 52 * <p>Factories can be dynamically registered and unregistered with the
59 * <p>ICUService uses Keys to query factories and perform
62 * parse complex IDs into components that Factories can more easily
70 * unique ids. Factories are associated with each simple ID and
77 * to receive notification when factories are added or removed from
86 * of the objects returned from get, to limit the factories that can
116 * Access to factories is protected by a read-write lock. This is
123 * All the factories registered with this service.
125 private final List<Factory> factories = new ArrayList<Factory>(); field in class:ICUService
128 * Record the default number of factories for this service
759 public final List<Factory> factories() { method in class:ICUService
    [all...]
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ProxyMaker.java 32 private final ClassValue<Factory> factories; field in class:ProxyMaker
36 factories = new ClassValue<Factory>() {
44 return factories.get(targetClass).createProxy(targetClass, target);
  /frameworks/av/drm/libmediadrm/
CryptoHal.cpp 117 Vector<sp<ICryptoFactory>> factories; local
122 [&factories](const hidl_vec<hidl_string> &registered) {
127 factories.push_back(factory);
133 [&factories](const hidl_vec<hidl_string> &registered) {
138 factories.push_back(factory);
145 if (factories.size() == 0) {
150 factories.push_back(passthrough);
152 ALOGE("Failed to find any crypto factories");
155 return factories;
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/okhttp-integration/1.3.1/
okhttp-integration-1.3.1.jar 
  /external/guava/guava-testlib/src/com/google/common/testing/
ClassSanityTester.java 252 * factories are tried one after another until one can be used to construct sample instances.
310 List<? extends Invokable<?, ?>> factories = Lists.reverse(getFactories(TypeToken.of(cls))); local
311 if (factories.isEmpty()) {
314 int numberOfParameters = factories.get(0).getParameters().size();
319 // Try factories with the greatest number of parameters.
320 for (Invokable<?, ?> factory : factories) {
407 private final ImmutableList<Invokable<?, ?>> factories; field in class:ClassSanityTester.FactoryMethodReturnValueTester
413 ImmutableList<Invokable<?, ?>> factories,
416 this.factories = factories;
685 List<Invokable<?, ? extends T>> factories = Lists.newArrayList(); local
    [all...]

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011