/aosp12/packages/apps/Camera2/src/com/android/camera/session/ |
H A D | PlaceholderManager.java | 86 if (title == null || placeholder == null) { in insertPlaceholder() 90 if (placeholder.getWidth() <= 0 || placeholder.getHeight() <= 0) { in insertPlaceholder() 94 Uri uri = Storage.instance().addPlaceholder(placeholder); in insertPlaceholder() 102 if (title == null || placeholder == null) { in insertPlaceholder() 107 Bitmap bitmap = BitmapFactory.decodeByteArray(placeholder, 0, placeholder.length, options); in insertPlaceholder() 138 placeholder.outputTitle, placeholder.time, location, orientation, exif, jpeg, width, in finishPlaceholder() 150 public void replacePlaceholder(Placeholder session, Bitmap placeholder) { in replacePlaceholder() argument 151 Storage.instance().replacePlaceholder(session.outputUri, placeholder); in replacePlaceholder() 160 public Optional<Bitmap> getPlaceholder(Placeholder placeholder) { in getPlaceholder() argument 170 public void removePlaceholder(Placeholder placeholder) { in removePlaceholder() argument [all …]
|
H A D | CaptureSessionImpl.java | 220 @Nonnull Bitmap placeholder, int progressMessageId) { in startSession() argument 231 mPlaceHolder = mPlaceholderManager.insertPlaceholder(mTitle, placeholder, in startSession() 236 onCaptureIndicatorUpdate(placeholder, 0); in startSession() 241 @Nonnull byte[] placeholder, int progressMessageId) { in startSession() argument 252 mPlaceHolder = mPlaceholderManager.insertPlaceholder(mTitle, placeholder, in startSession() 421 Bitmap placeholder = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length, in updatePreview() 423 mPlaceholderManager.replacePlaceholder(mPlaceHolder, placeholder); in updatePreview()
|
H A D | CaptureSession.java | 182 public void startSession(@Nullable ImageLifecycleListener listener, @Nonnull byte[] placeholder, in startSession() argument 196 public void startSession(@Nullable ImageLifecycleListener listener, @Nonnull Bitmap placeholder, in startSession() argument
|
/aosp12/system/bt/gd/common/ |
H A D | metric_id_manager_unittest.cc | 144 int placeholder = 22; in TEST() local 204 int placeholder = 243; in TEST() local 279 placeholder = 9; in TEST() 282 ASSERT_EQ(placeholder, 6); in TEST() 285 ASSERT_EQ(placeholder, 4); in TEST() 293 placeholder = 27; in TEST() 323 placeholder = 3; in TEST() 329 placeholder = 3; in TEST() 335 placeholder = 4; in TEST() 348 int placeholder = 22; in TEST() local [all …]
|
/aosp12/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
H A D | ExtendedBitmapDrawable.java | 98 Drawable placeholder = null; in onOptsChanged() local 101 if (mOpts.placeholder != null) { in onOptsChanged() 104 placeholder = constantState.newDrawable(mResources); in onOptsChanged() 106 placeholder = mOpts.placeholder; in onOptsChanged() 109 Rect bounds = mOpts.placeholder.getBounds(); in onOptsChanged() 112 } else if (placeholder.getIntrinsicWidth() != -1) { in onOptsChanged() 113 placeholderWidth = placeholder.getIntrinsicWidth(); in onOptsChanged() 117 } else if (placeholder.getIntrinsicHeight() != -1) { in onOptsChanged() 748 public Drawable placeholder; field in ExtendedBitmapDrawable.ExtendedOptions 781 this.placeholder = placeholder; in ExtendedOptions() [all …]
|
H A D | CircularBitmapDrawable.java | 103 BitmapDrawable placeholder = in onDrawPlaceholderOrProgress() local 105 Bitmap bitmap = placeholder.getBitmap(); in onDrawPlaceholderOrProgress() 106 float alpha = placeholder.getPaint().getAlpha() / 255f; in onDrawPlaceholderOrProgress()
|
/aosp12/frameworks/base/tools/aapt/ |
H A D | pseudolocalize.h | 13 virtual String16 placeholder(const String16& text) = 0; 20 String16 placeholder(const String16& text) { return text; } in placeholder() function 28 String16 placeholder(const String16& text); 37 String16 placeholder(const String16& text);
|
H A D | pseudolocalize.cpp | 77 chunk = mImpl->placeholder(chunk); in text() 292 result += ((c == '%') ? chunk : placeholder(chunk)); in text() 353 String16 PseudoMethodAccent::placeholder(const String16& source) { in placeholder() function in PseudoMethodAccent 394 String16 PseudoMethodBidi::placeholder(const String16& source) { in placeholder() function in PseudoMethodBidi
|
/aosp12/system/bt/gd/dumpsys/internal/test_data/ |
H A D | struct_generated.h | 19 int32_t placeholder() const { in placeholder() function 31 void add_placeholder(int32_t placeholder) { in add_placeholder() 32 fbb_.AddElement<int32_t>(TestSubTable::VT_PLACEHOLDER, placeholder, 0); in add_placeholder() 46 flatbuffers::FlatBufferBuilder& _fbb, int32_t placeholder = 0) { 48 builder_.add_placeholder(placeholder);
|
H A D | struct.fbs | 4 placeholder:int;
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/ |
H A D | WallpaperSurfaceCallback.java | 158 Integer placeholder = null; in setupSurfaceWallpaper() local 161 placeholder = mPlaceholderColor.get(); in setupSurfaceWallpaper() 166 mHomeImageWallpaper.setBackgroundColor((placeholder != null) ? placeholder in setupSurfaceWallpaper()
|
/aosp12/art/test/2026-DifferentMemoryLSCouples/src/ |
H A D | Main.java | 19 int placeholder; field in Main.A 23 int placeholder; field in Main.B
|
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/slice/ |
H A D | WifiSlice.java | 108 final CharSequence placeholder = mContext.getText(R.string.summary_placeholder); in getSlice() local 113 listBuilder.addRow(getLoadingRow(placeholder)); in getSlice() 116 .setTitle(placeholder) in getSlice() 117 .setSubtitle(placeholder)); in getSlice() 243 private ListBuilder.RowBuilder getLoadingRow(CharSequence placeholder) { in getLoadingRow() argument 252 .setTitle(placeholder) in getLoadingRow()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/ |
H A D | Storage.java | 228 public Uri addPlaceholder(Bitmap placeholder) { in addPlaceholder() argument 230 replacePlaceholder(uri, placeholder); in addPlaceholder() 251 public void replacePlaceholder(Uri uri, Bitmap placeholder) { in replacePlaceholder() argument 253 Point size = new Point(placeholder.getWidth(), placeholder.getHeight()); in replacePlaceholder() 255 sSessionsToPlaceholderBitmap.put(uri, placeholder); in replacePlaceholder()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/data/ |
H A D | SessionItem.java | 104 Optional<Bitmap> placeholder = Storage.instance().getPlaceholderForSession(mData.getUri()); in getView() local 105 if (placeholder.isPresent()) { in getView() 106 imageView.setImageBitmap(placeholder.get()); in getView()
|
/aosp12/frameworks/base/tools/aapt2/configuration/ |
H A D | ConfigurationParser.cpp | 162 bool ReplacePlaceholder(const StringPiece& placeholder, const Maybe<StringPiece>& value, in ReplacePlaceholder() argument 164 size_t offset = name->find(placeholder.data()); in ReplacePlaceholder() 170 diag->Error(DiagMessage() << "Missing placeholder for artifact: " << placeholder); in ReplacePlaceholder() 180 diag->Error(DiagMessage() << "Placeholder present but no value for artifact: " << placeholder); in ReplacePlaceholder() 184 name->replace(offset, placeholder.length(), value.value().data()); in ReplacePlaceholder() 187 if (name->find(placeholder.data()) != std::string::npos) { in ReplacePlaceholder() 188 diag->Error(DiagMessage() << "Placeholder present multiple times: " << placeholder); in ReplacePlaceholder()
|
/aosp12/art/test/569-checker-pattern-replacement/src/ |
H A D | Main.java | 634 public static double constructBase(int intValue, long placeholder) { in constructBase() argument 635 Base b = new Base(intValue, placeholder); in constructBase() 1152 public static int constructDerivedInSecondDex(long placeholder) { in constructDerivedInSecondDex() argument 1153 DerivedInSecondDex d = new DerivedInSecondDex(placeholder); in constructDerivedInSecondDex()
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/ |
H A D | ContentUriAsset.java | 250 .placeholder(new ColorDrawable(placeholderColor))) in loadDrawable() 264 .placeholder(new ColorDrawable(placeholderColor))) in loadLowResDrawable() 276 .placeholder(new ColorDrawable(placeholderColor))) in loadDrawableWithTransition()
|
H A D | LiveWallpaperThumbAsset.java | 107 .placeholder(new ColorDrawable(placeholderColor)); in loadDrawable() 110 .placeholder(new ColorDrawable(placeholderColor)); in loadDrawable() 130 .placeholder(new ColorDrawable(placeholderColor))) in loadLowResDrawable()
|
/aosp12/system/bt/gd/dumpsys/internal/ |
H A D | filter_internal_test.cc | 357 ASSERT_EQ(456, test_table->sub_table()->placeholder()); in TEST_F() 367 ASSERT_EQ(456, test_table->sub_table()->placeholder()); in TEST_F() 372 ASSERT_EQ(456, test_table->sub_table()->placeholder()); in TEST_F() 388 ASSERT_EQ(456, test_table->sub_table()->placeholder()); in TEST_F() 403 ASSERT_EQ(456, test_table->sub_table()->placeholder()); in TEST_F()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/captureintent/ |
H A D | CaptureIntentSession.java | 130 …public synchronized void startSession(ImageLifecycleListener listener, @Nonnull Bitmap placeholder, in startSession() argument 136 …public synchronized void startSession(ImageLifecycleListener listener, @Nonnull byte[] placeholder, in startSession() argument
|
/aosp12/art/test/683-clinit-inline-static-invoke/src/ |
H A D | Main.java | 29 int placeholder = MyTimeZone.getDefaultTimeZoneType(); in main() local
|
/aosp12/art/test/910-methods/src/art/ |
H A D | Test910.java | 109 private static String placeholder; field in Test910.NestedSynthetic 113 System.out.println(NestedSynthetic.placeholder); in placeholderAccess()
|
/aosp12/frameworks/av/services/mediametrics/fuzzer/ |
H A D | README.md | 24 …ction: A function | URL and Values obtained from FuzzedDataProvider, a placeholder function was pa… 26 …:seconds` : value obtained from FuzzedDataProvider, `std::function`: a placeholder function was us…
|
/aosp12/packages/inputmethods/LatinIME/tests/res/raw/ |
H A D | dummy_resource_for_testing.txt | 1 /* This placeholder raw resource is needed to be able to load string resources from a test APK
|