/frameworks/compile/mclinker/include/mcld/Support/ |
D | CXADemangle.tcc | 34 const char* parse_type(const char* first, const char* last, C& db); 36 const char* parse_encoding(const char* first, const char* last, C& db); 38 const char* parse_name(const char* first, const char* last, C& db, 41 const char* parse_expression(const char* first, const char* last, C& db); 43 const char* parse_template_args(const char* first, const char* last, C& db); 45 const char* parse_operator_name(const char* first, const char* last, C& db); 47 const char* parse_unqualified_name(const char* first, const char* last, C& db); 49 const char* parse_decltype(const char* first, const char* last, C& db); 94 print_state(const char* msg, const char* first, const char* last, const C& db) in print_state() argument 97 for (; first != last; ++first) in print_state() [all …]
|
/frameworks/base/core/java/android/os/ |
D | BundleMerger.java | 221 public @Nullable Bundle merge(@Nullable Bundle first, @Nullable Bundle last) { in merge() argument 222 if (first == null && last == null) { in merge() 228 if (last == null) { in merge() 229 last = Bundle.EMPTY; in merge() 236 res.putAll(last); in merge() 240 conflictingKeys.retainAll(last.keySet()); in merge() 245 final Object lastValue = last.get(key); in merge() 264 @Nullable Object first, @Nullable Object last) { in merge() argument 265 if (first == null) return last; in merge() 266 if (last == null) return first; in merge() [all …]
|
/frameworks/av/media/module/codecs/m4v_h263/enc/src/ |
D | vlc_encode.h | 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/settings/ |
D | ControlsSettingsRepositoryImplTest.kt | 87 assertThat(values.last()).isFalse() in showInLockScreen() 90 assertThat(values.last()).isTrue() in showInLockScreen() 93 assertThat(values.last()).isFalse() in showInLockScreen() 96 assertThat(values.last()).isFalse() in showInLockScreen() 99 assertThat(values.last()).isTrue() in showInLockScreen() 119 assertThat(values.last()).isFalse() in showInLockScreen_changesInOtherUsersAreNotQueued() 134 assertThat(values.last()).isFalse() in actionInLockScreen() 137 assertThat(values.last()).isTrue() in actionInLockScreen() 140 assertThat(values.last()).isFalse() in actionInLockScreen() 143 assertThat(values.last()).isFalse() in actionInLockScreen() [all …]
|
/frameworks/av/media/module/codecs/m4v_h263/dec/src/ |
D | vlc_decode.cpp | 875 pTcoef->last = (uint) tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 922 pTcoef->last = (uint)tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 926 if ((pTcoef->last == 0 && pTcoef->run > 14) || (pTcoef->last == 1 && pTcoef->run > 20)) in VlcDecTCOEFIntra() 930 pTcoef->level = pTcoef->level + intra_max_level[pTcoef->last][pTcoef->run]; in VlcDecTCOEFIntra() 974 pTcoef->last = (uint)tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 979 if (pTcoef->last) in VlcDecTCOEFIntra() 1002 pTcoef->last = code >> 7; in VlcDecTCOEFIntra() 1057 pTcoef->last = (uint)tab->last; //(tab->val >> 12) & 1; in VlcDecTCOEFInter() 1100 pTcoef->last = (uint)tab->last; //(tab->val >> 12) & 1; in VlcDecTCOEFInter() 1103 if ((pTcoef->last == 0 && pTcoef->run > 26) || (pTcoef->last == 1 && pTcoef->run > 40)) in VlcDecTCOEFInter() [all …]
|
D | vlc_dequant.cpp | 69 int last, return_status; in VlcDequantMpegIntraBlock() local 117 last = 1;/* 11/1/2000 let it slips undetected, just like in VlcDequantMpegIntraBlock() 125 last = run_level.last; in VlcDequantMpegIntraBlock() 131 last = 1; in VlcDequantMpegIntraBlock() 162 while (!last); in VlcDequantMpegIntraBlock() 395 int last, return_status; in VlcDequantMpegInterBlock() local 422 last = 1;/* 11/1/2000 let it slips undetected, just like in VlcDequantMpegInterBlock() 430 last = run_level.last; in VlcDequantMpegInterBlock() 436 last = 1; in VlcDequantMpegInterBlock() 463 while (!last); in VlcDequantMpegInterBlock() [all …]
|
/frameworks/base/core/java/android/content/ |
D | ContentUris.java | 89 String last = contentUri.getLastPathSegment(); in parseId() local 90 return last == null ? -1 : Long.parseLong(last); in parseId() 127 final String last = contentUri.getLastPathSegment(); in removeId() local 128 if (last == null) { in removeId() 131 Long.parseLong(last); in removeId()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/ui/viewmodel/ |
D | UserSwitcherViewModelTest.kt | 221 assertThat(userViewModels.last()).hasSize(3) in <lambda>() 223 viewModel = userViewModels.last()[0], in <lambda>() 229 viewModel = userViewModels.last()[1], in <lambda>() 235 viewModel = userViewModels.last()[2], in <lambda>() 250 assertThat(values.last()).isEqualTo(4) in <lambda>() 262 assertThat(values.last()).isEqualTo(3) in <lambda>() 274 assertThat(isVisible.last()).isTrue() in <lambda>() 289 assertThat(isVisible.last()).isFalse() in <lambda>() 298 assertThat(isMenuVisible.last()).isFalse() in <lambda>() 301 assertThat(isMenuVisible.last()).isTrue() in <lambda>() [all …]
|
/frameworks/base/tools/incident_report/ |
D | printer.cpp | 82 char* last = mBuf; in printf() local 85 p = strchr(last, '\n'); in printf() 86 int size = p != NULL ? p - last + 1 : strlen(last); in printf() 87 fwrite(last, size, 1, mOut); in printf() 95 last = p+1; in printf()
|
/frameworks/libs/binary_translation/runtime_primitives/ |
D | signal_queue.cc | 44 Node* last = produced; in DequeueSignalUnsafe() local 45 while (last->next) { in DequeueSignalUnsafe() 46 last = last->next; in DequeueSignalUnsafe() 48 last->next = consumed_; in DequeueSignalUnsafe()
|
/frameworks/opt/telephony/proto/src/ |
D | persist_atoms.proto | 31 /* Timestamp of last voice_call_rat_usages pull. */ 37 /* Timestamp of last voice_call_sessions pull. */ 43 /* Timestamp of last incoming_sms pull. */ 49 /* Timestamp of last incoming_sms pull. */ 61 /* Timestamp of last data_call_session pull. */ 67 /* Timestamp of last cellular_service_state pull. */ 73 /* Timestamp of last cellular_data_service_switch pull. */ 79 /* Timestamp of last ims_registration_termination pull. */ 85 /* Timestamp of last ims_registration_stats pull. */ 94 /* Timestamp of last network_requests pull. */ [all …]
|
/frameworks/rs/ |
D | rsList.h | 30 List() : last(nullptr), first(&firstBuffer.data.typed), in List() 38 List(InputIterator first, InputIterator last) : List() { in List() argument 39 for (InputIterator it = first; it != last; ++it) { in List() 55 last = current; in push_back() 113 T& back() const { return *last; } in back() 119 T* last; variable
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/quickaffordance/ |
D | KeyguardQuickAffordanceLocalUserSelectionManagerTest.kt | 120 affordanceIdsBySlotId.last(), in <lambda>() 131 affordanceIdsBySlotId.last(), in <lambda>() 143 affordanceIdsBySlotId.last(), in <lambda>() 155 affordanceIdsBySlotId.last(), in <lambda>() 167 affordanceIdsBySlotId.last(), in <lambda>() 220 observed = affordanceIdsBySlotId.last(), in <lambda>() 233 observed = affordanceIdsBySlotId.last(), in <lambda>() 248 observed = affordanceIdsBySlotId.last(), in <lambda>() 280 affordanceIdsBySlotId.last(), in <lambda>() 312 affordanceIdsBySlotId.last(), in <lambda>() [all …]
|
D | FlashlightQuickAffordanceConfigTest.kt | 73 val lastValue = values.last() in <lambda>() 96 val lastValue = values.last() in flashlightIsOn_triggered_iconIsOffAndInactive() 119 val lastValue = values.last() in <lambda>() 142 val lastValue = values.last() in <lambda>() 159 val lastValue = values.last() in <lambda>() 181 val lastValue = values.last() in <lambda>()
|
D | KeyguardQuickAffordanceRemoteUserSelectionManagerTest.kt | 121 assertThat(values.last()).isEmpty() in <lambda>() 137 assertThat(values.last()) in <lambda>() 152 assertThat(values.last()) in <lambda>() 173 assertThat(values.last()).isEmpty() in <lambda>() 184 assertThat(values.last()).isEmpty() in <lambda>()
|
/frameworks/base/tools/aapt2/link/ |
D | PrivateAttributeMover.cpp | 30 const auto last = input_container.end(); in move_if() local 32 if (new_end == last) { in move_if() 41 for (; first != last; ++first) { in move_if() 54 input_container.erase(new_end, last); in move_if()
|
/frameworks/av/media/libeffects/loudness/common/core/ |
D | byte_swapper.h | 44 char *first = &new_val, *last = first + kValSize - 1, x; in Swap() local 45 for (; first < last; ++first, --last) { in Swap() 46 x = *last; in Swap() 47 *last = *first; in Swap()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationSectionsManager.kt | 133 data class Many(val first: ExpandableView, val last: ExpandableView) : SectionBounds() in <lambda>() constant in com.android.systemui.statusbar.notification.stack.NotificationSectionsManager.SectionBounds.Many 142 is Many -> copy(last = notif) in <lambda>() 149 is Many -> section.setFirstAndLastVisibleChildren(first, last) in <lambda>() 154 last: ExpandableView? in <lambda>() 157 val lastChanged = setLastVisibleChild(last) in <lambda>() 244 when (val last = s.lastVisibleChild) { in <lambda>() constant 246 is ExpandableNotificationRow -> last.entry.key in <lambda>() 247 else -> Integer.toHexString(System.identityHashCode(last)) in <lambda>()
|
/frameworks/base/cmds/uiautomator/ |
D | Android.bp | 11 name: "uiautomator-last-released-api", 13 …cmd: "cp -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-api.txt", 15 "last-released-api.txt",
|
/frameworks/native/include/ftl/ |
D | static_vector.h | 148 StaticVector(Iterator first, Iterator last) : StaticVector(kIteratorRange, first, last) { in StaticVector() argument 154 StaticVector(IteratorRangeTag, Iterator first, Iterator last) in StaticVector() argument 155 : size_(std::min(max_size(), static_cast<size_type>(std::distance(first, last)))) { in StaticVector() 249 using Iter::last; 304 void pop_back() { unstable_erase(last()); } in pop_back() 322 if (it != last()) { in unstable_erase() 326 std::destroy_at(last()); in unstable_erase() 414 const auto [first, last] = std::make_pair(from->begin() + min, from->begin() + max); in swap() 415 std::uninitialized_move(first, last, to->begin() + min); in swap() 416 std::destroy(first, last); in swap()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ProcLocksReader.java | 73 long last = -1; in handleBlockingFileLocks() local 86 if (id == last) { in handleBlockingFileLocks() 120 last = id; in handleBlockingFileLocks()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/kotlin/ |
D | IpcSerializerTest.kt | 51 val last = lastEvaluatedTime.getAndSet(enqueuedTime) in serializeManyIncomingIpcs() constant 53 "expected $last less than or equal to $enqueuedTime ", in serializeManyIncomingIpcs() 54 last <= enqueuedTime, in serializeManyIncomingIpcs()
|
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarManifestReader.java | 145 int last = pos; in readValue() local 165 valueBuffer.write(buf, mark, last - mark); in readValue() 176 last = pos; in readValue() 179 valueBuffer.write(buf, mark, last - mark); in readValue()
|
/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/ |
D | binary_search.h | 29 inline constexpr bool IsSorted(ForwardIterator first, ForwardIterator last, Compare comp) { in IsSorted() argument 31 if (first == last) { in IsSorted() 34 for (auto tmp = first; ++tmp != last; first = tmp) { in IsSorted()
|
/frameworks/libs/modules-utils/javatests/com/android/modules/utils/testing/ |
D | MultipleStaticMocksTest.java | 61 private int verifyCollected(int n, String... last) { in verifyCollected() argument 62 assertThat(mCollected).hasSize(n + last.length); in verifyCollected() 64 .containsExactlyElementsIn(last).inOrder(); in verifyCollected() 65 return n + last.length; in verifyCollected()
|