Home
last modified time | relevance | path

Searched refs:isSuccessful (Results 1 – 25 of 69) sorted by relevance

123

/external/webrtc/examples/androidvoip/java/org/webrtc/examples/androidvoip/
DOnVoipClientTaskCompleted.java18 void onVoipClientInitializationCompleted(boolean isSuccessful); in onVoipClientInitializationCompleted() argument
19 void onStartSessionCompleted(boolean isSuccessful); in onStartSessionCompleted() argument
20 void onStopSessionCompleted(boolean isSuccessful); in onStopSessionCompleted() argument
21 void onStartSendCompleted(boolean isSuccessful); in onStartSendCompleted() argument
22 void onStopSendCompleted(boolean isSuccessful); in onStopSendCompleted() argument
23 void onStartPlayoutCompleted(boolean isSuccessful); in onStartPlayoutCompleted() argument
24 void onStopPlayoutCompleted(boolean isSuccessful); in onStopPlayoutCompleted() argument
DMainActivity.java251 public void onVoipClientInitializationCompleted(boolean isSuccessful) { in onVoipClientInitializationCompleted() argument
253 if (!isSuccessful) { in onVoipClientInitializationCompleted()
260 public void onStartSessionCompleted(boolean isSuccessful) { in onStartSessionCompleted() argument
262 if (isSuccessful) { in onStartSessionCompleted()
273 public void onStopSessionCompleted(boolean isSuccessful) { in onStopSessionCompleted() argument
275 if (isSuccessful) { in onStopSessionCompleted()
292 public void onStartSendCompleted(boolean isSuccessful) { in onStartSendCompleted() argument
294 if (isSuccessful) { in onStartSendCompleted()
303 public void onStopSendCompleted(boolean isSuccessful) { in onStopSendCompleted() argument
305 if (isSuccessful) { in onStopSendCompleted()
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/
DAncestorDescendantTests.java21 assertTrue(parse.isSuccessful()); in nodeIsNotAncestorOfItself()
39 assertTrue(parse.isSuccessful()); in nodeIsNotDescendantOfItself()
57 assertTrue(parse.isSuccessful()); in nodeInSameFileIsDescendantOfAncestor()
80 assertTrue(parseA.isSuccessful()); in nodesInTwoDifferentFilesAreNotDescendantOrAncestorOfEachOther()
85 assertTrue(parseB.isSuccessful()); in nodesInTwoDifferentFilesAreNotDescendantOrAncestorOfEachOther()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/
DProvidersTest.java40 assertTrue(parse.isSuccessful()); in testResourceProvider()
49 assertFalse(parse.isSuccessful()); in testResourceProviderWithWrongEncoding()
61 assertTrue(parse.isSuccessful()); in testResourceProviderWithEncoding()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DParseResult.java56 public boolean isSuccessful() { in isSuccessful() method in ParseResult
64 if (isSuccessful()) { in ifSuccessful()
99 if (isSuccessful()) { in toString()
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DCacheResponse.java42 if (!response1.isSuccessful()) throw new IOException("Unexpected code " + response1); in run()
50 if (!response2.isSuccessful()) throw new IOException("Unexpected code " + response2); in run()
DAccessHeaders.java35 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DPostForm.java38 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DPostString.java46 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DSynchronousGet.java33 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DCertificatePinning.java45 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DPostFile.java41 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DParseResponseWithGson.java34 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DPostMultipart.java54 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
DAsynchronousGet.java39 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); in run()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DParseResult.java45 public boolean isSuccessful() { in isSuccessful() method in ParseResult
79 if (isSuccessful()) { in toString()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/expected_output/
Dcom_github_javaparser_ParseResult.txt14 Line 79) isSuccessful() ==> com.github.javaparser.ParseResult.isSuccessful()
/external/mockito/src/test/java/org/mockitousage/junitrunner/
DSilentRunnerTest.java36 JUnitResultAssert.assertThat(result).isSuccessful(); in passing_test()
72 JUnitResultAssert.assertThat(result).isSuccessful(); in ignores_unused_stubs()
DStrictRunnerTest.java39 JUnitResultAssert.assertThat(result).isSuccessful(); in succeeds_when_all_stubs_were_used()
78 JUnitResultAssert.assertThat(result).isSuccessful(); in runner_in_multi_threaded_tests()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DRecordedResponse.java69 assertTrue(response.isSuccessful()); in assertSuccessful()
74 assertFalse(response.isSuccessful()); in assertNotSuccessful()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/naming/
DAbstractNameLogicTest.java40 if (!parseResult.isSuccessful()) { in parse()
43 assertTrue(parseResult.isSuccessful()); in parse()
/external/mockito/src/main/java/org/mockito/internal/runners/util/
DFailureDetector.java23 public boolean isSuccessful() { in isSuccessful() method in FailureDetector
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/manual/
DBulkParseTest.java98 if (!result.isSuccessful()) { in bulkTest()
112 if (!result.isSuccessful()) { in bulkTest()
/external/dokka/core/src/main/kotlin/Utilities/
DDownloadSamples.kt44 if (response.isSuccessful) { in <lambda>()
/external/mockito/src/main/java/org/mockito/internal/runners/
DStrictRunner.java44 if (!filterRequested && listener.isSuccessful()) { in run()

123