/frameworks/support/v4/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/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
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) {
|
ProductionComponentProcessingStep.java | 48 ComponentDescriptor.Factory componentDescriptorFactory, 49 BindingGraph.Factory bindingGraphFactory,
|
/cts/tests/tests/telephony/src/android/telephony/cts/ |
PhoneNumberUtilsTest.java | 211 Editable jpEditNumber = Editable.Factory.getInstance().newEditable("0377777777"); 214 jpEditNumber = Editable.Factory.getInstance().newEditable("09077777777"); 217 jpEditNumber = Editable.Factory.getInstance().newEditable("0120777777"); 220 jpEditNumber = Editable.Factory.getInstance().newEditable("+81377777777"); 223 jpEditNumber = Editable.Factory.getInstance().newEditable("+819077777777"); 230 Editable editNumber = Editable.Factory.getInstance().newEditable("0377777777"); 233 editNumber = Editable.Factory.getInstance().newEditable("+177777777"); 236 editNumber = Editable.Factory.getInstance().newEditable("+8177777777");
|
/external/clang/unittests/AST/ |
NamedDeclPrinterTest.cpp | 71 std::unique_ptr<FrontendActionFactory> Factory = 74 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
|
/external/clang/unittests/Tooling/ |
RefactoringCallbacksTest.cpp | 28 std::unique_ptr<tooling::FrontendActionFactory> Factory( 30 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), Code))
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
BindingFieldTest.java | 49 private Key.Factory keyFactory; 54 this.keyFactory = new Key.Factory(types, elements);
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormatServiceShim.java | 20 import android.icu.impl.ICUService.Factory; 69 Object registerFactory(NumberFormatFactory factory) { 70 return service.registerFactory(new NFFactory(factory)); 74 return service.unregisterFactory((Factory)registryKey);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
ModuleTest.java | 16 import android.icu.dev.test.TestDataModule.Factory; 85 m = Factory.get(baseName, localeName);
|