Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/view/
DAppTransitionAnimationSpecsFuture.java51 List<AppTransitionAnimationSpecCompat> specs = mComposeTask.get();
56 if (specs == null) {
60 AppTransitionAnimationSpec[] arr = new AppTransitionAnimationSpec[specs.size()];
61 for (int i = 0; i < specs.size(); i++) {
62 arr[i] = specs.get(i).toAppTransitionAnimationSpec();
/frameworks/ml/nn/runtime/test/specs/
Dgenerate_test.sh72 cd $ANDROID_BUILD_TOP/$TEST_DIR/specs
83 VER_DIR=$ANDROID_BUILD_TOP/$TEST_DIR/specs/$ver
108 cd $ANDROID_BUILD_TOP/$TEST_DIR/specs
118 VER_DIR=$ANDROID_BUILD_TOP/$TEST_DIR/specs/$ver
Dgenerate_vts_test.sh40 VER_DIR=$VTS_PATH/specs/$ver
64 VER_DIR=$VTS_PATH/specs/$ver
Dslicing.sh41 source $ANDROID_BUILD_TOP/frameworks/ml/nn/runtime/test/specs/generate_test.sh
/frameworks/base/services/core/java/com/android/server/slice/
DPinnedSliceState.java80 List<SliceSpec> specs = Arrays.asList(mSupportedSpecs); in mergeSpecs() local
81 mSupportedSpecs = specs.stream().map(s -> { in mergeSpecs()
93 private SliceSpec findSpec(SliceSpec[] specs, String type) { in findSpec() argument
94 for (SliceSpec spec : specs) { in findSpec()
122 public void pin(String pkg, SliceSpec[] specs, IBinder token) { in pin() argument
130 mergeSpecs(specs); in pin()
DSliceManagerService.java160 public void pinSlice(String pkg, Uri uri, SliceSpec[] specs, IBinder token) in pinSlice() argument
167 getOrCreatePinnedSlice(uri, slicePkg).pin(pkg, specs, token); in pinSlice()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/customize/
DTileQueryHelperTest.java181 List<String> specs = new ArrayList<>(); in testQueryTiles_correctTilesAndOrderOnlyStockTiles() local
183 specs.add(t.spec); in testQueryTiles_correctTilesAndOrderOnlyStockTiles()
185 String tiles = TextUtils.join(",", specs); in testQueryTiles_correctTilesAndOrderOnlyStockTiles()
202 List<String> specs = new ArrayList<>(); in testQueryTiles_correctTilesAndOrderOtherFactoryTiles() local
204 specs.add(t.spec); in testQueryTiles_correctTilesAndOrderOtherFactoryTiles()
206 String tiles = TextUtils.join(",", specs); in testQueryTiles_correctTilesAndOrderOtherFactoryTiles()
223 List<String> specs = new ArrayList<>(); in testQueryTiles_otherTileNotIncluded() local
225 specs.add(t.spec); in testQueryTiles_otherTileNotIncluded()
227 assertFalse(specs.contains("other")); in testQueryTiles_otherTileNotIncluded()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/
DGemfile.lock3 specs:
8 specs:
DREADME.md84 To run the specs:
/frameworks/native/opengl/tools/glgen/
Dgen63 java -classpath src GenerateGL -c specs/jsr239/glspec-1.0 \
64 specs/jsr239/glspec-1.0ext \
65 specs/jsr239/glspec-1.1 \
66 specs/jsr239/glspec-1.1ext \
67 specs/jsr239/glspec-1.1extpack \
68 specs/jsr239/glspec-checks
/frameworks/base/core/java/android/animation/
DStateListAnimator.java82 public void addState(int[] specs, Animator animator) { in addState() argument
83 Tuple tuple = new Tuple(specs, animator); in addState()
282 private Tuple(int[] specs, Animator animator) { in Tuple() argument
283 mSpecs = specs; in Tuple()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DRecentsTransitionComposer.java113 List<AppTransitionAnimationSpecCompat> specs = new ArrayList<>(); in composeAnimationSpecs() local
115 specs.add(composeOffscreenAnimationSpec(task, offscreenTaskRect)); in composeAnimationSpecs()
122 specs.add(spec); in composeAnimationSpecs()
125 return specs; in composeAnimationSpecs()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/slice/
DSliceManagerServiceTest.java138 SliceSpec[] specs = new SliceSpec[] { in testGetPinnedSpecs() local
140 mService.pinSlice("pkg", TEST_URI, specs, mToken); in testGetPinnedSpecs()
142 when(mCreatedSliceState.getSpecs()).thenReturn(specs); in testGetPinnedSpecs()
143 assertEquals(specs, mService.getPinnedSpecs(TEST_URI, "pkg")); in testGetPinnedSpecs()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSTileRevealController.java70 private void addTileSpecsToRevealed(ArraySet<String> specs) { in addTileSpecsToRevealed() argument
73 revealedTiles.addAll(specs); in addTileSpecsToRevealed()
/frameworks/base/core/java/android/app/slice/
DSliceManager.java132 public void pinSlice(@NonNull Uri uri, @NonNull Set<SliceSpec> specs) { in pinSlice() argument
135 specs.toArray(new SliceSpec[specs.size()]), mToken); in pinSlice()
146 public void pinSlice(@NonNull Uri uri, @NonNull List<SliceSpec> specs) { in pinSlice() argument
147 pinSlice(uri, new ArraySet<>(specs)); in pinSlice()
DISliceManager.aidl24 void pinSlice(String pkg, in Uri uri, in SliceSpec[] specs, in IBinder token); in pinSlice() argument
/frameworks/ml/nn/tools/test_generator/
DREADME.md10 You should create new test specs in `nn/runtime/test/specs/<version>/` and name it with `.mod.py` s…
316 …ll be inferred from the path, e.g. the models defined in `nn/runtime/test/specs/V1_0/add.mod.py` w…
381 $ANDROID_BUILD_TOP/frameworks/ml/nn/runtime/test/specs/generate_test.sh
382 $ANDROID_BUILD_TOP/frameworks/ml/nn/runtime/test/specs/generate_vts_test.sh
385 It will read and generate all CTS/VTS unit tests based on spec files in `nn/runtime/test/specs/V1_*…
388 $ANDROID_BUILD_TOP/frameworks/ml/nn/runtime/test/specs/generate_test.sh -f
394 $ANDROID_BUILD_TOP/frameworks/ml/nn/runtime/test/specs/generate_test.sh -f file1.mod.py file2.mod.p…
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java254 List<String> specs = new ArrayList<>(); in setTileSpecs() local
256 specs.add(tile.getTileSpec()); in setTileSpecs()
258 mTileAdapter.setTileSpecs(specs); in setTileSpecs()
DTileAdapter.java137 public void resetTileSpecs(QSTileHost host, List<String> specs) { in resetTileSpecs() argument
139 host.changeTiles(mCurrentSpecs, specs); in resetTileSpecs()
140 setTileSpecs(specs); in resetTileSpecs()
/frameworks/base/core/java/android/app/
DActivityOptions.java663 AppTransitionAnimationSpec[] specs, Handler handler, in makeThumbnailAspectScaleDownAnimation() argument
669 opts.mAnimSpecs = specs; in makeThumbnailAspectScaleDownAnimation()
961 Parcelable[] specs = opts.getParcelableArray(KEY_ANIM_SPECS); in ActivityOptions() local
962 mAnimSpecs = new AppTransitionAnimationSpec[specs.length]; in ActivityOptions()
963 for (int i = specs.length - 1; i >= 0; i--) { in ActivityOptions()
964 mAnimSpecs[i] = (AppTransitionAnimationSpec) specs[i]; in ActivityOptions()
/frameworks/base/core/proto/android/os/
Dmetadata.proto23 // such as the section ids and privacy policy specs from caller as well as how long
/frameworks/native/vulkan/api/templates/
Dasciidoc.tmpl2 {{if not (Global "AsciiDocPath")}}{{Global "AsciiDocPath" "../../doc/specs/vulkan/"}}{{end}}
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransition.java1894 void overridePendingAppTransitionMultiThumb(AppTransitionAnimationSpec[] specs, in overridePendingAppTransitionMultiThumb() argument
1902 if (specs != null) { in overridePendingAppTransitionMultiThumb()
1903 for (int i = 0; i < specs.length; i++) { in overridePendingAppTransitionMultiThumb()
1904 AppTransitionAnimationSpec spec = specs[i]; in overridePendingAppTransitionMultiThumb()
1985 AppTransitionAnimationSpec[] specs = null; in fetchAppTransitionSpecsFromFuture() local
1988 specs = future.get(); in fetchAppTransitionSpecsFromFuture()
1994 overridePendingAppTransitionMultiThumb(specs, in fetchAppTransitionSpecsFromFuture()
DActivityRecord.java1713 final AppTransitionAnimationSpec[] specs = pendingOptions.getAnimSpecs(); in applyOptionsLocked() local
1721 && specs != null) { in applyOptionsLocked()
1723 specs, pendingOptions.getOnAnimationStartListener(), in applyOptionsLocked()
/frameworks/native/opengl/libs/EGL/
DGLES_layers.md251 …ut to ADB for this, you can check for the [EGL_ANDROID_GLES_layers](../../specs/EGL_ANDROID_GLES_l…

12