Home
last modified time | relevance | path

Searched refs:debug (Results 1 – 25 of 2900) sorted by relevance

12345678910>>...116

/third_party/glslang/glslang/MachineIndependent/
DintermOut.cpp134 infoSink.debug << node->getLoc().string << ":"; in OutputTreeText()
136 infoSink.debug << node->getLoc().line; in OutputTreeText()
138 infoSink.debug << "? "; in OutputTreeText()
141 infoSink.debug << " "; in OutputTreeText()
160 …case EOpAssign: out.debug << "move second child to first child"; break; in visitBinary()
161 …case EOpAddAssign: out.debug << "add second child into first child"; break; in visitBinary()
162 …case EOpSubAssign: out.debug << "subtract second child into first child"; break; in visitBinary()
163 …case EOpMulAssign: out.debug << "multiply second child into first child"; break; in visitBinary()
164 …case EOpVectorTimesMatrixAssign: out.debug << "matrix mult second child into first child"; break; in visitBinary()
165 …case EOpVectorTimesScalarAssign: out.debug << "vector scale second child into first child"; break; in visitBinary()
[all …]
/third_party/ltp/tools/
Drestore_kernel_faults_default.sh35 echo 0 > /sys/kernel/debug/fail_io_timeout/reject-end
36 echo 0 > /sys/kernel/debug/fail_io_timeout/reject-start
37 echo 4294967295 > /sys/kernel/debug/fail_io_timeout/require-end
38 echo 0 > /sys/kernel/debug/fail_io_timeout/require-start
39 echo 32 > /sys/kernel/debug/fail_io_timeout/stacktrace-depth
40 echo N > /sys/kernel/debug/fail_io_timeout/task-filter
41 echo 2 > /sys/kernel/debug/fail_io_timeout/verbose
42 echo 0 > /sys/kernel/debug/fail_io_timeout/space
43 echo 1 > /sys/kernel/debug/fail_io_timeout/times
44 echo 1 > /sys/kernel/debug/fail_io_timeout/interval
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/
Dgenerate_shaders.bat13 set debug=0 variable
15 if "%1" == "debug" (
16 set debug=1 variable
19 set debug=0 variable
24 …gh2D11.hlsl VS_Passthrough2D vs_4_0_level_9_3 compiled\passthrough2d11vs.h %debug%
25 …gh2D11.hlsl PS_PassthroughRGBA2D ps_4_0_level_9_3 compiled\passthroughrgba2d11ps.h %debug%
26 …gh2D11.hlsl PS_PassthroughA2D ps_4_0_level_9_3 compiled\passthrougha2d11ps.h %debug%
27 …gh2D11.hlsl PS_PassthroughRGBA2DMS ps_4_1 compiled\passthroughrgba2dms11ps.h %debug%
28 …gh2D11.hlsl PS_PassthroughRGB2D ps_4_0_level_9_3 compiled\passthroughrgb2d11ps.h %debug%
29 …gh2D11.hlsl PS_PassthroughRG2D ps_4_0_level_9_3 compiled\passthroughrg2d11ps.h %debug%
[all …]
/third_party/node/deps/v8/src/inspector/
Dv8-console.h27 class V8Console : public v8::debug::ConsoleDelegate {
67 void Debug(const v8::debug::ConsoleCallArguments&,
68 const v8::debug::ConsoleContext& consoleContext) override;
69 void Error(const v8::debug::ConsoleCallArguments&,
70 const v8::debug::ConsoleContext& consoleContext) override;
71 void Info(const v8::debug::ConsoleCallArguments&,
72 const v8::debug::ConsoleContext& consoleContext) override;
73 void Log(const v8::debug::ConsoleCallArguments&,
74 const v8::debug::ConsoleContext& consoleContext) override;
75 void Warn(const v8::debug::ConsoleCallArguments&,
[all …]
Dv8-debugger.cc40 class MatchPrototypePredicate : public v8::debug::QueryObjectPredicate {
50 if (!v8::debug::GetCreationContext(object).ToLocal(&objectContext)) { in Filter()
82 m_pauseOnExceptionsState(v8::debug::NoBreakOnException) {} in V8Debugger()
94 v8::debug::SetDebugDelegate(m_isolate, this); in enable()
96 v8::debug::ChangeBreakOnException(m_isolate, v8::debug::NoBreakOnException); in enable()
97 m_pauseOnExceptionsState = v8::debug::NoBreakOnException; in enable()
99 v8::debug::TierDownAllModulesPerIsolate(m_isolate); in enable()
124 v8::debug::TierUpAllModulesPerIsolate(m_isolate); in disable()
126 v8::debug::SetDebugDelegate(m_isolate, nullptr); in disable()
142 v8::PersistentValueVector<v8::debug::Script> scripts(m_isolate); in getCompiledScripts()
[all …]
/third_party/mesa3d/src/mesa/main/
Ddebug_output.c395 struct gl_debug_state *debug; in debug_create() local
398 debug = CALLOC_STRUCT(gl_debug_state); in debug_create()
399 if (!debug) in debug_create()
402 debug->Groups[0] = malloc(sizeof(*debug->Groups[0])); in debug_create()
403 if (!debug->Groups[0]) { in debug_create()
404 free(debug); in debug_create()
411 debug_namespace_init(&debug->Groups[0]->Namespaces[s][t]); in debug_create()
414 return debug; in debug_create()
421 debug_is_group_read_only(const struct gl_debug_state *debug) in debug_is_group_read_only() argument
423 const GLint gstack = debug->CurrentGroup; in debug_is_group_read_only()
[all …]
/third_party/node/deps/v8/src/d8/
Dd8-console.h14 class D8Console : public debug::ConsoleDelegate {
19 void Assert(const debug::ConsoleCallArguments& args,
20 const v8::debug::ConsoleContext&) override;
21 void Log(const debug::ConsoleCallArguments& args,
22 const v8::debug::ConsoleContext&) override;
23 void Error(const debug::ConsoleCallArguments& args,
24 const v8::debug::ConsoleContext&) override;
25 void Warn(const debug::ConsoleCallArguments& args,
26 const v8::debug::ConsoleContext&) override;
27 void Info(const debug::ConsoleCallArguments& args,
[all …]
Dd8-console.cc13 const debug::ConsoleCallArguments& args) { in WriteToFile()
40 void D8Console::Assert(const debug::ConsoleCallArguments& args, in Assert()
41 const v8::debug::ConsoleContext&) { in Assert()
49 void D8Console::Log(const debug::ConsoleCallArguments& args, in Log()
50 const v8::debug::ConsoleContext&) { in Log()
54 void D8Console::Error(const debug::ConsoleCallArguments& args, in Error()
55 const v8::debug::ConsoleContext&) { in Error()
59 void D8Console::Warn(const debug::ConsoleCallArguments& args, in Warn()
60 const v8::debug::ConsoleContext&) { in Warn()
64 void D8Console::Info(const debug::ConsoleCallArguments& args, in Info()
[all …]
/third_party/node/deps/npm/node_modules/cli-table3/src/
Ddebug.js4 const debug = (msg, min) => { function
10 debug.WARN = 1;
11 debug.INFO = 2;
12 debug.DEBUG = 3;
14 debug.reset = () => {
18 debug.setDebugLevel = (v) => {
22 debug.warn = (msg) => debug(msg, debug.WARN);
23 debug.info = (msg) => debug(msg, debug.INFO);
24 debug.debug = (msg) => debug(msg, debug.DEBUG); function
26 debug.debugMessages = () => messages;
[all …]
Dtable.js1 const debug = require('./debug'); constant
12 enumerable: options.debug,
15 if (options.debug) {
16 switch (typeof options.debug) {
18 debug.setDebugLevel(debug.WARN);
21 debug.setDebugLevel(options.debug);
24 debug.setDebugLevel(parseInt(options.debug, 10));
27 debug.setDebugLevel(debug.WARN);
28debug.warn(`Debug option is expected to be boolean, number, or string. Received a ${typeof options…
32 return debug.debugMessages();
[all …]
/third_party/typescript/tests/baselines/reference/
DreferencesIsAvailableThroughGlobalNoCrash.baseline.jsonc1 // === /packages/playwright-core/bundles/utils/node_modules/@types/debug/index.d.ts ===
2 // declare var [|debug|]: [|debug|].Debug & { debug: [|debug|].Debug; default: [|debug|].Debug };
3 // [|export|] = [|debug|];
4 // export as namespace debug;
5 // declare namespace [|debug|] {
12 … export const debug: typeof import('[|../bundles/utils/node_modules//*FIND ALL REFS*/@types/debug|…
19 "fileName": "/packages/playwright-core/bundles/utils/node_modules/@types/debug/index.d.ts",
21 "name": "module \"/packages/playwright-core/bundles/utils/node_modules/@types/debug/index\"",
36 "text": "\"/packages/playwright-core/bundles/utils/node_modules/@types/debug/index\"",
47 "fileName": "/packages/playwright-core/bundles/utils/node_modules/@types/debug/index.d.ts",
[all …]
DexportNestedNamespaces2.symbols36 import * as debug from './mod'
37 >debug : Symbol(debug, Decl(use.js, 0, 6))
39 debug.formatters.j
40 >debug.formatters : Symbol(debug.formatters, Decl(mod.js, 0, 0))
41 >debug : Symbol(debug, Decl(use.js, 0, 6))
42 >formatters : Symbol(debug.formatters, Decl(mod.js, 0, 0))
44 var one = debug.formatters.o(1)
46 >debug.formatters : Symbol(debug.formatters, Decl(mod.js, 0, 0))
47 >debug : Symbol(debug, Decl(use.js, 0, 6))
48 >formatters : Symbol(debug.formatters, Decl(mod.js, 0, 0))
/third_party/typescript/tests/baselines/reference/user/
Ddebug.log3 node_modules/debug/src/browser.js(3,100): error TS2630: Cannot assign to '_typeof' because it is a …
4 node_modules/debug/src/browser.js(3,165): error TS2630: Cannot assign to '_typeof' because it is a …
5 node_modules/debug/src/browser.js(34,74): error TS2339: Property 'type' does not exist on type 'Pro…
6 node_modules/debug/src/browser.js(34,112): error TS2339: Property '__nwjs' does not exist on type '…
7 node_modules/debug/src/browser.js(45,138): error TS2551: Property 'WebkitAppearance' does not exist…
8 node_modules/debug/src/browser.js(46,70): error TS2339: Property 'firebug' does not exist on type '…
9 node_modules/debug/src/browser.js(46,96): error TS2339: Property 'exception' does not exist on type…
10 node_modules/debug/src/browser.js(100,148): error TS2345: Argument of type 'IArguments' is not assi…
11 node_modules/debug/src/browser.js(152,13): error TS2552: Cannot find name 'LocalStorage'. Did you m…
12 node_modules/debug/src/browser.js(177,45): error TS2571: Object is of type 'unknown'.
[all …]
/third_party/ltp/testcases/kernel/sched/pthreads/
Dpth_str01.c46 int debug = 0; variable
115 debug = 1; in parse_args()
175 if (debug) { in synchronize_children()
197 if (debug) { in synchronize_children()
207 if (debug) { in synchronize_children()
213 if (debug) { in synchronize_children()
219 if (debug) { in synchronize_children()
226 if (debug) { in synchronize_children()
244 if (debug) { in synchronize_children()
251 if (debug) { in synchronize_children()
[all …]
Dpth_str03.c65 int debug = 0; variable
134 debug = 1; in parse_args()
194 if (debug) { in synchronize_children()
212 if (debug) { in synchronize_children()
220 if (debug) { in synchronize_children()
226 if (debug) { in synchronize_children()
232 if (debug) { in synchronize_children()
239 if (debug) { in synchronize_children()
253 if (debug) { in synchronize_children()
260 if (debug) { in synchronize_children()
[all …]
/third_party/node/test/parallel/
Dtest-http-early-hints.js5 const debug = require('node:util').debuglog('test'); constant
13 debug('Server sending early hints...');
18 debug('Server sending full response...');
27 debug('Client sending request...');
43 debug('Got full response.');
57 debug('Server sending early hints...');
66 debug('Server sending full response...');
74 debug('Client sending request...');
94 debug('Got full response.');
108 debug('Server sending early hints...');
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglquery.h56 GstGLAsyncDebug debug; member
84 GST_GL_ASYNC_CAT_LEVEL_LOG_valist (&(query)->debug, cat, level, object, format, varargs); \
85 gst_gl_async_debug_freeze (&(query)->debug); \
87 gst_gl_async_debug_thaw (&(query)->debug); \
92 GST_GL_ASYNC_CAT_LEVEL_LOG_valist (&(query)->debug, cat, level, object, format, varargs); \
93 gst_gl_async_debug_freeze (&(query)->debug); \
95 gst_gl_async_debug_thaw (&(query)->debug); \
102 GST_GL_ASYNC_CAT_LEVEL_LOG (&(query)->debug, cat, level, object, format, __VA_ARGS__); \
103 gst_gl_async_debug_freeze (&(query)->debug); \
105 gst_gl_async_debug_thaw (&(query)->debug); \
[all …]
/third_party/elfutils/tests/
Drun-readelf-zdebug-rel.sh44 testfiles testfile-debug-rel.o testfile-debug-rel-g.o testfile-debug-rel-z.o
121 cat info.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-…
123 …fo'/" | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-rel-g.o
125 cat info.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-…
143 cat loc.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=loc testfile-debug-re…
145 …x138/" | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=loc testfile-debug-rel-g.o
147 …x150/" | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=loc testfile-debug-rel-z.o
150 testfiles testfile-debug-rel-ppc64.o
151 testfiles testfile-debug-rel-ppc64-g.o testfile-debug-rel-ppc64-z.o
225 cat info.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-…
[all …]
Drun-strip-g.sh25 tempfiles a.out strip.out debug.out readelf.out
27 echo Create debug a.out.
30 echo strip -g to file with debug file
31 testrun ${abs_top_builddir}/src/strip -g -o strip.out -f debug.out ||
44 testrun ${abs_top_builddir}/src/readelf -S debug.out > readelf.out
48 echo symtab found in debug.out
55 echo arm strip -g to file with debug file
56 testrun ${abs_top_builddir}/src/strip -g -o strip.out -f debug.out testfilearm ||
69 testrun ${abs_top_builddir}/src/readelf -S debug.out > readelf.out
73 echo symtab found in debug.out
[all …]
/third_party/ltp/
DREADME.kernel_config181 /sys/kernel/debug/fail_io_timeout/interval
182 /sys/kernel/debug/fail_io_timeout/probability
183 /sys/kernel/debug/fail_io_timeout/reject-end
184 /sys/kernel/debug/fail_io_timeout/reject-start
185 /sys/kernel/debug/fail_io_timeout/require-end
186 /sys/kernel/debug/fail_io_timeout/require-start
187 /sys/kernel/debug/fail_io_timeout/space
188 /sys/kernel/debug/fail_io_timeout/stacktrace-depth
189 /sys/kernel/debug/fail_io_timeout/task-filter
190 /sys/kernel/debug/fail_io_timeout/times
[all …]
/third_party/node/deps/v8/infra/mb/
Dmb_config.pyl12 'android.arm.debug': 'default_debug_android_arm',
15 'arm.debug': 'default_debug_arm',
18 'arm64.debug': 'default_debug_arm64',
22 'ia32.debug': 'default_debug_x86',
25 'mipsel.debug': 'default_debug_mipsel',
28 'mips64el.debug': 'default_debug_mips64el',
31 'ppc64.debug': 'default_debug_ppc64',
34 'ppc64.debug.sim': 'default_debug_ppc64_sim',
37 'riscv64.debug': 'default_debug_riscv64',
40 'riscv64.debug.sim': 'default_debug_riscv64_sim',
[all …]
/third_party/pulseaudio/src/utils/
Dpadsp.c260debug(DEBUG_LEVEL_NORMAL, __FILE__": Not connected: %s\n", (i)->context ? pa_strerror(pa_context_e…
268debug(DEBUG_LEVEL_NORMAL, __FILE__": Not connected: %s\n", (i)->context ? pa_strerror(pa_context_e…
276debug(DEBUG_LEVEL_NORMAL, __FILE__": Not connected: %s\n", (i)->context ? pa_strerror(pa_context_e…
281 static void debug(int level, const char *format, ...) PA_GCC_PRINTF_ATTR(2,3);
287 static void debug(int level, const char *format, ...) { in debug() function
385 debug(DEBUG_LEVEL_NORMAL, __FILE__": freeing fd info (fd=%i)\n", i->app_fd); in fd_info_free()
433 debug(DEBUG_LEVEL_VERBOSE, __FILE__": ref++, now %i\n", i->ref); in fd_info_ref()
444 debug(DEBUG_LEVEL_VERBOSE, __FILE__": ref--, now %i\n", i->ref); in fd_info_unref()
508 debug(DEBUG_LEVEL_NORMAL, __FILE__": atfork_prepare() enter\n"); in atfork_prepare()
521 debug(DEBUG_LEVEL_NORMAL, __FILE__": atfork_prepare() exit\n"); in atfork_prepare()
[all …]
/third_party/ltp/testcases/realtime/func/pi-tests/
Dtestpi-7.c115 debug(DBG_DEBUG, "%s:%d: read_flag = %s (%d)\n", s, l, in _read_flag()
138 debug(DBG_DEBUG, "phase_flag: %s set it to %d\n", s, in _write_flag()
140 debug(DBG_DEBUG, "%s:%d: write_flag = %s (%d)\n", s, l, in _write_flag()
165 debug(DBG_INFO, "low try mutex\n"); in low_prio_rt_thread()
167 debug(DBG_INFO, "low grab mutex\n"); in low_prio_rt_thread()
174 debug(DBG_INFO, "low drop mutex\n"); in low_prio_rt_thread()
182 debug(DBG_INFO, "low prio thread finished (flags=%#x)\n", t->flags); in low_prio_rt_thread()
199 debug(DBG_INFO, MP "thread %d writing flag\n", t->id); in med_prio_thread()
203 debug(DBG_DEBUG, MP "ready to start work\n"); in med_prio_thread()
210 debug(DBG_DEBUG, MP "done working -- time to sleep\n"); in med_prio_thread()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/shaders/
Dgenerate_shaders.bat13 set debug=0 variable
15 if "%1" == "debug" (
16 set debug=1 variable
19 set debug=0 variable
23 …r Blit.vs standardvs vs_2_0 compiled\standardvs.h %debug%
24 …r Blit.ps passthroughps ps_2_0 compiled\passthroughps.h %debug%
25 …r Blit.ps luminanceps ps_2_0 compiled\luminanceps.h %debug%
26 …r Blit.ps luminancepremultps ps_2_0 compiled\luminancepremultps.h %debug%
27 …r Blit.ps luminanceunmultps ps_2_0 compiled\luminanceunmultps.h %debug%
28 …r Blit.ps componentmaskps ps_2_0 compiled\componentmaskps.h %debug%
[all …]
/third_party/rust/crates/clap/src/parser/
Dparser.rs57 debug!("Parser::get_matches_with"); in get_matches_with()
87 debug!( in get_matches_with()
95 debug!( in get_matches_with()
108 debug!("Parser::get_matches_with: sc={:?}", sc_name); in get_matches_with()
126 debug!("Parser::get_matches_with: setting TrailingVals=true"); in get_matches_with()
140 debug!( in get_matches_with()
157 debug!( in get_matches_with()
213 debug!( in get_matches_with()
243 debug!( in get_matches_with()
331 debug!( in get_matches_with()
[all …]

12345678910>>...116