HomeSort by relevance Sort by last modified time
    Searched refs:Factory (Results 226 - 250 of 816) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestFactory.java 11 import org.unicode.cldr.util.Factory;
15 public class TestFactory extends Factory {
TestOutdatedPaths.java 44 PathHeader.Factory pathHeaders = PathHeader.getFactory(testInfo.getEnglish());
50 private void checkShow(PathHeader.Factory pathHeaders, String locale) {
TestCldrFactory.java 20 import org.unicode.cldr.util.Factory;
45 Factory factory = SimpleFactory.make(paths, ".*"); local
48 File[] dirs = factory.getSourceDirectories();
51 List<File> enDirs = factory.getSourceDirectoriesForLocale("en");
55 File enDir = factory.getSourceDirectoryForLocale("en");
63 Factory factoryAnnotations = SimpleFactory.make(CLDRPaths.ANNOTATIONS_DIRECTORY, ".*");
68 Factory factoryDouble = SimpleFactory.make(paths, ".*");
163 Factory factoryAnnotations = SimpleFactory.make(CLDRPaths.ANNOTATIONS_DIRECTORY, ".*");
167 Factory factoryDouble = SimpleFactory.make(paths, ".*")
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
PrepareRootAnnotations.java 10 import org.unicode.cldr.util.Factory;
20 Factory factoryAnnotations = SimpleFactory.make(CLDRPaths.ANNOTATIONS_DIRECTORY, ".*");
  /external/emma/ant/ant14/com/vladium/emma/ant/
SuppressableTask.java 117 return IProperties.Factory.combine (verbositySettings,
118 IProperties.Factory.combine (genericSettings,
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IElement.java 26 abstract class Factory
39 static class ElementImpl extends ISimpleElement.Factory.SimpleElementImpl
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
AbstractManagedChannelImplBuilder.java 58 throw new UnsupportedOperationException("Subclass failed to hide static factory");
62 throw new UnsupportedOperationException("Subclass failed to hide static factory");
86 private static final NameResolver.Factory DEFAULT_NAME_RESOLVER_FACTORY =
103 private NameResolver.Factory nameResolverFactory = DEFAULT_NAME_RESOLVER_FACTORY;
118 @Nullable LoadBalancer.Factory loadBalancerFactory;
141 protected TransportTracer.Factory transportTracerFactory = TransportTracer.getDefaultFactory();
226 public final T nameResolverFactory(NameResolver.Factory resolverFactory) {
239 public final T loadBalancerFactory(LoadBalancer.Factory loadBalancerFactory) {
241 "directServerAddress is set (%s), which forbids the use of LoadBalancer.Factory",
430 // other interceptor can override the tracer factory we set in CallOptions
    [all...]
  /external/grpc-grpc-java/core/src/test/java/io/grpc/inprocess/
InProcessServerTest.java 41 Collections.<ServerStreamTracer.Factory>emptyList());
67 new InProcessServer("name", pool, Collections.<ServerStreamTracer.Factory>emptyList());
  /external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
NettyTransportTest.java 58 protected InternalServer newServer(List<ServerStreamTracer.Factory> streamTracerFactories) {
68 InternalServer server, List<ServerStreamTracer.Factory> streamTracerFactories) {
  /external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
OkHttpTransportTest.java 52 protected InternalServer newServer(List<ServerStreamTracer.Factory> streamTracerFactories) {
63 InternalServer server, List<ServerStreamTracer.Factory> streamTracerFactories) {
  /external/guice/extensions/testlib/src/com/google/inject/testing/throwingproviders/
CheckedProviderSubject.java 20 implements Subject.Factory<CheckedProviderSubject<T, P>, P> {
29 Subject.Factory<CheckedProviderSubject<T, P>, P> checkedProviders() {
  /external/perfetto/src/tracing/ipc/service/
service_ipc_host_impl.cc 31 // Implements the publicly exposed factory method declared in
69 std::unique_ptr<SharedMemory::Factory> shm_factory(
70 new PosixSharedMemory::Factory());
  /external/testng/src/test/java/test/mannotation/
MTest1.java 16 import org.testng.annotations.Factory;
64 @Factory(parameters = {"pf1", "pf2"})
65 public void factory() {} method in class:MTest1
  /external/v8/src/compiler/
typed-optimization.h 16 class Factory;
68 Factory* factory() const;
  /external/clang/unittests/ASTMatchers/
ASTMatchersInternalTest.cpp 114 std::unique_ptr<FrontendActionFactory> Factory(
116 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
136 std::unique_ptr<FrontendActionFactory> Factory(
138 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
162 std::unique_ptr<FrontendActionFactory> Factory(
164 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
  /external/cldr/tools/java/org/unicode/cldr/util/
Factory.java 16 * A factory is the normal method to produce a set of CLDRFiles from a directory of XML files.
19 public abstract class Factory implements SublocaleProvider {
159 System.out.println("Factory.makeResolvingSource: calling handleMake for locale " +
182 public static Factory make(String path, String string) {
198 public static Factory make(String mainDirectory, String string, DraftStatus approved) {
203 * Get a set of the available locales for the factory.
245 * Sets the supplemental directory to be used by this Factory and CLDRFiles
246 * created by this Factory.
251 public Factory setSupplementalDirectory(File supplementalDirectory) {
261 return Factory.make(getSupplementalDirectory().getPath(), ".*").make("supplementalData", false)
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProductionBinding.java 42 * should be created using an instance of the {@link Factory}.
94 static final class Factory {
96 private final Key.Factory keyFactory;
97 private final DependencyRequest.Factory dependencyRequestFactory;
99 Factory(
100 Types types, Key.Factory keyFactory, DependencyRequest.Factory dependencyRequestFactory) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneNames.java 118 private static final Factory TZNAMES_FACTORY;
119 private static final String FACTORY_NAME_PROP = "android.icu.text.TimeZoneNames.Factory.impl";
123 Factory factory = null; external variable declarations
127 factory = (Factory) Class.forName(classname).newInstance();
142 if (factory == null) {
143 factory = new DefaultTimeZoneNames.FactoryImpl();
145 TZNAMES_FACTORY = factory;
451 * The super class of <code>TimeZoneNames</code> service factory classes
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneNames.java 135 private static final Factory TZNAMES_FACTORY;
136 private static final String FACTORY_NAME_PROP = "com.ibm.icu.text.TimeZoneNames.Factory.impl";
140 Factory factory = null; external variable declarations
144 factory = (Factory) Class.forName(classname).newInstance();
159 if (factory == null) {
160 factory = new DefaultTimeZoneNames.FactoryImpl();
162 TZNAMES_FACTORY = factory;
485 * The super class of <code>TimeZoneNames</code> service factory classes
    [all...]
  /external/libchrome/base/metrics/
histogram.cc 98 class Histogram::Factory {
100 Factory(const std::string& name,
105 : Factory(name, HISTOGRAM, minimum, maximum, bucket_count, flags) {}
106 virtual ~Factory() = default;
113 Factory(const std::string& name,
156 DISALLOW_COPY_AND_ASSIGN(Factory);
159 HistogramBase* Histogram::Factory::Build() {
258 return Factory(name, minimum, maximum, bucket_count, flags).Build();
816 class LinearHistogram::Factory : public Histogram::Factory {
    [all...]
  /external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
AbstractManagedChannelImplBuilderTest.java 106 NameResolver.Factory nameResolverFactory = mock(NameResolver.Factory.class);
113 NameResolver.Factory defaultValue = builder.getNameResolverFactory();
114 builder.nameResolverFactory(mock(NameResolver.Factory.class));
121 directAddressBuilder.nameResolverFactory(mock(NameResolver.Factory.class));
131 LoadBalancer.Factory loadBalancerFactory = mock(LoadBalancer.Factory.class);
138 LoadBalancer.Factory defaultValue = builder.loadBalancerFactory;
139 builder.loadBalancerFactory(mock(LoadBalancer.Factory.class));
146 directAddressBuilder.loadBalancerFactory(mock(LoadBalancer.Factory.class))
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
MetaKeyKeyListenerTest.java 56 final Editable content = Editable.Factory.getInstance().newEditable(str);
82 final Editable content = Editable.Factory.getInstance().newEditable(str);
106 Spannable content = Editable.Factory.getInstance().newEditable(str);
115 content = Editable.Factory.getInstance().newEditable(str);
124 content = Editable.Factory.getInstance().newEditable(str);
151 Spannable text = Editable.Factory.getInstance().newEditable(str);
159 text = Editable.Factory.getInstance().newEditable(str);
167 text = Editable.Factory.getInstance().newEditable(str);
313 Editable text = Editable.Factory.getInstance().newEditable(str);
321 text = Editable.Factory.getInstance().newEditable(str)
    [all...]
  /external/guice/core/src/com/google/inject/internal/
ConstructorBindingImpl.java 46 private final Factory<T> factory; field in class:ConstructorBindingImpl
55 Factory<T> factory,
58 this.factory = factory;
69 this.factory = new Factory<>(false, key);
73 factory.constructorInjector =
137 Factory<T> factoryFactory = new Factory<>(failIfNotLinked, key)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/
Glide.java 219 register(File.class, ParcelFileDescriptor.class, new FileDescriptorFileLoader.Factory());
220 register(File.class, InputStream.class, new StreamFileLoader.Factory());
221 register(int.class, ParcelFileDescriptor.class, new FileDescriptorResourceLoader.Factory());
222 register(int.class, InputStream.class, new StreamResourceLoader.Factory());
223 register(Integer.class, ParcelFileDescriptor.class, new FileDescriptorResourceLoader.Factory());
224 register(Integer.class, InputStream.class, new StreamResourceLoader.Factory());
225 register(String.class, ParcelFileDescriptor.class, new FileDescriptorStringLoader.Factory());
226 register(String.class, InputStream.class, new StreamStringLoader.Factory());
227 register(Uri.class, ParcelFileDescriptor.class, new FileDescriptorUriLoader.Factory());
228 register(Uri.class, InputStream.class, new StreamUriLoader.Factory());
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICULocaleService.java 93 public Factory registerObject(Object obj, ULocale locale) {
102 public Factory registerObject(Object obj, ULocale locale, boolean visible) {
111 public Factory registerObject(Object obj, ULocale locale, int kind) {
117 * a SimpleLocaleKeyFactory, and registers the factory.
119 public Factory registerObject(Object obj, ULocale locale, int kind, boolean visible) {
120 Factory factory = new SimpleLocaleKeyFactory(obj, locale, kind, visible); local
121 return registerFactory(factory);
351 * A subclass of Factory that uses LocaleKeys. If 'visible' the
352 * factory reports its IDs
    [all...]

Completed in 2678 milliseconds

1 2 3 4 5 6 7 8 91011>>