Home
last modified time | relevance | path

Searched refs:targetLength (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/search/
H A DStringMatcherUtility.java33 int targetLength = target.length(); in matches() local
35 if (targetLength < queryLength || queryLength <= 0) { in matches()
47 int end = targetLength - queryLength; in matches()
51 nextType = i < (targetLength - 1) in matches()
/aosp12/system/chre/apps/test/chqts/src/general_test/
H A Dbasic_wifi_test.cc128 uint8_t targetLength = in testRequestRangingAsync() local
131 void *array = chreHeapAlloc(sizeof(chreWifiRangingTarget) * targetLength); in testRequestRangingAsync()
142 for (uint8_t i = 0; i < targetLength - 1; i++) { in testRequestRangingAsync()
146 for (uint8_t i = targetLength - 1; i < length; i++) { in testRequestRangingAsync()
151 &targetList[targetLength - 1]); in testRequestRangingAsync()
156 struct chreWifiRangingParams params = {.targetListLen = targetLength, in testRequestRangingAsync()
/aosp12/frameworks/av/media/libmedia/
H A DCharacterEncodingDetector.cpp262 int targetLength = len * 3 + 1; in detectAndConvert() local
263 char* buffer = new char[targetLength]; in detectAndConvert()
269 ucnv_convertEx(mUtf8Conv, conv, &target, target + targetLength, in detectAndConvert()