HomeSort by relevance Sort by last modified time
    Searched refs:Factory (Results 251 - 275 of 985) sorted by null

<<11121314151617181920>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
WebSearchSuggestionView.java 90 public static class Factory extends SuggestionViewInflater {
92 public Factory(Context context) {
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 74 std::unique_ptr<FrontendActionFactory> Factory(
82 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, Filename,
174 std::unique_ptr<FrontendActionFactory> Factory(
183 if (!runToolOnCodeWithArgs(Factory->create(),
225 std::unique_ptr<FrontendActionFactory> Factory(
229 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args)) {
  /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) {
ProvisionBinding.java 50 * should be created using an instance of the {@link Factory}.
66 static final class Factory {
69 private final Key.Factory keyFactory;
70 private final DependencyRequest.Factory dependencyRequestFactory;
72 Factory(Elements elements, Types types, Key.Factory keyFactory,
73 DependencyRequest.Factory dependencyRequestFactory) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneNames.java 116 private static final Factory TZNAMES_FACTORY;
117 private static final String FACTORY_NAME_PROP = "android.icu.text.TimeZoneNames.Factory.impl";
121 Factory factory = null; typedefs
125 factory = (Factory) Class.forName(classname).newInstance();
140 if (factory == null) {
141 factory = new DefaultTimeZoneNames.FactoryImpl();
143 TZNAMES_FACTORY = factory;
448 * The super class of <code>TimeZoneNames</code> service factory classes
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneNames.java 133 private static final Factory TZNAMES_FACTORY;
134 private static final String FACTORY_NAME_PROP = "com.ibm.icu.text.TimeZoneNames.Factory.impl";
138 Factory factory = null; typedefs
142 factory = (Factory) Class.forName(classname).newInstance();
157 if (factory == null) {
158 factory = new DefaultTimeZoneNames.FactoryImpl();
160 TZNAMES_FACTORY = factory;
483 * The super class of <code>TimeZoneNames</code> service factory classes
    [all...]
  /external/v8/test/mjsunit/
debug-set-variable-value.js 101 new_result, success_expected, factory) {
108 this.factory_ = factory;
142 function Factory(debug_stop) {
150 new ClosureTestCase(0, 4, 't', 7, 9, true, function Factory(debug_stop) {
159 new ClosureTestCase(0, 6, 't', 10, 13, true, function Factory(debug_stop) {
169 function Factory(debug_stop) {
178 function Factory(debug_stop) {
195 function Factory(debug_stop) {
222 RunPauseTest(0, 'HelloYou', 'u', 'We', 'HelloWe', (function Factory() {
232 (function Factory() {
    [all...]
  /frameworks/support/compat/api20/android/support/v4/app/
NotificationCompatApi20.java 134 int actionIndex, NotificationCompatBase.Action.Factory actionFactory,
135 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
140 Notification.Action action, NotificationCompatBase.Action.Factory actionFactory,
141 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
173 NotificationCompatBase.Action.Factory actionFactory,
174 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
  /cts/tests/tests/text/src/android/text/method/cts/
MetaKeyKeyListenerTest.java 39 final Editable content = Editable.Factory.getInstance().newEditable(str);
64 final Editable content = Editable.Factory.getInstance().newEditable(str);
87 Spannable content = Editable.Factory.getInstance().newEditable(str);
96 content = Editable.Factory.getInstance().newEditable(str);
105 content = Editable.Factory.getInstance().newEditable(str);
130 Spannable text = Editable.Factory.getInstance().newEditable(str);
138 text = Editable.Factory.getInstance().newEditable(str);
146 text = Editable.Factory.getInstance().newEditable(str);
252 Editable text = Editable.Factory.getInstance().newEditable(str);
260 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
50 InternalFactory<? extends T> scopedFactory, Scoping scoping, Factory<T> factory,
53 this.factory = factory;
60 this.factory = new Factory<T>(false, key);
64 factory.constructorInjector = new ConstructorInjector<T>(
120 Factory<T> factoryFactory = new Factory<T>(failIfNotLinked, key)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
UriUtil.java 28 import com.android.messaging.Factory;
142 pfd = Factory.get().getApplicationContext()
183 final Context context = Factory.get().getApplicationContext();
196 final Context context = Factory.get().getApplicationContext();
234 final Context context = Factory.get().getApplicationContext();
253 final Context context = Factory.get().getApplicationContext();
341 final Context context = Factory.get().getApplicationContext();
OsUtil.java 27 import com.android.messaging.Factory;
143 final Context context = Factory.get().getApplicationContext();
201 final Context context = Factory.get().getApplicationContext();
  /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...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
InfiniteStreamWithLimitOpTest.java 141 return TestData.Factory.ofSupplier(
151 return TestData.Factory.ofIntSupplier(
161 return TestData.Factory.ofLongSupplier(
171 return TestData.Factory.ofDoubleSupplier(
301 return TestData.Factory.ofLongSupplier(
360 TestData.OfRef<Long> generator = TestData.Factory.ofSupplier(
371 TestData.OfInt generator = TestData.Factory.ofIntSupplier(
382 TestData.OfLong generator = TestData.Factory.ofLongSupplier(
393 TestData.OfDouble generator = TestData.Factory.ofDoubleSupplier(
407 TestData.OfRef<Long> iterator = TestData.Factory.ofSupplier
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICULocaleService.java 91 public Factory registerObject(Object obj, ULocale locale) {
100 public Factory registerObject(Object obj, ULocale locale, boolean visible) {
109 public Factory registerObject(Object obj, ULocale locale, int kind) {
115 * a SimpleLocaleKeyFactory, and registers the factory.
117 public Factory registerObject(Object obj, ULocale locale, int kind, boolean visible) {
118 Factory factory = new SimpleLocaleKeyFactory(obj, locale, kind, visible); local
119 return registerFactory(factory);
343 * A subclass of Factory that uses LocaleKeys. If 'visible' the
344 * factory reports its IDs
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICULocaleService.java 87 public Factory registerObject(Object obj, ULocale locale) {
96 public Factory registerObject(Object obj, ULocale locale, boolean visible) {
105 public Factory registerObject(Object obj, ULocale locale, int kind) {
111 * a SimpleLocaleKeyFactory, and registers the factory.
113 public Factory registerObject(Object obj, ULocale locale, int kind, boolean visible) {
114 Factory factory = new SimpleLocaleKeyFactory(obj, locale, kind, visible); local
115 return registerFactory(factory);
339 * A subclass of Factory that uses LocaleKeys. If 'visible' the
340 * factory reports its IDs
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MessagingContentProvider.java 30 import com.android.messaging.Factory;
107 final Context context = Factory.get().getApplicationContext();
129 final ContentResolver cr = Factory.get().getApplicationContext().getContentResolver();
134 final ContentResolver cr = Factory.get().getApplicationContext().getContentResolver();
139 final ContentResolver cr = Factory.get().getApplicationContext().getContentResolver();
183 final Context context = Factory.get().getApplicationContext();
203 final ContentResolver cr = Factory.get().getApplicationContext().getContentResolver();
209 final ContentResolver cr = Factory.get().getApplicationContext().getContentResolver();
214 final Context context = Factory.get().getApplicationContext();
473 // We cannot initialize mDatabaseWrapper yet as the Factory may not be initialize
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionServiceImpl.java 28 import com.android.messaging.Factory;
136 final Intent intent = new Intent(Factory.get().getApplicationContext(),
152 final Intent intent = new Intent(Factory.get().getApplicationContext(),
161 final Context context = Factory.get().getApplicationContext();
226 final Context context = Factory.get().getApplicationContext();
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerUtils.java 23 import android.text.Spannable.Factory;
37 private static final Factory mSpannableFactory = Spannable.Factory.getInstance();
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
IntStreamTestDataProvider.java 87 name, TestData.Factory.ofArray("array:" + name, ints)});
94 TestData.Factory.ofSpinedBuffer("SpinedList:" + name, isl)});
140 return new Object[] { description, TestData.Factory.ofIntSupplier(description, s) };
LongStreamTestDataProvider.java 87 TestData.Factory.ofArray("array:" + name, longs)});
94 TestData.Factory.ofSpinedBuffer("SpinedList:" + name, isl)});
140 return new Object[] { description, TestData.Factory.ofLongSupplier(description, s) };
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
IntStreamTestDataProvider.java 88 name, TestData.Factory.ofArray("array:" + name, ints)});
95 TestData.Factory.ofSpinedBuffer("SpinedList:" + name, isl)});
141 return new Object[] { description, TestData.Factory.ofIntSupplier(description, s) };
LongStreamTestDataProvider.java 88 TestData.Factory.ofArray("array:" + name, longs)});
95 TestData.Factory.ofSpinedBuffer("SpinedList:" + name, isl)});
141 return new Object[] { description, TestData.Factory.ofLongSupplier(description, s) };
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
LevelTrackingMediaRecorder.java 22 import com.android.messaging.Factory;
105 mOutputFD = Factory.get().getApplicationContext()
152 Factory.get().getApplicationContext().getContentResolver().delete(
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Cubemap.java 109 this(TextureData.Factory.loadFromFile(positiveX, useMipMaps), TextureData.Factory.loadFromFile(negativeX, useMipMaps),
110 TextureData.Factory.loadFromFile(positiveY, useMipMaps), TextureData.Factory.loadFromFile(negativeY, useMipMaps),
111 TextureData.Factory.loadFromFile(positiveZ, useMipMaps), TextureData.Factory.loadFromFile(negativeZ, useMipMaps));

Completed in 1448 milliseconds

<<11121314151617181920>>