/aosp14/frameworks/base/core/java/android/util/ |
H A D | Base64.java | 574 final private byte[] tail; field in Base64.Encoder 591 tail = new byte[2]; in Encoder() 629 v = ((tail[0] & 0xff) << 16) | in process() 639 v = ((tail[0] & 0xff) << 16) | in process() 640 ((tail[1] & 0xff) << 8) | in process() 689 v = ((tailLen > 0 ? tail[t++] : input[p++]) & 0xff) << 4; in process() 703 v = (((tailLen > 1 ? tail[t++] : input[p++]) & 0xff) << 10) | in process() 704 (((tailLen > 0 ? tail[t++] : input[p++]) & 0xff) << 2); in process() 728 tail[tailLen++] = input[p]; in process() 730 tail[tailLen++] = input[p]; in process() [all …]
|
/aosp14/frameworks/base/cmds/incident_helper/src/ |
H A D | ih_util.cpp | 37 const auto tail = s.find_last_not_of(charset); in trim() local 38 return s.substr(head, tail - head + 1); in trim() 191 const auto tail = line->find_last_not_of(DEFAULT_WHITESPACE); in stripSuffix() local 192 if (tail == std::string::npos) return false; in stripSuffix() 195 int j = tail; in stripSuffix()
|
/aosp14/frameworks/base/data/sounds/ |
H A D | generate-all-audio.sh | 55 tail -n 1 |
|
/aosp14/system/core/libutils/ |
H A D | String8.cpp | 404 size_t tail = index; in removeAll() local 411 memmove(buf + tail, buf + index + skip, next - index - skip); in removeAll() 412 tail += next - index - skip; in removeAll() 415 unlockBuffer(tail); in removeAll()
|
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/ |
H A D | Cat.java | 179 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail, in Cat() 459 public Drawable tail; 479 tail = context.getDrawable(R.drawable.tail); 513 tail, tailCap, tailShadow,
|
/aosp14/frameworks/base/media/java/android/media/ |
H A D | SubtitleTrack.java | 476 SortedMap<Long, Vector<Cue>> tail = null; in nextTimeAfter() local 478 tail = mCues.tailMap(timeMs + 1); in nextTimeAfter() 479 if (tail != null) { in nextTimeAfter() 480 return tail.firstKey(); in nextTimeAfter()
|
/aosp14/frameworks/base/cmds/uiautomator/ |
H A D | Android.bp | 13 …cmd: "cp -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-api.txt",
|
/aosp14/system/core/shell_and_utilities/ |
H A D | README.md | 68 tac tail tar taskset tee test time timeout top touch tr traceroute 102 tac tail tar taskset tee test time timeout top touch tr traceroute 136 tac tail tar taskset tee **test** time timeout top touch tr traceroute 169 split stat strings stty swapoff swapon sync sysctl tac tail tar taskset 202 tac tail tar taskset tee time timeout top touch tr **traceroute** **traceroute6** 230 tail tar taskset tee time timeout top touch tr true truncate tty ulimit 255 sysctl tac tail tar taskset tee time timeout **top** touch tr true truncate 277 split stat strings swapoff swapon sync sysctl tac tail tar taskset tee 298 split stat strings swapoff swapon sync sysctl tac tail tar taskset tee
|
/aosp14/system/core/debuggerd/libdebuggerd/ |
H A D | tombstone_proto_to_text.cpp | 489 void print_logs(CallbackType callback, const Tombstone& tombstone, int tail) { in print_logs() argument 491 if (tail) { in print_logs() 498 if (tail != 0) { in print_logs() 499 begin = std::max(0, buffer.logs().size() - tail); in print_logs()
|
/aosp14/frameworks/base/tests/backup/ |
H A D | test_restore.sh | 108 a shell cat /data/data/com.android.backuptest/files/3.txt | tail -n 3
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/ |
H A D | FullScreenMagnificationGestureHandler.java | 975 MotionEventInfo tail = mDelayedEventQueue; in cacheDelayedMotionEvent() local 976 while (tail.mNext != null) { in cacheDelayedMotionEvent() 977 tail = tail.mNext; in cacheDelayedMotionEvent() 979 tail.mNext = info; in cacheDelayedMotionEvent()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/ |
H A D | DemoMobileConnectionParameterizedTest.kt | 296 val tail = regex 310 tail.toCollection(testSet)
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A D | DropBoxManagerService.java | 1108 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000)); in createEntry() local 1110 if (!tail.isEmpty()) { in createEntry() 1111 future = tail.toArray(new EntryFile[tail.size()]); in createEntry() 1112 tail.clear(); // Remove from mAllFiles in createEntry()
|
/aosp14/frameworks/base/core/proto/android/internal/ |
H A D | binder_latency.proto | 82 // as the tail of empty buckets is truncated when stored in the proto to
|
/aosp14/frameworks/base/libs/hwui/tests/scripts/ |
H A D | prep_generic.sh | 190 | tail -n +3 \
|
/aosp14/system/core/fs_mgr/tests/ |
H A D | adb-remount-test.sh | 763 local overlay_mounts=$(echo "${df_output}" | tail +2 | 1256 tail +2 | head -1 | awk '{ print $2 }') 1267 if adb_su dmctl table scratch | tail +2 | grep -q -w "${super_devt}"; then
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BroadcastProcessQueue.java | 1302 BroadcastProcessQueue tail = null; 1315 tail = test; 1318 item.runnableAtPrev = tail;
|
/aosp14/system/core/bootstat/ |
H A D | boot_reason_test.sh | 821 tail -1 |
|
/aosp14/system/core/init/ |
H A D | README.md | 122 the tail of a to-be-executed queue (unless it is already on the
|
/aosp14/frameworks/base/packages/CredentialManager/ |
H A D | profile.txt.prof | 5911 HSPLandroidx/compose/ui/node/InnerNodeCoordinator$tail$1;-><init>()V 12186 Landroidx/compose/ui/node/InnerNodeCoordinator$tail$1;
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 57554 Landroid/util/Base64$Encoder;->tail:[B
|