/tools/treble/hacksaw/workspace/ |
D | workspace_test.go | 29 func TestBasicCreate(t *testing.T) { 33 t.Error(err) 38 t.Error(err) 42 t.Error(err) 47 t.Error(err) 51 t.Error(err) 58 t.Error(err) 63 t.Error(err) 67 t.Error(err) 71 t.Error(err) [all …]
|
D | compose_test.go | 27 func TestBasicCompose(t *testing.T) { 31 t.Error(err) 36 t.Error(err) 40 t.Error(err) 45 t.Error(err) 49 t.Error(err) 54 t.Error(err) 60 t.Error(err) 67 t.Errorf("Expected a list of binds %v and got %v", expectedList, list) 71 t.Error(err) [all …]
|
D | copier_test.go | 24 func TestCopy(t *testing.T) { 28 t.Error(err) 33 t.Error(err) 38 t.Error(err) 42 t.Error(err) 46 t.Error(err) 50 t.Error(err) 54 t.Error(err) 58 t.Error(err) 62 t.Error(err) [all …]
|
/tools/treble/hacksaw/client/ |
D | command_test.go | 29 func TestHelpCommand(t *testing.T) { 34 t.Error(err) 38 func TestNoCommand(t *testing.T) { 43 t.Error(err) 47 func TestBadCommand(t *testing.T) { 51 t.Errorf("Failed to handle bad command") 55 func TestEmptyCodebaseCommand(t *testing.T) { 59 t.Errorf("Allowed an empty codebase command") 63 func TestAddCodebase(t *testing.T) { 67 t.Error(err) [all …]
|
D | client_test.go | 25 func TestClientHelp(t *testing.T) { 28 t.Error(err) 34 t.Error(err)
|
/tools/treble/hacksaw/codebase/ |
D | codebase_test.go | 27 func TestAdd(t *testing.T) { 31 t.Error(err) 36 t.Error(err) 45 t.Errorf("Expected config %v different than output config %v", 51 t.Error(err) 55 t.Error(err) 65 t.Errorf("Expected config %v different than output config %v", 70 func TestAddDuplicate(t *testing.T) { 74 t.Error(err) 79 t.Error(err) [all …]
|
/tools/treble/hacksaw/bind/ |
D | remoteserver_test.go | 25 func TestServerBind(t *testing.T) { 28 t.Error(err) 34 t.Error(err) 38 t.Error(err) 46 t.Error(err) 49 t.Error(bindROReply.Err) 53 t.Error(err) 57 t.Error(err) 65 t.Error(err) 68 t.Error(bindRWReply.Err) [all …]
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/functional/ |
D | DownloadStressTest.py | 115 t = threading.Thread(target=self.download_thread, args=(url, )) 116 download_threads.append(t) 117 t.start() 120 for t in download_threads: 121 t.join(self.download_timeout_s) 126 for index, t in enumerate(download_threads): 127 if t.isAlive(): 128 t = None 155 t = threading.Thread(target=self.download_thread, 157 download_threads.append(t) [all …]
|
D | PingStressTest.py | 141 t = threading.Thread(target=self.ping_thread, args=(url, )) 142 ping_threads.append(t) 143 t.start() 146 for t in ping_threads: 147 t.join(self.ping_thread_timeout_s) 152 for index, t in enumerate(ping_threads): 153 if t.isAlive(): 154 t = None
|
/tools/treble/hacksaw/git/ |
D | repo_test.go | 25 func TestList(t *testing.T) { 28 t.Error(err) 31 t.Error(err) 39 t.Error(err) 44 t.Error(err) 53 t.Errorf("Got list %v but expected %v", projectList, expectedList)
|
/tools/treble/hacksaw/config/ |
D | config_test.go | 31 func TestWrite(t *testing.T) { 40 t.Error(err) 44 t.Errorf("Output %s is different that expected output %s", 57 func TestRead(t *testing.T) { 62 t.Error(err) 71 t.Errorf("Written config %v is different than read config %v",
|
/tools/acloud/ |
D | run_tests_py2.sh | 56 for t in $all_tests; 60 if [[ "$t" =~ "$t_pattern" ]]; then 61 tests_to_run=("${tests_to_run[@]}" "$t") 67 for t in $tests_to_run; 69 if ! PYTHONPATH=$(get_python_path):$PYTHONPATH $run_cmd $t; then 71 echo -e "${RED}$t failed${NC}"
|
D | run_tests.sh | 58 for t in $all_tests; 62 if [[ "$t" =~ "$t_pattern" ]]; then 63 tests_to_run=("${tests_to_run[@]}" "$t") 69 for t in $tests_to_run; 71 if ! PYTHONPATH=$(get_python_path):$PYTHONPATH $run_cmd $t; then 73 echo -e "${RED}$t failed${NC}"
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | ApiAnalyzer.kt | 1005 val t = p.type() in <lambda>() constant 1006 if (!t.primitive) { in <lambda>() 1007 … if (!m.deprecated && !cl.deprecated && t.asClass()?.deprecated == true) { in <lambda>() 1010 …"Parameter of deprecated type $t in ${cl.qualifiedName()}.${m.name()}(): this method should also b… in <lambda>() 1014 hiddenClass = findHiddenClasses(t, stubImportPackages) in <lambda>() 1016 if (hiddenClass.qualifiedName() == t.asClass()?.qualifiedName()) { in <lambda>() 1020 … "Parameter of unavailable type $t in ${cl.qualifiedName()}.${m.name()}()" in <lambda>() 1026 … "Parameter uses type parameter of unavailable type $t in ${cl.qualifiedName()}.${m.name()}()" in <lambda>() 1033 val t = m.returnType() in <lambda>() constant 1034 …if (t != null && !t.primitive && !m.deprecated && !cl.deprecated && t.asClass()?.deprecated == tru… in <lambda>() [all …]
|
D | ProguardWriter.kt | 128 private fun getCleanTypeName(t: TypeItem?): String { in getCleanTypeName() 129 t ?: return "" in getCleanTypeName() 130 val cls = t.asClass() ?: return t.toCanonicalType() in getCleanTypeName() 133 for (i in 0 until t.arrayDimensions()) { in getCleanTypeName()
|
/tools/test/connectivity/acts/framework/acts/ |
D | logger.py | 95 def _parse_logline_timestamp(t): argument 105 date, time = t.split(' ') 140 t = datetime.datetime.now() 142 t = t + datetime.timedelta(seconds=delta) 143 return t.strftime(time_format)[:-3]
|
/tools/treble/hacksaw/cmd/hacksaw/ |
D | main_test.go | 23 func TestHelp(t *testing.T) { 26 t.Error(err) 30 t.Error(err) 37 t.Error(err)
|
/tools/asuite/aidegen/ |
D | run_tests.sh | 55 for t in $tests_to_run; do 56 echo "Testing" $t 57 … if ! PYTHONPATH=$(get_python_path) python3 -m coverage run --append --rcfile=$RC_FILE $t; then 59 echo -e "${RED}$t failed${NC}"
|
/tools/test/connectivity/acts_tests/tests/google/wifi/ |
D | WifiTetheringPowerTest.py | 134 t = threading.Thread(target = self._start_traffic_on_device, 136 t.start() 137 threads.append(t) 141 for t in threads: 142 t.join()
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zfile/ |
D | ApkZFileCreator.java | 142 } catch (Throwable t) { in writeZip() 143 throw closer.rethrow(t); in writeZip() 161 } catch (Throwable t) { in writeFile() 162 throw closer.rethrow(t); in writeFile()
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/testtype/ |
D | GameQualificationHostsideController.java | 259 for (PerformanceTest.Test t : PerformanceTest.Test.values()) { in run() 260 … TestDescription identifier = new TestDescription(CLASS, t.getName() + "[" + apk.getName() + "]"); in run() 261 if (t.isEnableCollectors()) { in run() 275 t.getMethod().run(test); in run() 284 if (t.isEnableCollectors()) { in run()
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/input/ |
D | TouchTest.py | 64 '(%d, %d)' % (t['position_x'], t['position_y']) 65 for t in event['touch']['contacts']
|
/tools/test/connectivity/acts_tests/tests/google/bt/ |
D | BtMetricsTest.py | 102 t = pair_event.event_time_millis 103 asserts.assert_true(start_time <= t <= end_time, 105 (t, start_time, end_time))
|
/tools/test/connectivity/acts_tests/tests/google/ble/beacon_tests/ |
D | BeaconSwarmTest.py | 124 for t in threads: 125 t.join() 154 for t in threads: 155 t.join()
|
/tools/metalava/ |
D | FORMAT.md | 9 through Android P. Note that this isn't actually a single format; it evolved 251 This doesn't currently apply to the SDK, but the signature files are also used 303 Note that this isn't just for Kotlin. Just like there are special nullness 306 @android.annotation.ParameterName (which is hidden). This obviously isn't usable 316 (Note how the implementation parameter doesn't have to match the public, API 372 It didn't do that in stubs, because you can't: those are special methods 374 files since they're entirely implied by the enum, you can't change them, and 411 The above list doesn't include the Kotlin modifiers, which are inserted 504 * Don't add spaces in type bounds lists (e.g. Map<X,Y>, not Map<X, Y>.)
|