/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/cmds/statsd/src/logd/ |
D | LogEvent.cpp | 108 void LogEvent::parseInt32(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations) { in parseInt32() argument 110 addToValues(pos, depth, value, last); in parseInt32() 114 void LogEvent::parseInt64(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations) { in parseInt64() argument 116 addToValues(pos, depth, value, last); in parseInt64() 120 void LogEvent::parseString(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations) { in parseString() argument 130 addToValues(pos, depth, value, last); in parseString() 134 void LogEvent::parseFloat(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations) { in parseFloat() argument 136 addToValues(pos, depth, value, last); in parseFloat() 140 void LogEvent::parseBool(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations) { in parseBool() argument 143 addToValues(pos, depth, value, last); in parseBool() [all …]
|
D | LogEvent.h | 221 void parseInt32(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 222 void parseInt64(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 223 void parseString(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 224 void parseFloat(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 225 void parseBool(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 226 void parseByteArray(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 227 void parseKeyValuePairs(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 228 void parseAttributionChain(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations); 281 void addToValues(int32_t* pos, int32_t depth, T& value, bool* last) { in addToValues() argument 285 if (last[i]) f.decorateLastPos(i); in addToValues()
|
/frameworks/av/media/libstagefright/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/av/media/libstagefright/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 | 88 String last = contentUri.getLastPathSegment(); in parseId() local 89 return last == null ? -1 : Long.parseLong(last); in parseId() 126 final String last = contentUri.getLastPathSegment(); in removeId() local 127 if (last == null) { in removeId() 130 Long.parseLong(last); in removeId()
|
/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/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/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/base/cmds/uiautomator/ |
D | Android.bp | 2 name: "uiautomator-last-released-api", 4 …cmd: "cp -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-api.txt", 6 "last-released-api.txt",
|
/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/tools/aapt2/ |
D | ResourceTable.cpp | 64 const auto last = packages.end(); in FindPackage() local 65 auto iter = std::lower_bound(packages.begin(), last, name, in FindPackage() 67 if (iter != last && name == (*iter)->name) { in FindPackage() 98 const auto last = packages.end(); in CreatePackageAllowingDuplicateNames() local 99 auto iter = std::lower_bound(packages.begin(), last, std::make_pair(name, id), in CreatePackageAllowingDuplicateNames() 102 if (iter != last && name == (*iter)->name && id == (*iter)->id) { in CreatePackageAllowingDuplicateNames() 113 const auto last = packages.end(); in FindOrCreatePackage() local 114 auto iter = std::lower_bound(packages.begin(), last, name, in FindOrCreatePackage() 116 if (iter != last && name == (*iter)->name) { in FindOrCreatePackage() 126 const auto last = types.end(); in FindType() local [all …]
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/testables/ |
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()
|
/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/base/core/tests/coretests/src/android/widget/listview/touch/ |
D | ListGetSelectedViewTest.java | 58 View last = mListView.getChildAt(1); in testGetSelectedView() local 59 TouchUtils.clickView(this, last); in testGetSelectedView()
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
D | ListScrollListener.java | 66 int last = firstCell + cellCount - 1; in onScroll() local 67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount); in onScroll()
|
/frameworks/rs/script_api/ |
D | Scanner.cpp | 154 size_t last = s->find('\"', first); in parseDocumentation() local 155 if (last == string::npos) { in parseDocumentation() 158 *documentation = s->substr(first, last - first); in parseDocumentation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationSectionsManager.kt | 434 val last: ExpandableView in <lambda>() constant in com.android.systemui.statusbar.notification.stack.SectionBounds.Many 443 is Many -> copy(last = notif) in <lambda>() 449 is Many -> section.setFirstAndLastVisibleChildren(first, last) in <lambda>() 454 last: ExpandableView? in <lambda>() 457 val lastChanged = setLastVisibleChild(last) in <lambda>() 503 val ls = when (val last = s.lastVisibleChild) { in <lambda>() constant 505 is ExpandableNotificationRow -> last.entry.key in <lambda>() 506 else -> Integer.toHexString(System.identityHashCode(last)) in <lambda>()
|
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/ |
D | IconNormalizer.java | 365 int last = -1; // Last valid y coordinate which didn't have a missing value in convertToConvexArray() local 378 float currentAngle = (xCoordinates[i] - xCoordinates[last]) / (i - last); in convertToConvexArray() 379 start = last; in convertToConvexArray() 400 last = i; in convertToConvexArray()
|
/frameworks/base/core/java/android/os/ |
D | FileUtils.java | 632 byte[] last = null; in readTextFile() 635 if (last != null) rolled = true; in readTextFile() 636 byte[] tmp = last; last = data; data = tmp; in readTextFile() 641 if (last == null && len <= 0) return ""; in readTextFile() 642 if (last == null) return new String(data, 0, len); in readTextFile() 645 System.arraycopy(last, len, last, 0, last.length - len); in readTextFile() 646 System.arraycopy(data, 0, last, last.length - len, len); in readTextFile() 648 if (ellipsis == null || !rolled) return new String(last); in readTextFile() 649 return ellipsis + new String(last); in readTextFile()
|
/frameworks/av/media/libmediahelper/ |
D | AudioParameter.cpp | 65 char *last; in AudioParameter() local 68 char *pair = strtok_r(str, ";", &last); in AudioParameter() 87 pair = strtok_r(NULL, ";", &last); in AudioParameter()
|
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/ |
D | Material.java | 228 int last = mOpacity.length - 1; in buildOpacityTable() local 229 for (int i = mOpacity[last].mPos; i <= Short.MAX_VALUE; i++) { in buildOpacityTable() 231 mOpacityTable[p] = (byte) (mOpacity[last].mValue * 255); in buildOpacityTable() 285 int last = m.length - 1; in buildMaterialProp() local 286 MaterialProp mp = m[last]; in buildMaterialProp()
|
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/ |
D | JobPackageTracker.java | 445 DataSet last = mCurDataSet; in rebatchIfNeeded() local 446 last.mSummedTime = totalTime; in rebatchIfNeeded() 448 last.finish(mCurDataSet, now); in rebatchIfNeeded() 450 mLastDataSets[0] = last; in rebatchIfNeeded() 506 PackageEntry last = mLastDataSets[0] != null ? mLastDataSets[0].getEntry(uid, pkg) : null; in getLoadFactor() local 507 if (cur == null && last == null) { in getLoadFactor() 516 if (last != null) { in getLoadFactor() 517 time += last.getActiveTime(now) + last.getPendingTime(now); in getLoadFactor()
|
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
D | RecurrenceProcessorTest.java | 72 String last) throws Exception { in verifyRecurrence() argument 155 if (last != null && last.length() > 0) { in verifyRecurrence() 157 expectedLast.parse(last); in verifyRecurrence() 163 Log.i(TAG, "Expected: " + last + "; Actual: " + lastStr); in verifyRecurrence() 168 + " expected=" + last in verifyRecurrence()
|