Home
last modified time | relevance | path

Searched refs:testSource (Results 1 – 6 of 6) sorted by relevance

/external/auto/value/src/test/java/com/google/auto/value/processor/
DAutoAnnotationErrorsTest.java46 JavaFileObject testSource = in testCorrect() local
62 .compile(TEST_ANNOTATION, testSource); in testCorrect()
68 JavaFileObject testSource = in testNotStatic() local
84 .compile(TEST_ANNOTATION, testSource); in testNotStatic()
87 .inFile(testSource) in testNotStatic()
93 JavaFileObject testSource = in testDoesNotReturnAnnotation() local
108 .compile(TEST_ANNOTATION, testSource); in testDoesNotReturnAnnotation()
111 .inFile(testSource) in testDoesNotReturnAnnotation()
117 JavaFileObject testSource = in testOverload() local
137 .compile(TEST_ANNOTATION, testSource); in testOverload()
[all …]
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/upstream/
DBaseDataSourceTest.java34 TestSource testSource = new TestSource(/* isNetwork= */ false); in dataTransfer_withLocalSource_isReported() local
36 testSource.addTransferListener(transferListener); in dataTransfer_withLocalSource_isReported()
39 testSource.open(dataSpec); in dataTransfer_withLocalSource_isReported()
40 testSource.read(/* buffer= */ null, /* offset= */ 0, /* readLength= */ 100); in dataTransfer_withLocalSource_isReported()
41 testSource.close(); in dataTransfer_withLocalSource_isReported()
43 assertThat(transferListener.lastTransferInitializingSource).isSameInstanceAs(testSource); in dataTransfer_withLocalSource_isReported()
44 assertThat(transferListener.lastTransferStartSource).isSameInstanceAs(testSource); in dataTransfer_withLocalSource_isReported()
45 assertThat(transferListener.lastBytesTransferredSource).isSameInstanceAs(testSource); in dataTransfer_withLocalSource_isReported()
46 assertThat(transferListener.lastTransferEndSource).isSameInstanceAs(testSource); in dataTransfer_withLocalSource_isReported()
63 TestSource testSource = new TestSource(/* isNetwork= */ true); in dataTransfer_withRemoteSource_isReported() local
[all …]
/external/deqp/external/openglcts/modules/common/subgroups/
DglcSubgroupsShuffleTests.cpp115 const std::string testSource = in TestSource() local
131 return testSource; in TestSource()
146 const std::string testSource = TestSource(caseDef); in initFrameBufferPrograms() local
167 << testSource in initFrameBufferPrograms()
195 << testSource in initFrameBufferPrograms()
229 << testSource in initFrameBufferPrograms()
257 << testSource in initFrameBufferPrograms()
283 const std::string testSource = TestSource(caseDef); in initPrograms() local
303 << testSource in initPrograms()
324 + testSource + in initPrograms()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupsShuffleTests.cpp117 const std::string testSource = in TestSource() local
133 return testSource; in TestSource()
150 const std::string testSource = TestSource(caseDef); in initFrameBufferPrograms() local
172 << testSource in initFrameBufferPrograms()
202 << testSource in initFrameBufferPrograms()
239 << testSource in initFrameBufferPrograms()
270 << testSource in initFrameBufferPrograms()
297 const std::string testSource = TestSource(caseDef); in initPrograms() local
317 << testSource in initPrograms()
339 + testSource + in initPrograms()
[all …]
/external/icu/icu4c/source/test/intltest/
Dplurults.cpp38 void setupResult(const int32_t testSource[], char result[], int32_t* max);
280 void setupResult(const int32_t testSource[], char result[], int32_t* max) { in setupResult() argument
285 while (curIndex < testSource[i]) { in setupResult()
290 } while(testSource[++i]>0); in setupResult()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DDemo.java535 static void printBreaks(int num, String testSource, BreakIterator brkItr) { in printBreaks() argument
541 result += testSource.substring(lastPos, pos) + "&"; in printBreaks()
548 static void printIteration(int num, String testSource, CharacterIterator ci) { in printIteration() argument