Home
last modified time | relevance | path

Searched refs:strs (Results 1 – 5 of 5) sorted by relevance

/development/vndk/tools/definition-tool/tests/
Dtest_command_deps_insight.py24 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 …]
Dtest_dex_file.py98 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/
Dinsight-data.js2 var strs = [
23 insight.init(document, strs, mods);
/development/vndk/tools/sourcedr/ninja/
Dninja.py169 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/
Dvndk_definition_tool.py3595 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) + ''';