/frameworks/base/tests/net/java/com/android/server/connectivity/ |
D | IpConnectivityEventBuilderTest.java | 76 String want = String.join("\n", in testLinkLayerInferrence() local 90 verifySerialization(want, ev); in testLinkLayerInferrence() 95 want = String.join("\n", in testLinkLayerInferrence() 109 verifySerialization(want, ev); in testLinkLayerInferrence() 113 want = String.join("\n", in testLinkLayerInferrence() 127 verifySerialization(want, ev); in testLinkLayerInferrence() 131 want = String.join("\n", in testLinkLayerInferrence() 145 verifySerialization(want, ev); in testLinkLayerInferrence() 148 want = String.join("\n", in testLinkLayerInferrence() 162 verifySerialization(want, ev); in testLinkLayerInferrence() [all …]
|
D | NetdEventListenerServiceTest.java | 155 String want = String.join("\n", in testWakeupStatsLogging() local 190 assertEquals(want, got); in testWakeupStatsLogging() 213 String want = String.join("\n", in testDnsLogging() local 284 assertEquals(want, got); in testDnsLogging() 329 String want = String.join("\n", in testConnectLogging() local 399 assertEquals(want, got); in testConnectLogging() 461 static void assertContains(String got, String want) { 462 assertTrue(got + " did not contain \"" + want + "\"", got.contains(want));
|
D | IpConnectivityMetricsTest.java | 236 String want = String.join("\n", in testEndToEndLogging() local 451 verifySerialization(want, getdump("flush")); in testEndToEndLogging() 485 static void verifySerialization(String want, String output) { in verifySerialization() argument 490 assertEquals(want, log.toString()); in verifySerialization()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | LocalLogTest.java | 36 String[] want = lines; in testA() local 37 testcase(new LocalLog(10), lines, want); in testA() 46 String[] want = {}; in testB() local 47 testcase(new LocalLog(0), lines, want); in testB() 62 String[] want = { in testC() local 67 testcase(new LocalLog(3), lines, want); in testC() 70 void testcase(LocalLog logger, String[] input, String[] want) { in testcase() argument 74 verifyAllLines(want, dump(logger).split("\n")); in testcase() 75 verifyAllLines(reverse(want), reverseDump(logger).split("\n")); in testcase() 80 String want = wantLines[i]; in verifyAllLines() local [all …]
|
D | TokenBucketTest.java | 109 final int want = 60; in testAverage() local 114 for (int i = 0; i < want; i++) { in testAverage() 121 assertDuration(want * delta, SystemClock.elapsedRealtime() - start); in testAverage() 127 final int want = 100; in testBurst() local 133 while (total < want) { in testBurst()
|
/frameworks/base/core/java/android/text/style/ |
D | StyleSpan.java | 101 int want = oldStyle | style; in apply() local 105 tf = Typeface.defaultFromStyle(want); in apply() 107 tf = Typeface.create(old, want); in apply() 110 int fake = want & ~tf.getStyle(); in apply()
|
/frameworks/rs/tests/java_api/Refocus/dataExtraction/ |
D | RefocusTestTimingProcess.txt | 6 Here are somethings you might want to know: 9 3. You might want to run the script several times with some short intervals (a few seconds) and ave… 13 1. choose which device you want to test and create a corresponding text file to record the logcat. … 14 …want to record (or record both), copy the corresponding log from the first line with the title you…
|
/frameworks/base/tests/net/java/android/net/util/ |
D | SharedLogTest.java | 86 String want = expected[i]; in verifyLogLines() local 87 assertTrue(String.format("'%s' did not contain '%s'", got, want), got.endsWith(want)); in verifyLogLines()
|
/frameworks/base/tests/net/java/com/android/server/ |
D | NsdServiceTest.java | 154 void verifyDaemonCommand(String want) { in verifyDaemonCommand() argument 155 verifyDaemonCommand(want, 1); in verifyDaemonCommand() 158 void verifyDaemonCommand(String want, int n) { in verifyDaemonCommand() argument 165 assertEquals(want, got.trim()); in verifyDaemonCommand()
|
/frameworks/native/opengl/libagl/ |
D | matrix.h | 39 void ogles_validate_transform_impl(ogles_context_t* c, uint32_t want); 50 ogles_context_t* c, uint32_t want) in ogles_validate_transform() argument 52 if (c->transforms.dirty & want) in ogles_validate_transform() 53 ogles_validate_transform_impl(c, want); in ogles_validate_transform()
|
D | array.cpp | 1117 uint32_t want = in validate_arrays() local 1121 want |= transform_state_t::MVUI; in validate_arrays() 1122 want |= transform_state_t::MODELVIEW; in validate_arrays() 1125 want |= transform_state_t::TEXTURE; in validate_arrays() 1128 want |= transform_state_t::MODELVIEW; // needs eye coords in validate_arrays() 1130 ogles_validate_transform(c, want); in validate_arrays()
|
/frameworks/opt/setupwizard/library/ |
D | build.gradle | 22 // For builds in the Android tree we want to build the dependencies from source for reproducible 23 // builds. To add a dependency, you want to specify something like this:
|
D | standalone.gradle | 3 * as opposed to building it as part of the git-tree. This is typically the file you want to include
|
D | standalone-rules.gradle | 18 // dependencies from maven. To add a dependency, you want to specify something like this:
|
D | rules.gradle | 32 // For builds in the Android tree we want to build the dependencies from source
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | System.inc | 54 // On darwin, we want to update the version to match that of the
|
/frameworks/native/services/surfaceflinger/EventLog/ |
D | EventLogTags.logtags | 42 # want to define their own log tags without conflicting with the core platform.
|
/frameworks/base/tests/net/java/android/net/ip/ |
D | IpManagerTest.java | 188 LinkProperties want = linkproperties(links(addresses), routes(prefixes)); in testProvisioningWithInitialConfiguration() local 189 want.setInterfaceName(iface); in testProvisioningWithInitialConfiguration() 190 verify(mCb, timeout(100).times(1)).onProvisioningSuccess(eq(want)); in testProvisioningWithInitialConfiguration()
|
/frameworks/native/vulkan/ |
D | README.md | 22 - You should now have `$GOPATH/bin/apic`. You might want to add `$GOPATH/bin` to your `$PATH`.
|
/frameworks/rs/tests/lldb/java/Reduction/src/com/android/rs/lldbreductiontest/ |
D | reduce_common.rsh | 18 // This kernel is unused, but we want to make sure it is not listed as a
|
/frameworks/base/tests/AccessoryDisplay/ |
D | README | 13 a monitor or video dock that the user will want to plug a phone into.
|
/frameworks/layoutlib/create/ |
D | README.txt | 24 - they contains references to native code (which we want to avoid in Eclipse), 33 - filters some packages and removes those we don't want in the output JAR, 62 dependencies and then only keep the ones we want. 65 from these is kept. Currently the one such class is android.view.View: since we want to render
|
/frameworks/support/app-toolkit/ |
D | dependencies.gradle | 33 // this Xerial version is newer than we want but we need it to fix
|
/frameworks/multidex/ |
D | build.gradle | 53 * The DIST_DIR is where you want to save things from the build.
|
/frameworks/support/ |
D | README.md | 50 … exercise support library code. These applications can be useful when you want to debug a real run…
|