Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 113) sorted by relevance

12345

/tools/treble/hacksaw/workspace/
Dworkspace_test.go29 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 …]
Dcompose_test.go27 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 …]
Dcopier_test.go24 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/
Dcommand_test.go29 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 …]
Dclient_test.go25 func TestClientHelp(t *testing.T) {
28 t.Error(err)
34 t.Error(err)
/tools/treble/hacksaw/codebase/
Dcodebase_test.go27 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/
Dremoteserver_test.go25 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/
DDownloadStressTest.py115 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 …]
DPingStressTest.py141 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/
Drepo_test.go25 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/
Dconfig_test.go31 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/
Drun_tests_py2.sh56 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}"
Drun_tests.sh58 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/
DApiAnalyzer.kt1005 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 …]
DProguardWriter.kt128 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/
Dlogger.py95 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/
Dmain_test.go23 func TestHelp(t *testing.T) {
26 t.Error(err)
30 t.Error(err)
37 t.Error(err)
/tools/asuite/aidegen/
Drun_tests.sh55 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/
DWifiTetheringPowerTest.py134 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/
DApkZFileCreator.java142 } 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/
DGameQualificationHostsideController.java259 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/
DTouchTest.py64 '(%d, %d)' % (t['position_x'], t['position_y'])
65 for t in event['touch']['contacts']
/tools/test/connectivity/acts_tests/tests/google/bt/
DBtMetricsTest.py102 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/
DBeaconSwarmTest.py124 for t in threads:
125 t.join()
154 for t in threads:
155 t.join()
/tools/metalava/
DFORMAT.md9 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>.)

12345