/aosp12/build/soong/sdk/ |
H A D | bp_test.go | 29 subset := set.AddPropertySet("sub") 30 subset.AddPropertyWithTag("x", "taxi", "tag_x") 31 subset.AddProperty("y", 1729) 62 subset := set.getValue("sub").(*bpPropertySet) 114 subset := set.AddPropertySet("sub") 115 subset.AddProperty("flag", false) 116 subset.AddPropertySet("sub") 141 subset := set.AddPropertySet("sub") 142 subset.AddProperty("new", "d^^b") 148 subset := set.AddPropertySet("sub") [all …]
|
/aosp12/frameworks/base/libs/hwui/jni/ |
H A D | AnimatedImageDrawable.cpp | 46 SkIRect subset; in AnimatedImageDrawable_nCreate() local 48 GraphicsJNI::jrect_to_irect(env, jsubset, &subset); in AnimatedImageDrawable_nCreate() 50 subset = SkIRect::MakeWH(width, height); in AnimatedImageDrawable_nCreate() 83 SkRect bounds = SkRect::MakeWH(subset.width(), subset.height()); in AnimatedImageDrawable_nCreate() 98 info, subset, in AnimatedImageDrawable_nCreate()
|
H A D | BitmapRegionDecoder.cpp | 161 SkIRect subset = SkIRect::MakeXYWH(inputX, inputY, inputWidth, inputHeight); in nativeDecodeRegion() local 163 if (!brd->decodeRegion(&bitmap, allocator, subset, sampleSize, in nativeDecodeRegion()
|
H A D | ImageDecoder.cpp | 302 SkIRect subset; in ImageDecoder_nDecodeBitmap() local 303 GraphicsJNI::jrect_to_irect(env, jsubset, &subset); in ImageDecoder_nDecodeBitmap() 304 if (!decoder->setCropRect(&subset)) { in ImageDecoder_nDecodeBitmap()
|
/aosp12/build/soong/android/ |
H A D | depset_test.go | 101 subset := NewDepSet(order, Paths{c, a, e}, nil) 102 return NewDepSet(order, Paths{b, d}, []*DepSet{subset}) 147 subset := NewDepSetBuilder(order).Direct(c, a, e).Build() 152 builder.Transitive(subset) 163 subset := NewDepSetBuilder(order).Direct(c, a, e).Build() 164 return NewDepSetBuilder(order).Direct(b, d, e).Transitive(subset).Build()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
H A D | ClusterAlbum.java | 81 ArrayList<Path> subset = new ArrayList<Path>(paths.subList(start, end)); in getMediaItemFromPath() local 89 dataManager.mapMediaItems(subset, consumer, 0); in getMediaItemFromPath()
|
H A D | SecureAlbum.java | 95 ArrayList<Path> subset = new ArrayList<Path>(mExistingItems.subList(start, end)); in getMediaItem() local 105 mDataManager.mapMediaItems(subset, consumer, 0); in getMediaItem()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
H A D | SlideshowPage.java | 228 MediaSet subset = mediaSet.getSubMediaSet(i); in findMediaItem() local 229 int count = subset.getTotalMediaItemCount(); in findMediaItem() 231 return findMediaItem(subset, index); in findMediaItem()
|
/aosp12/frameworks/base/libs/hwui/ |
H A D | RecordingCanvas.cpp | 122 SaveBehind(const SkRect* subset) { in SaveBehind() 123 if (subset) { this->subset = *subset; } in SaveBehind() 125 SkRect subset = kUnset; member 127 SkAndroidFrameworkUtils::SaveBehind(c, &subset); in draw() 635 void DisplayListData::saveBehind(const SkRect* subset) { in saveBehind() argument 636 this->push<SaveBehind>(0, subset); in saveBehind() 925 bool RecordingCanvas::onDoSaveBehind(const SkRect* subset) { in onDoSaveBehind() argument 926 fDL->saveBehind(subset); in onDoSaveBehind()
|
H A D | RenderNode.cpp | 342 const auto subset = SkIRect::MakeWH(properties().getWidth(), in updateSnapshotIfRequired() local 348 mSnapshotResult.outSubset = subset; in updateSnapshotIfRequired() 360 subset, in updateSnapshotIfRequired()
|
/aosp12/system/sepolicy/tools/ |
H A D | README | 27 Displays one of subset, equal, superset, or incomparable. 34 subset
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/ |
H A D | DhcpServingParamsTest.java | 214 private static <T> void assertContains(@NonNull Set<T> set, @NonNull Set<T> subset) { in assertContains() argument 215 for (final T elem : subset) { in assertContains()
|
/aosp12/frameworks/wilhelm/tools/hashgen/ |
H A D | README.txt | 20 checks all GUIDs, and the target test checks a subset of GUIDs.
|
/aosp12/system/sepolicy/prebuilts/api/27.0/private/ |
H A D | storaged.te | 46 # use a subset of the package manager service
|
/aosp12/hardware/interfaces/broadcastradio/2.0/ |
H A D | ITunerSession.hal | 151 * return a status for a subset of the provided inputs, at its discretion. 156 * In other words, results vector may contain a subset of parameter keys 157 * (however, the framework doesn't enforce a strict subset - the only
|
/aosp12/system/sepolicy/prebuilts/api/29.0/private/ |
H A D | storaged.te | 47 # use a subset of the package manager service
|
/aosp12/system/sepolicy/prebuilts/api/28.0/private/ |
H A D | storaged.te | 47 # use a subset of the package manager service
|
/aosp12/system/sepolicy/prebuilts/api/30.0/private/ |
H A D | storaged.te | 53 # use a subset of the package manager service
|
/aosp12/libnativehelper/tests_mts/ |
H A D | README.md | 48 depend on libnativehelper. The former library is a subset of libnativehelper.
|
/aosp12/frameworks/base/media/java/android/media/ |
H A D | MediaPlayer.java | 5398 byte[] subset = Arrays.copyOfRange(pssh, i, i + UUID_SIZE); in parsePSSH() 5399 UUID uuid = bytesToUUID(subset); in parsePSSH() 5410 subset = Arrays.copyOfRange(pssh, i, i+DATALEN_SIZE); in parsePSSH() 5412 ((subset[3] & 0xff) << 24) | ((subset[2] & 0xff) << 16) | in parsePSSH() 5413 ((subset[1] & 0xff) << 8) | (subset[0] & 0xff) : in parsePSSH() 5414 ((subset[0] & 0xff) << 24) | ((subset[1] & 0xff) << 16) | in parsePSSH() 5415 ((subset[2] & 0xff) << 8) | (subset[3] & 0xff) ; in parsePSSH()
|
/aosp12/hardware/interfaces/camera/metadata/3.3/ |
H A D | types.hal | 97 * <p>A subset of the available request keys that the camera device 104 * <p>A subset of the available request keys that can be overridden for
|
/aosp12/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | RenderNodeDrawable.cpp | 248 auto subset = SkIRect::MakeWH(srcBounds.width(), srcBounds.height()); in drawContent() local 250 subset, clipBounds.roundOut(), in drawContent()
|
/aosp12/system/sepolicy/prebuilts/api/31.0/private/ |
H A D | storaged.te | 55 # use a subset of the package manager service
|
/aosp12/system/sepolicy/prebuilts/api/32.0/private/ |
H A D | storaged.te | 55 # use a subset of the package manager service
|
/aosp12/system/sepolicy/private/ |
H A D | storaged.te | 55 # use a subset of the package manager service
|