HomeSort by relevance Sort by last modified time
    Searched refs:traces (Results 1 - 25 of 35) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
rule-tracing.rb 16 @traces = []
20 attr_accessor :stack, :traces
23 @traces << ">#{rule_name}"
27 @traces << "<#{rule_name}"
33 @traces = []
37 attr_accessor :stack, :traces
40 @traces << ">#{rule_name}"
44 @traces << "<#{rule_name}"
62 lexer.traces.should == [
68 parser.traces.should == [
    [all...]
  /dalvik/tools/dmtracedump/
dmtracedump.pl 4 @traces = grep { /.*\.dmtrace\.data/ } readdir(DIR);
6 foreach (@traces)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t044trace.py 16 self.traces = []
20 self.traces.append('>'+ruleName)
24 self.traces.append('<'+ruleName)
39 self.traces = []
43 self.traces.append('>'+ruleName)
47 self.traces.append('<'+ruleName)
68 lexer.traces,
76 parser.traces,
t047treeparser.py 13 self.traces = []
17 self.traces.append('>'+ruleName)
21 self.traces.append('<'+ruleName)
73 walker.traces,
t052import.py 31 self.traces.append('>'+ruleName)
35 self.traces.append('<'+ruleName)
58 self.traces.append('>'+ruleName)
62 self.traces.append('<'+ruleName)
    [all...]
t053hetero.py 22 self.traces.append('>'+ruleName)
26 self.traces.append('<'+ruleName)
49 self.traces.append('>'+ruleName)
53 self.traces.append('<'+ruleName)
t049treeparser.py 21 self.traces.append('>'+ruleName)
25 self.traces.append('<'+ruleName)
t057autoAST.py 23 self.traces.append('>'+ruleName)
27 self.traces.append('<'+ruleName)
50 self.traces.append('>'+ruleName)
54 self.traces.append('<'+ruleName)
t058rewriteAST.py 23 self.traces.append('>'+ruleName)
27 self.traces.append('<'+ruleName)
50 self.traces.append('>'+ruleName)
54 self.traces.append('<'+ruleName)
    [all...]
  /dalvik/tests/063-process-manager/src/
Main.java 26 Map<Thread, StackTraceElement[]> traces = Thread.getAllStackTraces(); local
30 traces.entrySet()) {
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 90 StackTraceElement[] traces = t1.getStackTrace(); local
91 StackTraceElement trace = traces[traces.length - 2];
109 // Expect to see the traces of all threads (not just t2)
110 assertTrue("Must have traces for all threads", visibleTraces.get() > 1);
  /external/libnfc-nxp/
Android.mk 113 # Uncomment for DAL traces
116 # Uncomment for LLC traces
119 # Uncomment for LLCP traces
122 # Uncomment for HCI traces
  /external/valgrind/tsan/
ts_race_verifier.cc 47 // concurrent traces
48 vector<uintptr_t> traces; member in struct:PossibleRace
78 // used to reduce the sleep time for hot traces
106 for (vector<uintptr_t>::iterator it2 = race->traces.begin();
107 it2 != race->traces.end(); ++it2) {
130 /* Build and print a race report for a data address. Does not print stack traces
305 race->traces.push_back(addr);
  /external/blktrace/
blkrawverify.c 39 static struct trace_info traces[] = { variable in typeref:struct:trace_info
54 #define N_TRACES (sizeof(traces) / sizeof(struct trace_info))
94 sprintf(buf2, "| %s ", traces[i].string);
215 * skip notify traces, they don't have valid sequences
259 fprintf(ofp, "%8s %d traces\n", "", nbad_trace);
  /external/blktrace/btt/doc/
btt.tex 41 form of multiple individual traces per IO executed during the traced
73 parameters you want. You must save the traces to disk in this step,
94 files into one time-ordered stream of traces for all devices.
141 btt to refer to issue traces. Note that an I is used to refer to
142 \emph{insert} traces.}.
154 \item \emph{Q2Q} which measures the time between queue traces
162 = {Q2C}$ however, typically there are multiple queue traces that
354 \item[Per Process] As traces are emitted, they are tagged with the
358 provided which breaks down the traces according to process ID (name).
364 or kjournald for example). Similarly, completion traces are rarel
    [all...]
  /external/v8/test/mjsunit/
stack-traces-2.js 28 // Flags: --builtins-in-stack-traces
81 // builtin. Should not be omitted with the --builtins-in-stack-traces flag.
  /cts/tests/tests/webkitsecurity/generate/
postprocess.py 183 traces = decode_crashes(crashes)
184 output(tests, traces)
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 37 --num-callers=<number> show <number> callers in stack traces [12]
40 --show-below-main=no|yes continue stack traces below main() [no]
cmdline2.stdout.exp 37 --num-callers=<number> show <number> callers in stack traces [12]
40 --show-below-main=no|yes continue stack traces below main() [no]
  /external/v8/test/mjsunit/compiler/
regress-stacktrace-methods.js 30 // Test stack traces with method calls.
regress-stacktrace.js 28 // Test correctness of stack traces with global functions.
  /external/opencv/cv/src/
cvsurf.cpp 105 CvMat** traces = (CvMat**)cvStackAlloc(totalLayers*sizeof(traces[0])); local
136 traces[k] = cvCreateMat( hessian_rows, hessian_cols, CV_32FC1 );
145 float* trace = traces[k]->data.fl;
197 const float* trace = traces[k]->data.fl + i*hessian_cols;
246 cvReleaseMat( &traces[k] );
  /external/blktrace/btreplay/doc/
btreplay.tex 57 traces from the kernel for each IO processed by the block IO layer. The
58 traces provide a complete timeline for each IO processed, including
69 \item Run \texttt{blktrace} to collect traces. Here you specify the
71 the only traces you are interested in are \emph{QUEUE} requests --
72 thus, to save system resources (including storage for traces), one could
79 utility (thus saving all traces over the complete workload).
81 \item You extract the pertinent IO information from the traces saved by
250 [ -F : --find-traces ] Default: Off
277 \subsubsection{\texttt{-F} or \texttt{--find-traces}\\Find Trace Files
364 traces on CPU 0.
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 589 @init { @traces = [] }
591 attr_reader :traces
594 @traces << ">#{rule_name}"
598 @traces << "<#{rule_name}"
705 tree_parser.traces.should == %w(
  /sdk/emulator/opengl/
Android.mk 27 # Uncomment the following line if you want to enable debug traces

Completed in 684 milliseconds

1 2