/aosp14/frameworks/base/core/java/android/view/ |
H A D | CutoutSpecification.java | 371 private void setEdgeCutout(@NonNull Path newPath) { 386 mPath.addPath(newPath); 388 mPath = newPath; 399 final Path newPath = PathParser.createPathFromPathData(spec); 400 newPath.transform(mMatrix); 401 computeBoundsRectAndAddToRegion(newPath, region, mTmpRect); 409 Log.d(TAG, "spec = \"" + spec + "\" rect = " + mTmpRect + " newPath = " + newPath); 426 setEdgeCutout(newPath);
|
/aosp14/frameworks/base/core/java/android/content/ |
H A D | UriMatcher.java | 169 String newPath = path; in addURI() local 172 newPath = path.substring(1); in addURI() 174 tokens = newPath.split("/"); in addURI()
|
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_drawable_VectorDrawable.cpp | 45 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(); in createEmptyFullPath() local 46 return reinterpret_cast<jlong>(newPath); in createEmptyFullPath() 52 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath); in createFullPath() local 53 return reinterpret_cast<jlong>(newPath); in createFullPath() 57 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(); in createEmptyClipPath() local 58 return reinterpret_cast<jlong>(newPath); in createEmptyClipPath() 64 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(*srcClipPath); in createClipPath() local 65 return reinterpret_cast<jlong>(newPath); in createClipPath()
|
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/ |
H A D | HdmiCecLocalDeviceTv.java | 386 int newPath = mService.portIdToPath(portId); in doManualPortSwitching() local 387 startRoutingControl(oldPath, newPath, callback); in doManualPortSwitching() 393 if (oldPath == newPath) { in startRoutingControl() 402 new RoutingControlAction(this, newPath, callback)); in startRoutingControl() 583 int newPath = mService.portIdToPath(getActivePortId()); in handleNewDeviceAtTheTailOfActivePath() local 584 setActivePath(newPath); in handleNewDeviceAtTheTailOfActivePath() 585 startRoutingControl(getActivePath(), newPath, null); in handleNewDeviceAtTheTailOfActivePath() local 629 int newPath = HdmiUtils.twoBytesToInt(params, 2); in handleRoutingChange() local 1241 int newPath = mService.portIdToPath(getActivePortId()); in handleRemoveActiveRoutingPath() local 1242 startRoutingControl(getActivePath(), newPath, null); in handleRemoveActiveRoutingPath() local [all …]
|
H A D | HdmiUtils.java | 319 static boolean isAffectingActiveRoutingPath(int activePath, int newPath) { in isAffectingActiveRoutingPath() argument 330 int nibble = (newPath >> i) & 0xF; in isAffectingActiveRoutingPath() 333 newPath &= mask; in isAffectingActiveRoutingPath() 337 if (newPath == 0x0000) { in isAffectingActiveRoutingPath() 340 return isInActiveRoutingPath(activePath, newPath); in isAffectingActiveRoutingPath() 350 static boolean isInActiveRoutingPath(int activePath, int newPath) { in isInActiveRoutingPath() argument 351 @PathRelationship int pathRelationship = pathRelationship(newPath, activePath); in isInActiveRoutingPath()
|
H A D | HdmiCecMessageBuilder.java | 348 static HdmiCecMessage buildRoutingChange(int src, int oldPath, int newPath) { in buildRoutingChange() argument 351 (byte) ((newPath >> 8) & 0xFF), (byte) (newPath & 0xFF) in buildRoutingChange()
|
H A D | HdmiCecLocalDeviceAudioSystem.java | 1064 int newPath = mService.portIdToPath(portId); in doManualPortSwitching() local 1065 if (oldPath == newPath) { in doManualPortSwitching() 1072 getDeviceInfo().getLogicalAddress(), oldPath, newPath); in doManualPortSwitching()
|
H A D | HdmiCecLocalDevice.java | 1241 int pathToPortId(int newPath) { in pathToPortId() argument 1243 return mService.pathToPortId(newPath); in pathToPortId()
|
/aosp14/frameworks/base/tools/aapt2/link/ |
H A D | TableMerger.cpp | 330 std::string newPath = (std::string(prefix) += mangled_entry) += suffix; in CloneAndMangleFile() local 332 util::make_unique<FileReference>(main_table_->string_pool.MakeRef(newPath)); in CloneAndMangleFile()
|
/aosp14/frameworks/base/media/java/android/mtp/ |
H A D | MtpDatabase.java | 575 Path newPath = obj.getPath(); in renameFile() 576 boolean success = oldPath.toFile().renameTo(newPath.toFile()); in renameFile() 579 Os.access(newPath.toString(), OsConstants.F_OK); in renameFile() 592 updateMediaStore(mContext, newPath.toFile()); in renameFile()
|
/aosp14/frameworks/base/core/java/android/net/ |
H A D | Uri.java | 2241 String newPath; in appendEncodedSegment() local 2244 newPath = "/" + newSegment; in appendEncodedSegment() 2246 newPath = oldPath + newSegment; in appendEncodedSegment() 2248 newPath = oldPath + "/" + newSegment; in appendEncodedSegment() 2251 return fromEncoded(newPath); in appendEncodedSegment()
|
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/ |
H A D | VectorDrawable.java | 1328 final VPath newPath; in VGroup() local 1330 newPath = new VFullPath((VFullPath) copyChild); in VGroup() 1332 newPath = new VClipPath((VClipPath) copyChild); in VGroup() 1336 addChild(newPath); in VGroup() 1337 if (newPath.mPathName != null) { in VGroup() 1338 targetsMap.put(newPath.mPathName, newPath); in VGroup()
|
/aosp14/frameworks/base/services/incremental/ |
H A D | IncrementalService.h | 181 std::string_view newPath);
|
H A D | IncrementalService.cpp | 1256 StorageId destStorageId, std::string_view newPath) { in link() argument 1267 std::string normNewPath = normalizePathToStorage(*ifsSrc, destStorageId, newPath); in link() 1274 << " to " << newPath << "[" << normNewPath << "]"; in link()
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ActivityThread.java | 8171 public void rename(String oldPath, String newPath) throws ErrnoException { in rename() argument 8173 super.rename(oldPath, newPath); in rename() 8183 && newPath.startsWith("/storage/emulated")) { in rename() 8184 Log.v(TAG, "Recovering failed rename " + oldPath + " to " + newPath); in rename() 8186 Files.move(new File(oldPath).toPath(), new File(newPath).toPath(), in rename()
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |