HomeSort by relevance Sort by last modified time
    Searched refs:tool (Results 151 - 175 of 459) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/tools/common/proguard/proguard4.7/bin/
retrace.bat 3 REM Start-up script for Retrace -- companion tool for ProGuard, free class file
  /sdk/files/proguard/bin/
retrace.bat 3 REM Start-up script for Retrace -- companion tool for ProGuard, free class file
  /external/linux-tools-perf/src/tools/perf/util/
event.c 94 static pid_t perf_event__synthesize_comm(struct perf_tool *tool,
125 if (process(tool, event, &synth_sample, machine) != 0)
158 if (process(tool, event, &synth_sample, machine) != 0) {
169 static int perf_event__synthesize_mmap_events(struct perf_tool *tool,
238 if (process(tool, event, &synth_sample, machine) != 0) {
248 int perf_event__synthesize_modules(struct perf_tool *tool,
294 if (process(tool, event, &synth_sample, machine) != 0) {
308 struct perf_tool *tool,
311 pid_t tgid = perf_event__synthesize_comm(tool, comm_event, pid, full,
315 return perf_event__synthesize_mmap_events(tool, mmap_event, pid, tgid
    [all...]
build-id.c 17 #include "tool.h"
19 int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused,
45 static int perf_event__exit_del_thread(struct perf_tool *tool __maybe_unused,
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 167 std::string tool = OptCmd; local
170 tool = *Path;
174 if (tool.empty()) {
186 Prog = tool;
201 Args.push_back(tool.c_str());
203 Args.push_back(tool.c_str());
Android.mk 7 # bugpoint command line tool
  /external/llvm/tools/llc/
Android.mk 7 # llc command line tool (common)
75 # llc command line tool (host)
103 # llc command line tool (target)
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExprTest.java 17 package android.databinding.tool.expr;
22 import android.databinding.tool.LayoutBinder;
23 import android.databinding.tool.MockLayoutBinder;
24 import android.databinding.tool.reflection.ModelAnalyzer;
25 import android.databinding.tool.reflection.ModelClass;
26 import android.databinding.tool.reflection.java.JavaAnalyzer;
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
Scope.java 17 package android.databinding.tool.processing;
19 import android.databinding.tool.processing.scopes.FileScopeProvider;
20 import android.databinding.tool.processing.scopes.LocationScopeProvider;
21 import android.databinding.tool.processing.scopes.ScopeProvider;
22 import android.databinding.tool.store.Location;
23 import android.databinding.tool.util.Preconditions;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
Expr.java 17 package android.databinding.tool.expr;
21 import android.databinding.tool.processing.ErrorMessages;
22 import android.databinding.tool.processing.Scope;
23 import android.databinding.tool.processing.scopes.LocationScopeProvider;
24 import android.databinding.tool.processing.scopes.ScopeProvider;
25 import android.databinding.tool.reflection.ModelAnalyzer;
26 import android.databinding.tool.reflection.ModelClass;
27 import android.databinding.tool.store.Location;
28 import android.databinding.tool.util.L;
29 import android.databinding.tool.util.Preconditions
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessExpressions.java 24 import android.databinding.tool.CompilerChef;
25 import android.databinding.tool.reflection.SdkUtil;
26 import android.databinding.tool.store.ResourceBundle;
27 import android.databinding.tool.util.GenerationalClassUtil;
28 import android.databinding.tool.util.L;
ProcessBindable.java 21 import android.databinding.tool.CompilerChef.BindableHolder;
22 import android.databinding.tool.util.GenerationalClassUtil;
23 import android.databinding.tool.util.L;
24 import android.databinding.tool.util.Preconditions;
25 import android.databinding.tool.writer.BRWriter;
26 import android.databinding.tool.writer.JavaFileWriter;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationAnalyzer.java 16 package android.databinding.tool.reflection.annotation;
18 import android.databinding.tool.reflection.ModelAnalyzer;
19 import android.databinding.tool.reflection.ModelClass;
20 import android.databinding.tool.reflection.TypeUtil;
21 import android.databinding.tool.util.L;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CSharp3Target.java 35 import org.antlr.Tool;
36 import org.antlr.tool.Grammar;
82 protected void genRecognizerFile(Tool tool, CodeGenerator generator, Grammar grammar, ST outputFileST) throws IOException
104 super.genRecognizerFile(tool, generator, grammar, outputFileST);
  /external/llvm/utils/crosstool/ARM/
build-install-linux.sh 123 for tool in ${CROSS_TARGET_AS} ${CROSS_TARGET_LD}; do
124 if [[ ! -e $tool ]]; then
125 echo "${tool} not found; exiting."
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_posix_libcdep.cc 386 "binary or other known tool.\n", path);
417 if (SymbolizerTool *tool = InternalSymbolizer::get(allocator)) {
419 list->push_back(tool);
422 if (SymbolizerTool *tool = LibbacktraceSymbolizer::get(allocator)) {
424 list->push_back(tool);
428 if (SymbolizerTool *tool = ChooseExternalSymbolizer(allocator)) {
429 list->push_back(tool);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 16 package android.databinding.tool.reflection;
20 import android.databinding.tool.reflection.Callable.Type;
21 import android.databinding.tool.util.L;
27 import static android.databinding.tool.reflection.Callable.CAN_BE_INVALIDATED;
28 import static android.databinding.tool.reflection.Callable.DYNAMIC;
29 import static android.databinding.tool.reflection.Callable.STATIC;
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
CodeGenUtil.kt 14 package android.databinding.tool.writer
16 import android.databinding.tool.expr.*
17 import android.databinding.tool.reflection.Callable
  /bootable/recovery/edify/
Android.mk 16 # Build the host-side command line tool
  /external/linux-tools-perf/src/tools/perf/
builtin-record.c 23 #include "util/tool.h"
65 struct perf_tool tool; member in struct:perf_record
105 static int process_synthesized_event(struct perf_tool *tool,
110 struct perf_record *rec = container_of(tool, struct perf_record, tool);
290 struct perf_tool *tool = data; local
299 err = perf_event__synthesize_modules(tool, process_synthesized_event,
309 err = perf_event__synthesize_kernel_mmap(tool, process_synthesized_event,
312 err = perf_event__synthesize_kernel_mmap(tool, process_synthesized_event,
354 struct perf_tool *tool = &rec->tool local
    [all...]
builtin-report.c 28 #include "util/tool.h"
41 struct perf_tool tool; member in struct:perf_report
73 static int perf_report__add_mem_hist_entry(struct perf_tool *tool,
80 struct perf_report *rep = container_of(tool, struct perf_report, tool);
166 static int perf_report__add_branch_hist_entry(struct perf_tool *tool,
172 struct perf_report *rep = container_of(tool, struct perf_report, tool);
297 static int process_sample_event(struct perf_tool *tool,
303 struct perf_report *rep = container_of(tool, struct perf_report, tool)
    [all...]
  /external/llvm/tools/lli/
Android.mk 7 # lli command line tool
  /external/llvm/tools/llvm-ar/
Android.mk 7 # llvm-ar command line tool
  /external/llvm/tools/llvm-c-test/
Android.mk 7 # llvm-c-test command line tool
  /external/llvm/tools/llvm-config/
Android.mk 6 # llvm-config command line tool

Completed in 471 milliseconds

1 2 3 4 5 67 8 91011>>