Searched refs:strs (Results 1 – 5 of 5) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | test_command_deps_insight.py | 24 def _get_module(cls, strs, mods, path): argument 26 if strs[mod[cls._PATH_FIELD]] == path: 32 def _get_module_deps(cls, strs, mods, path): argument 33 mod = cls._get_module(strs, mods, path) 36 result.update(strs[mods[x][cls._PATH_FIELD]] for x in deps) 41 def _get_module_users(cls, strs, mods, path): argument 42 mod = cls._get_module(strs, mods, path) 44 return set(strs[mods[x][cls._PATH_FIELD]] for x in users) 76 strs, mods = DepsInsightCommand.serialize_data( 80 deps = self._get_module_deps(strs, mods, libsystem.path) [all …]
|
D | test_dex_file.py | 98 strs = set(DexFileReader.enumerate_dex_strings_buf(buf)) 100 self.assertIn(b'hello', strs) 101 self.assertIn(b'world', strs) 117 strs = set(DexFileReader.enumerate_dex_strings_apk(zip_file)) 119 self.assertIn(b'hello', strs) 120 self.assertIn(b'world', strs) 121 self.assertIn(b'foo', strs) 122 self.assertIn(b'bar', strs)
|
/development/vndk/tools/definition-tool/assets/insight/ |
D | insight-data.js | 2 var strs = [ 23 insight.init(document, strs, mods);
|
/development/vndk/tools/sourcedr/ninja/ |
D | ninja.py | 169 def eval_path_strings(strs, env): argument 179 return [intern(os.path.normpath(eval_string(s, env))) for s in strs]
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 3595 strs = [] 3605 idx = len(strs) 3607 strs.append(s) 3656 return (strs, mods) 3670 strs, mods = self.serialize_data( 3683 var strs = ''' + json.dumps(strs) + ''';
|