/cts/tests/tests/os/src/android/os/cts/ |
D | SystemClockTest.java | 28 long end = SystemClock.currentThreadTimeMillis(); in testCurrentThreadTimeMillis() local 29 assertFalse(end - 100 >= start); in testCurrentThreadTimeMillis() 37 long end = SystemClock.elapsedRealtime(); in testElapsedRealtime() local 38 assertTrue(end - 100 >= start); in testElapsedRealtime() 55 long end = SystemClock.currentThreadTimeMillis(); in testSleep() local 56 assertFalse(end - 100 >= start); in testSleep() 60 end = SystemClock.elapsedRealtime(); in testSleep() 61 assertTrue(end - 100 >= start); in testSleep() 65 end = SystemClock.uptimeMillis(); in testSleep() 66 assertTrue(end - 100 >= start); in testSleep() [all …]
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | EvaluatorTest.java | 49 float end = 1.0f; in testFloatEvaluator() local 53 float result = floatEvaluator.evaluate(0, start, end); in testFloatEvaluator() 56 result = floatEvaluator.evaluate(fraction, start, end); in testFloatEvaluator() 59 result = floatEvaluator.evaluate(1, start, end); in testFloatEvaluator() 60 assertEquals(end, result, EPSILON); in testFloatEvaluator() 75 float[] end = {.8f, 1.0f}; in floatArrayEvaluatorTestImpl() local 78 float[] result = evaluator.evaluate(0, start, end); in floatArrayEvaluatorTestImpl() 82 result = evaluator.evaluate(fraction, start, end); in floatArrayEvaluatorTestImpl() 86 result = evaluator.evaluate(1, start, end); in floatArrayEvaluatorTestImpl() 87 assertEquals(end[0], result[0], EPSILON); in floatArrayEvaluatorTestImpl() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/ |
D | TSuper.d | 24 .end method 30 .end method 36 .end method 39 .end method 45 .end method 51 .end method 57 .end method 65 .end method 70 .end method
|
D | T_invoke_super_range_24.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/ |
D | TSuper.d | 24 .end method 30 .end method 36 .end method 39 .end method 45 .end method 51 .end method 57 .end method 65 .end method 70 .end method
|
D | T_invoke_super_24.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/d/ |
D | TSuper.d | 24 .end method 32 .end method 38 .end method 41 .end method 47 .end method 53 .end method 59 .end method 67 .end method
|
D | T_invoke_virtual_27.d | 21 .end method 29 .end method 37 .end method 51 .end method 57 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual_range/d/ |
D | TSuper.d | 24 .end method 32 .end method 38 .end method 41 .end method 47 .end method 53 .end method 59 .end method 67 .end method
|
D | T_invoke_virtual_range_27.d | 21 .end method 29 .end method 37 .end method 51 .end method 57 .end method
|
/cts/tests/sample/src/android/sample/cts/ |
D | SampleDeviceReportLogTest.java | 103 int end; in countHelper() local 106 end = COUNT_END; in countHelper() 107 for (int i = start; i <= end;) { in countHelper() 112 end = COUNT_START; in countHelper() 113 for (int i = start; i >= end;) { in countHelper() 121 reportLog.addValue(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE); in countHelper() 122 reportLog.setSummary(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE); in countHelper()
|
/cts/tests/tests/text/src/android/text/cts/ |
D | SpannableStringBuilderSpanTest.java | 150 int end = spannable.getSpanEnd(span); in verifySpanPositions() local 158 start + "," + end + " | " + startStyle + " " + endStyle + in verifySpanPositions() 169 assertEquals(-1, end); in verifySpanPositions() 210 assertEquals(originalEnd, end); in verifySpanPositions() 218 assertEquals(replaceStart + replacementLength, end); in verifySpanPositions() 220 assertEquals(replaceStart, end); in verifySpanPositions() 227 assertEquals(replaceStart, end); in verifySpanPositions() 229 assertEquals(replaceStart + replacementLength, end); in verifySpanPositions() 238 assertEquals(originalEnd + delta, end); in verifySpanPositions() 242 if (start != originalStart || end != originalEnd) { in verifySpanPositions() [all …]
|
D | AlteredCharSequenceTest.java | 68 int end = 2; in testGetChars() local 73 mAlteredCharSequence.getChars(start, end, dest, off); in testGetChars() 76 for (int i = off; i < end - start + off; i++) { in testGetChars() 79 end = 0; in testGetChars() 83 mAlteredCharSequence.getChars(start, end, dest, off); in testGetChars() 84 for (int i = off; i < end - start + off; i++) { in testGetChars() 87 start = end + 1; in testGetChars() 89 mAlteredCharSequence.getChars(start, end, dest, off); in testGetChars() 166 public <T> T[] getSpans(int start, int end, Class<T> type) { in getSpans() argument 182 public CharSequence subSequence(int start, int end) { in subSequence() argument
|
D | HtmlTest.java | 68 final int end = 100; in verifySingleTagOnWhileString() local 70 Object[] spans = spanned.getSpans(start, end, Object.class); in verifySingleTagOnWhileString() 88 final int end = 100; in verifyBadHtml() local 91 Object[] spans = spanned.getSpans(start, end, Object.class); in verifyBadHtml() 295 int end = s.length(); in testBlockquote() local 296 s.setSpan(new QuoteSpan(), start, end, Spannable.SPAN_PARAGRAPH); in testBlockquote() 301 end = 7; in testBlockquote() 302 s.setSpan(new QuoteSpan(), start, end, Spannable.SPAN_PARAGRAPH); in testBlockquote() 327 int end = s.length() - start; in testMarkup() local 328 s.setSpan(new StyleSpan(Typeface.BOLD), start, end, SPAN_EXCLUSIVE_INCLUSIVE); in testMarkup() [all …]
|
/cts/suite/audio_quality/lib/src/task/ |
D | TaskSequential.cpp | 57 std::list<TaskGeneric*>::iterator end = getChildren().end(); in run() local 58 for (; i != end; i++) { in run() 95 it = std::find(mAsyncTasks.begin(), mAsyncTasks.end(), task); in queueAsyncTask() 96 if (it != mAsyncTasks.end()) { // already queued in queueAsyncTask() 106 std::list<TaskAsync*>::iterator end = mAsyncTasks.end(); in runAsyncTasksQueued() local 109 for (; i != end; i++) { in runAsyncTasksQueued()
|
D | TaskGeneric.cpp | 51 std::list<TaskGeneric*>::iterator end = mChildren.end(); in forEachChild() local 52 for (; i != end; i++) { in forEachChild() 128 if (it == mAllowedStringAttributes.end()) { in addStringAttribute() 138 if (it == mStringAttributes.end()) { in findStringAttribute()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/ |
D | T_rsub_int_lit8_1.d | 25 .end method 32 .end method 39 .end method 46 .end method 53 .end method 60 .end method 67 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/d/ |
D | T_rsub_int_1.d | 25 .end method 32 .end method 39 .end method 46 .end method 53 .end method 60 .end method 67 .end method
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | EditTextTest.java | 144 int end = 2; in testSetSelectionStartEnd() local 145 mEditText1.setSelection(start, end); in testSetSelectionStartEnd() 147 assertEquals(end, mEditText1.getSelectionEnd()); in testSetSelectionStartEnd() 150 end = 0; in testSetSelectionStartEnd() 151 mEditText1.setSelection(start, end); in testSetSelectionStartEnd() 153 assertEquals(end, mEditText1.getSelectionEnd()); in testSetSelectionStartEnd() 156 end = 1; in testSetSelectionStartEnd() 157 mEditText1.setSelection(start, end); in testSetSelectionStartEnd() 159 assertEquals(end, mEditText1.getSelectionEnd()); in testSetSelectionStartEnd() 201 int end = 0; in testExtendSelection() local [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/ |
D | T_invoke_static_24.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/ |
D | T_invoke_direct_26.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/ |
D | T_invoke_direct_range_26.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/ |
D | T_invoke_static_range_24.d | 19 .end method 33 .end method 37 .end method 51 .end method 58 .end method
|
/cts/tests/tests/os/jni/ |
D | android_os_cts_NoExecutePermissionTest.cpp | 36 uintptr_t end; in isAddressExecutable() local 38 int scan = sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %9s ", &start, &end, permissions); in isAddressExecutable() 39 if ((scan == 3) && (start <= address) && (address < end)) { in isAddressExecutable()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_interface/d/ |
D | T_invoke_interface_24.d | 21 .end method 29 .end method 37 .end method 51 .end method 57 .end method
|