Searched refs:trace (Results 226 - 250 of 423) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_regions.c73 void *trace[DEBUG_BACKTRACE_SIZE]; local
78 traceSize = backtrace(trace, DEBUG_BACKTRACE_SIZE);
79 strings = backtrace_symbols(trace, traceSize);
88 * the trace to avoid really long lines.
/external/chromium_org/tools/gn/
H A Dfunction_exec_script.cc21 #include "tools/gn/trace.h"
304 ScopedTrace trace(TraceItem::TRACE_SCRIPT_EXECUTE, script_source.value());
305 trace.SetToolchain(settings->toolchain_label());
339 trace.SetCommandLine(cmdline);
H A Dninja_toolchain_writer.cc15 #include "tools/gn/trace.h"
48 ScopedTrace trace(TraceItem::TRACE_FILE_WRITE, FilePathToUTF8(ninja_file));
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h253 ComplexScalar trace = t.coeff(0,0) + t.coeff(1,1); local
254 ComplexScalar eival1 = (trace + disc) / RealScalar(2);
255 ComplexScalar eival2 = (trace - disc) / RealScalar(2);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_regions.c73 void *trace[DEBUG_BACKTRACE_SIZE]; local
78 traceSize = backtrace(trace, DEBUG_BACKTRACE_SIZE);
79 strings = backtrace_symbols(trace, traceSize);
88 * the trace to avoid really long lines.
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_regions.c73 void *trace[DEBUG_BACKTRACE_SIZE]; local
78 traceSize = backtrace(trace, DEBUG_BACKTRACE_SIZE);
79 strings = backtrace_symbols(trace, traceSize);
88 * the trace to avoid really long lines.
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.c73 void *trace[DEBUG_BACKTRACE_SIZE]; local
78 traceSize = backtrace(trace, DEBUG_BACKTRACE_SIZE);
79 strings = backtrace_symbols(trace, traceSize);
88 * the trace to avoid really long lines.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dmain.rb381 @trace = options.fetch( :trace, nil )
413 opt.on( '--trace', '-t', "print rule trace instead of opening a debug socket" ) do
414 @trace = true
449 if @trace
H A Dtask.rb115 :trace, :profile, :compile_options,
138 @trace = options.fetch( :trace, false )
213 parts << '-trace' if @trace
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_screen.c42 static boolean trace = FALSE; variable
274 /* TODO trace call */
293 /* TODO trace call */
443 return trace;
448 trace = TRUE;
451 return trace;
/external/jdiff/src/jdiff/
H A DHTMLReportGenerator.java197 if (trace) System.out.println("Package " + pkgName + " was removed.");
210 if (trace) System.out.println("Package " + pkgName + " was added.");
225 if (trace) System.out.println("Package " + pkgName + " was changed.");
356 if (trace) System.out.println("Class/Interface " + className + " was removed.");
386 if (trace) System.out.println("Class/Interface " + className + " was added.");
417 if (trace) System.out.println("Package " + pkgDiff.name_ + ", class/Interface " + className + " was changed.");
558 if (trace) System.out.println("Constructor " + id + " was removed.");
574 if (trace) System.out.println("Constructor " + id + " was added.");
588 if (trace) System.out.println("Constructor for " + className +
610 if (trace) Syste
2161 private static final boolean trace = false; field in class:HTMLReportGenerator
[all...]
/external/junit/src/junit/textui/
H A DResultPrinter.java74 // before we get to the stack trace.
79 getWriter().print(BaseTestRunner.getFilteredTrace(booBoo.trace()));
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_screen.c42 static boolean trace = FALSE; variable
274 /* TODO trace call */
293 /* TODO trace call */
443 return trace;
448 trace = TRUE;
451 return trace;
/external/opencv/cv/src/
H A D_cvmatrix.h201 CV_INLINE void icvTrace_32f( const float* src, int w, int h, float* trace )
207 *trace = (float)sum;
213 CV_INLINE void icvTrace_64d( const double* src, int w, int h, double* trace )
219 *trace = sum;
/external/qemu/android/
H A Dcmdline-options.h100 OPT_PARAM( trace, "<name>", "enable code profiling (F9 to start)" )
/external/valgrind/main/drd/
H A Ddrd_clientobj.h158 void DRD_(clientobj_set_trace)(const Bool trace);
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... boolean fork private String messageFormatName private boolean diagnostic private boolean trace private boolean traceParser private boolean traceLexer private java.io ...
/external/blktrace/
H A Dblkrawverify.c87 unsigned int trace = (action >> BLK_TC_SHIFT) & 0xffff; local
92 if (trace & (1 << i)) {
186 INC_BAD("bad trace");
191 fprintf(stderr, "unsupported trace version\n");
/external/chromium_org/base/debug/
H A Dcrash_logging.cc97 const StackTrace& trace) {
99 const void* const* addresses = trace.Addresses(&count);
96 SetCrashKeyToStackTrace(const base::StringPiece& key, const StackTrace& trace) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar ... updatechecker.IUpdateChecker { public static boolean DEBUG public static boolean TRACE private java.util.HashMap checkers private final org ...
/external/junit/src/junit/runner/
H A DBaseTestRunner.java269 * Returns a filtered stack trace
276 String trace= buffer.toString();
277 return BaseTestRunner.getFilteredTrace(trace);
/external/chromium_org/courgette/
H A Dadjustment_method_2.cc188 std::vector<uint32> positions_; // Offsets into the trace of references.
375 static Shingle* Find(const Trace& trace, size_t position, argument
378 owning_set->insert(Shingle(trace, position));
409 Shingle(const Trace& trace, size_t exemplar_position) argument
410 : trace_(trace),
802 AssignmentProblem(const Trace& trace, size_t model_end) argument
803 : trace_(trace),
806 << trace.size();
850 << trace_.size() << " trace length "
1197 // The trace vecto
1276 ReferenceLabel(Trace* trace, Label* label, bool is_model) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg89 fileName, ANTLRVersion, generatedTimestamp, trace,
179 trace,
340 <if(trace)>System.out.println("enter <ruleName> "+input.LT(1)+" failed="+failed+" backtracking="+backtracking);<endif>
341 <if(trace)>
415 <if(trace)>
416 antlr3::Tracer trace(this,"<ruleName>");
442 <if(trace)>System.out.println("exit <ruleName> "+input.LT(1)+" failed="+failed+" backtracking="+backtracking);<endif>
520 <if(trace)>
521 antlr3::Tracer trace(this,"<ruleName>");
/external/guava/guava/lib/
H A Djdiff.jar ... API oldAPI_ private static jdiff.API newAPI_ private boolean trace public void " href="/4.4.3_r1.1 ...
/external/valgrind/main/exp-sgcheck/
H A Dh_main.c72 /*--- Debug/trace options ---*/
511 Bool trace; member in struct:__anon28406
593 if (pce->trace) {
640 pce.trace = verboze;

Completed in 618 milliseconds

1234567891011>>