/aosp14/frameworks/base/services/incremental/ |
H A D | path.h | 70 std::string_view relativize(std::string_view parent, std::string_view nested); 71 inline std::string_view relativize(const char* parent, const char* nested) { in relativize() argument 72 return relativize(std::string_view(parent), std::string_view(nested)); in relativize() 74 inline std::string_view relativize(std::string_view parent, const char* nested) { in relativize() argument 75 return relativize(parent, std::string_view(nested)); in relativize() 77 inline std::string_view relativize(const char* parent, std::string_view nested) { in relativize() argument 78 return relativize(std::string_view(parent), nested); in relativize() 81 std::string_view relativize(std::string&& parent, std::string_view nested) = delete; 82 std::string_view relativize(std::string_view parent, std::string&& nested) = delete;
|
H A D | path.cpp | 70 std::string_view relativize(std::string_view parent, std::string_view nested) { in relativize() argument 71 if (!nested.starts_with(parent)) { in relativize() 72 return nested; in relativize() 74 if (nested.size() == parent.size()) { in relativize() 77 if (nested[parent.size()] != '/') { in relativize() 78 return nested; in relativize() 80 auto relative = nested.substr(parent.size()); in relativize()
|
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/ |
H A D | Level2Test.java | 17 package android.test.suitebuilder.examples.nested.nested;
|
/aosp14/frameworks/base/tools/codegen/src/com/android/codegen/ |
H A D | FileInfo.kt | 84 parent.nested.add(this) 144 val nested: MutableList<ClassBounds> = mutableListOf(), 148 nested.filter { it.isDataclass }.sortedBy { it.range.start } 179 nested.forEach {
|
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
H A D | TestSuiteBuilderTest.java | 25 import android.test.suitebuilder.examples.nested.Level1Test; 26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
|
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/ |
H A D | Level1Test.java | 17 package android.test.suitebuilder.examples.nested;
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | GapWorker.java | 76 void collectPrefetchPositionsFromView(RecyclerView view, boolean nested) { in collectPrefetchPositionsFromView() argument 86 if (nested) { in collectPrefetchPositionsFromView() 102 layout.mPrefetchMaxObservedInInitialPrefetch = nested; in collectPrefetchPositionsFromView()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | XmlTest.java | 160 final PersistableBundle nested = new PersistableBundle(); in buildPersistableBundle() local 161 nested.putString("nested_key", "nested_value"); in buildPersistableBundle() 162 outer.putPersistableBundle("nested", nested); in buildPersistableBundle()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | RemoteViewsTest.java | 320 RemoteViews nested = new RemoteViews(mPackage, R.layout.remote_views_text); 321 nested.setOnClickPendingIntent( 329 listItem.addView(R.id.container, nested); 376 RemoteViews nested = new RemoteViews(mPackage, R.layout.remote_views_text); 377 nested.setLightBackgroundLayoutId(R.layout.remote_views_light_background_text); 380 parent.addView(R.id.container, nested);
|
/aosp14/frameworks/base/core/proto/android/server/ |
H A D | blobstoremanagerservice.proto | 22 // The nested messages are used for statsd logging and should be kept in sync with the messages
|
/aosp14/frameworks/base/tests/ProtoInputStreamTests/src/com/android/test/protoinputstream/ |
H A D | test.proto | 34 optional Nested nested = 10002; field
|
/aosp14/frameworks/base/tools/streaming_proto/test/ |
H A D | test.proto | 54 optional Nested nested = 10002; field
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
H A D | UserManagerTest.java | 1457 PersistableBundle nested = new PersistableBundle(); in testAddUserAccountData_validStringValuesAreSaved_validBundleIsSaved() local 1458 nested.putString(stringKey, value3); in testAddUserAccountData_validStringValuesAreSaved_validBundleIsSaved() 1459 accountOptions.putPersistableBundle(nestedBundleKey, nested); in testAddUserAccountData_validStringValuesAreSaved_validBundleIsSaved() 1502 PersistableBundle nested = new PersistableBundle(); in testAddUserAccountData_invalidStringValuesAreTruncated_invalidBundleIsDropped() local 1503 nested.putString(stringKey, tooLongString); in testAddUserAccountData_invalidStringValuesAreTruncated_invalidBundleIsDropped() 1504 accountOptions.putPersistableBundle(nestedBundleKey, nested); in testAddUserAccountData_invalidStringValuesAreTruncated_invalidBundleIsDropped()
|
/aosp14/frameworks/base/media/jni/soundpool/ |
H A D | Android.bp | 34 "modernize-concat-nested-namespaces",
|
/aosp14/frameworks/base/cmds/idmap2/ |
H A D | Android.bp | 40 "-modernize-concat-nested-namespaces",
|
/aosp14/frameworks/base/tools/aapt2/java/ |
H A D | ProguardRules_test.cpp | 204 <nested android:id="@id/nested"
|
/aosp14/frameworks/base/core/proto/android/service/ |
H A D | sensor_service.proto | 28 * writing a nested message.
|
/aosp14/system/core/init/ |
H A D | README.ueventd.md | 23 directory, each file in the directory is parsed as a config file. It is not recursive, nested
|
H A D | README.md | 791 a config file. It is not recursive, nested directories will
|
/aosp14/frameworks/base/tools/aapt2/ |
H A D | readme.md | 21 - Add `<key-sets>` and its nested tags to the allowed set of XML tags in AndroidManifest.xml.
|
/aosp14/frameworks/base/media/native/midi/include/ |
H A D | Doxyfile | 366 # any nested class or struct is added to the same group. By default this option 367 # is disabled and one has to add nested compounds explicitly via \ingroup.
|