Searched refs:Text (Results 1 – 5 of 5) sorted by relevance
/test/app_compat/csuite/integration_tests/ |
D | csuite_test_utils.py | 29 from typing import Sequence, Text 77 def add_module(self, package_name: Text) -> Text: argument 97 def run_and_wait(self, flags: Sequence[Text]) -> subprocess.CompletedProcess: argument 146 def add_package_apks(self, package_name: Text, argument 166 device_serial: Text = None): argument 174 args: Sequence[Text], argument 193 args: Sequence[Text], argument 198 def uninstall(self, package_name: Text, check: bool = None): argument 202 def list_packages(self) -> Sequence[Text]: 232 def get_test_app_apks(app_module_name: Text) -> Sequence[pathlib.Path]: argument [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntity.java | 22 import com.google.appengine.api.datastore.Text; 102 Text note) { in TestAcknowledgmentEntity() 139 Text note) { in TestAcknowledgmentEntity() 170 if (this.note != null) ackEntity.setUnindexedProperty(NOTE, new Text(this.note)); in toEntity() 208 Text note = null; in fromEntity() 209 if (e.hasProperty(NOTE)) note = (Text) e.getProperty(NOTE); in fromEntity() 247 Text note = null; in fromJson() 249 note = new Text(json.get(NOTE).getAsString()); in fromJson()
|
/test/app_compat/csuite/pylib/ |
D | csuite_test.py | 20 from typing import Any, Sequence, Text 29 def get_device_serial() -> Text: 66 def run_tests(args: Any, unittest_argv: Sequence[Text]) -> None: argument
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntityTest.java | 22 import com.google.appengine.api.datastore.Text; 64 Text note = new Text("note"); in testEntitySerialization() 131 Text note = new Text("note"); in testJsonSerialization()
|
/test/app_compat/csuite/tools/script/ |
D | generate_module.py | 25 from typing import IO, Set, Text 180 def write_module(template: string.Template, package_name: Text, argument 181 out_file: IO[bytes]) -> Text:
|