Searched refs:startPoint (Results 1 – 4 of 4) sorted by relevance
/aosp12/art/tools/dexfuzz/src/dexfuzz/ |
H A D | Timer.java | 33 private long startPoint; field in Timer 53 startPoint = System.currentTimeMillis(); in start() 61 elapsedTime += (endPoint - startPoint); in stop()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ui/ |
H A D | PerimeterPathGuide.java | 316 Pair<Region, Float> startPoint = placePoint(startCoord); in strokeSegmentInternal() local 319 if (startPoint.first.equals(endPoint.first)) { in strokeSegmentInternal() 320 strokeRegion(path, startPoint.first, startPoint.second, endPoint.second); in strokeSegmentInternal() 322 strokeRegion(path, startPoint.first, startPoint.second, 1f); in strokeSegmentInternal() 325 if (r.equals(startPoint.first)) { in strokeSegmentInternal()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
H A D | BluetoothPbapVcardManager.java | 499 final int startPoint, final int endPoint, final boolean vcardType21, int needSendBody, in composeAndSendSelectedCallLogVcards() argument 502 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendSelectedCallLogVcards() 517 callsCursor.moveToPosition(startPoint - 1); in composeAndSendSelectedCallLogVcards() 522 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 542 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 566 final int composeAndSendPhonebookVcards(Operation op, final int startPoint, final int endPoint, in composeAndSendPhonebookVcards() argument 570 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendPhonebookVcards() 591 ContactCursorFilter.filterByRange(contactCursor, startPoint, endPoint); in composeAndSendPhonebookVcards() 666 public static Cursor filterByRange(Cursor contactCursor, int startPoint, int endPoint) { in filterByRange() argument 679 if (currentOffset >= startPoint) { in filterByRange()
|
H A D | BluetoothPbapObexServer.java | 789 int startPoint = appParamValue.listStartOffset; in sendVcardListingXml() local 790 int endPoint = startPoint + requestSize; in sendVcardListingXml() 799 for (int j = startPoint; j < endPoint; j++) { in sendVcardListingXml() 1290 int startPoint = startIndex + appParamValue.listStartOffset; in pullPhonebook() local 1291 int endPoint = startPoint + requestSize - 1; in pullPhonebook() 1292 if (appParamValue.listStartOffset < 0 || startPoint > lastIndex) { in pullPhonebook() 1293 Log.w(TAG, "listStartOffset is not correct! " + startPoint); in pullPhonebook() 1309 Log.d(TAG, "pullPhonebook(): requestSize=" + requestSize + " startPoint=" + startPoint in pullPhonebook() 1318 if (startPoint == 0) { in pullPhonebook() 1330 return mVcardManager.composeAndSendPhonebookVcards(op, startPoint, endPoint, in pullPhonebook() [all …]
|