Home
last modified time | relevance | path

Searched refs:tool (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/aosp12/build/soong/java/config/
H A Dconfig.go181 func hostBinToolVariableWithSdkToolsPrebuilt(name, tool string) {
186 return ctx.Config().HostToolPath(ctx, tool).String()
191 func hostJavaToolVariableWithSdkToolsPrebuilt(name, tool string) {
194 return filepath.Join("prebuilts/sdk/tools/lib", tool+".jar")
196 return ctx.Config().HostJavaToolPath(ctx, tool+".jar").String()
201 func hostJNIToolVariableWithSdkToolsPrebuilt(name, tool string) {
210 return ctx.Config().HostJNIToolPath(ctx, tool).String()
215 func hostBinToolVariableWithBuildToolsPrebuilt(name, tool string) {
220 return ctx.Config().HostToolPath(ctx, tool).String()
238 key := android.NewCustomOnceKey(javaToolKey(tool))
[all …]
/aosp12/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/
H A DSpotFilter.kt40 fun filterInto(out: MotionEvent.PointerCoords, tool: Int): MotionEvent.PointerCoords {
41 lastTool = tool
65 if (PRECISE_STYLUS_INPUT && tool == MotionEvent.TOOL_TYPE_STYLUS) {
78 protected fun addInternal(c: MotionEvent.PointerCoords, tool: Int) {
89 filterInto(tmpSpot, tool)
93 fun add(cv: List<MotionEvent.PointerCoords>, tool: Int) {
95 addInternal(c, tool)
100 val tool = evt.getToolType(0) regex
103 addInternal(tmpSpot, tool)
106 addInternal(tmpSpot, tool)
/aosp12/system/bt/build/toolchain/gcc/
H A DBUILD.gn20 tool("cc") {
30 tool("cxx") {
40 tool("alink") {
53 tool("solink") {
77 tool("link") {
88 tool("stamp") {
93 tool("copy") {
/aosp12/frameworks/compile/libbcc/tests/debuginfo/
H A Dlit.site.cfg23 # Used to determine the absolute path of a tool. If env_var is set, it
26 # Determine which tool to use.
27 tool = os.getenv(env_var)
30 if tool and os.path.isfile(tool):
31 return tool
34 tool = lit.util.which(binary_name, PATH)
36 if not tool:
40 return os.path.abspath(tool)
H A DREADME12 output is verified against expected output by the llvm tool FileCheck.
52 To execute all the tests from this directory, use the llvm-lit tool:
56 The tool can be run from any directory.
/aosp12/system/bt/build/toolchain/clang/
H A DBUILD.gn39 tool("cc") {
49 tool("cxx") {
59 tool("alink") {
72 tool("solink") {
96 tool("link") {
107 tool("stamp") {
112 tool("copy") {
/aosp12/frameworks/compile/slang/lit-tests/
H A Dlit.cfg30 # Determine which tool to use.
31 tool = os.getenv(env_var)
34 if tool and os.path.isfile(tool):
35 return tool
39 tool = lit.util.which(binary_name, PATH)
41 if not tool:
45 return os.path.abspath(tool)
H A DREADME4 This directory contains tests for Slang that use the 'llvm-lit' testing tool.
31 To execute all the tests from this directory, use the Android llvm-lit tool
35 The tool can be run from any directory.
/aosp12/build/soong/genrule/
H A Dgenrule.go216 for _, tool := range g.properties.Tools {
217 tag := hostToolDependencyTag{label: tool}
218 if m := android.SrcIsModule(tool); m != "" {
219 tool = m
284 tool := ctx.OtherModuleName(module)
292 ctx.AddMissingDependencies([]string{tool})
294 ctx.ModuleErrorf("depends on disabled module %q", tool)
326 ctx.ModuleErrorf("%q is not a host tool provider", tool)
340 for _, tool := range g.properties.Tools {
341 if !seenTools[tool] {
[all …]
/aosp12/system/timezone/input_tools/android/tzlookup_generator/
H A DREADME.android1 This tool generates the tzlookup.xml file from the countryzones.txt (proto
3 tool uses ICU4J and IANA data to synthesize some time zone metadata.
5 Besides tzlookup.xml, the tool also generates a tzids.prototxt file
/aosp12/build/soong/android/
H A Drule_builder.go405 for _, tool := range c.tools {
406 tools[tool.String()] = tool
419 for _, tool := range toolsSet {
420 toolsList = append(toolsList, tool)
542 for _, tool := range tools {
544 From: proto.String(tool.String()),
545 To: proto.String(sboxPathForToolRel(r.ctx, tool)),
549 for _, tool := range c.packagedTools {
551 From: proto.String(tool.srcPath.String()),
553 Executable: proto.Bool(tool.executable),
[all …]
/aosp12/packages/modules/GeoTZ/s2storage/tools/
H A DAndroid.bp42 // A tool to dump a tzs2 file as text for debugging.
51 // A tool to dump a block file as text for debugging.
60 // A tool to create a tzs2 file from protos.
/aosp12/art/runtime/
H A Dprebuilt_tools_test.cc32 for (const char* tool : tools) { in CheckToolsExist() local
33 std::string path = GetAndroidTool(tool, isa); in CheckToolsExist()
/aosp12/art/test/testrunner/
H A Denv.py133 for tool in ['dx', 'smali', 'jasmin', 'd8']:
134 os.environ.setdefault(tool.upper(), HOST_OUT_EXECUTABLES + '/' + tool)
/aosp12/system/sepolicy/tools/
H A DREADME7 A tool to build SELinux policy for multiple targets in parallel.
51 A tool to help modify an existing mac_permissions.xml with additional app
64 A tool for auditing a sepolicy file for any allow rule that grants
71 A tool for performing various kinds of analysis on a sepolicy
/aosp12/system/timezone/debug_tools/host/
H A DREADME.android5 - A tool that takes a tzdata file and splits it into component tzfiles,
11 other tzdata files easily using your favourite text diffing tool.
14 - A tool that visualizes time zones, specifically when time zones "sync up"
/aosp12/frameworks/base/tools/validatekeymaps/
H A DAndroid.bp4 // Keymap validation tool.
43 // This tool is prebuilt if we're doing an app-only build.
/aosp12/art/build/
H A Dmakevars.go73 for _, tool := range prebuiltToolsForTests {
74 src := filepath.Join(clang_path, "/", tool)
/aosp12/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
H A DProtoLogGroupReader.kt17 package com.android.protolog.tool
19 import com.android.protolog.tool.Constants.ENUM_VALUES_METHOD
/aosp12/frameworks/base/tools/obbtool/
H A DAndroid.bp34 // This tool is prebuilt if we're doing an app-only build.
54 // This tool is prebuilt if we're doing an app-only build.
/aosp12/system/timezone/input_tools/android/zone_compactor/
H A DAndroid.bp23 // A static library for the zone_compactor host tool.
24 // The tool can be run with java -jar zone_compactor.jar
/aosp12/frameworks/base/tools/protologtool/
H A DREADME.md3 Code transformation tool and viewer for ProtoLog.
87 * a code processing tool.
100 Binary logs are saved as Protocol Buffers file. They can be read using the ProtoLog tool or special…
111 …ging groups or statements you should build the project and follow instructions printed by the tool.
/aosp12/frameworks/av/media/libaudioprocessing/tests/
H A DAndroid.bp47 // audio mixer test tool
58 // build audio resampler test tool
/aosp12/system/timezone/input_tools/android/telephonylookup_generator/
H A DAndroid.bp34 // The telephonylookup_generator host tool.
48 // Tests for the telephonylookup_generator host tool.
/aosp12/packages/modules/GeoTZ/data_pipeline/
H A DAndroid.bp105 // geotz_createtzs2file tool.
121 // Dev / debug tool: Prints basic stats about TzS2Range files. See the Java class for details.
128 // Dev / debug tool: Prints basic stats about TzS2CellUnion files. See the Java class for details.

12345678910>>...12