Searched refs:debug (Results 101 - 125 of 1937) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/es6/
H A Dgenerators-debug-scopes.js5 // Flags: --expose-debug-as debug
7 var Debug = debug.Debug;
79 if (scopes[i] == debug.ScopeType.Global) {
87 // Get the debug command processor.
99 if (scopes[i] == debug.ScopeType.Local ||
100 scopes[i] == debug.ScopeType.Closure) {
149 // Get the debug command processor.
161 if (scope.scopeType() == debug.ScopeType.Local ||
162 scope.scopeType() == debug
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestHeteroAST.java34 protected boolean debug = false; field in class:TestHeteroAST
51 "a", "a", debug);
63 "a", "a", debug);
80 "a", "a", debug);
97 "a", "a", debug);
115 "a", "a", debug);
132 "a", "a", debug);
149 "a", "a", debug);
166 "a", "a", debug);
183 "a", "begin", debug);
[all...]
/external/chromium_org/base/test/
H A Dtrace_to_file.cc9 #include "base/debug/trace_event_impl.h"
53 debug::TraceLog::GetInstance()->SetEnabled(
54 debug::CategoryFilter(categories),
55 debug::TraceLog::RECORDING_MODE,
56 debug::TraceOptions(debug::RECORD_UNTIL_FULL));
76 debug::TraceResultBuffer* buffer,
89 debug::TraceLog::GetInstance()->SetDisabled();
91 debug::TraceResultBuffer buffer;
96 debug
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dmirror-function.js28 // Flags: --expose-debug-as debug
45 var mirror = debug.MakeMirror(f);
46 var serializer = debug.MakeMirrorSerializer();
52 assertTrue(mirror instanceof debug.Mirror);
53 assertTrue(mirror instanceof debug.ValueMirror);
54 assertTrue(mirror instanceof debug.ObjectMirror);
55 assertTrue(mirror instanceof debug.FunctionMirror);
65 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror);
66 assertTrue(mirror.protoObject() instanceof debug
[all...]
H A Ddebug-compile-optimized.js5 // Flags: --expose-debug-as debug --allow-natives-syntax --crankshaft
7 Debug = debug.Debug;
H A Dmirror-regexp.js28 // Flags: --expose-debug-as debug
31 var all_attributes = debug.PropertyAttribute.ReadOnly |
32 debug.PropertyAttribute.DontEnum |
33 debug.PropertyAttribute.DontDelete;
39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
56 var mirror = debug.MakeMirror(r);
57 var serializer = debug.MakeMirrorSerializer();
63 assertTrue(mirror instanceof debug
[all...]
/external/chromium_org/base/debug/
H A Dcrash_logging_unittest.cc5 #include "base/debug/crash_logging.h"
23 base::debug::SetCrashKeyReportingFunctions(
29 base::debug::ResetCrashLoggingForTesting();
48 base::debug::CrashKey keys[] = { { kTestKey, 255 } };
49 base::debug::InitCrashKeys(keys, arraysize(keys), 255);
51 base::debug::SetCrashKeyValue(kTestKey, "value");
54 base::debug::ClearCrashKey(kTestKey);
63 base::debug::CrashKey keys[] = { { kTestKey, 15 } };
64 base::debug::InitCrashKeys(keys, arraysize(keys), 5);
69 base::debug
[all...]
H A Ddebugger.h15 namespace debug { namespace in namespace:base
34 // the debugger is suppressed for debug errors, even in debug mode (normally
41 } // namespace debug
/external/chromium_org/cc/debug/
H A Dtraced_picture.h10 #include "base/debug/trace_event.h"
16 class TracedPicture : public base::debug::ConvertableToTraceFormat {
20 static scoped_refptr<base::debug::ConvertableToTraceFormat>
23 static scoped_refptr<base::debug::ConvertableToTraceFormat>
/external/chromium_org/content/test/data/indexeddb/
H A Dtransaction_not_blocked.js20 debug('Creating new transaction.');
28 debug("request completed successfully");
32 debug("transaction completed");
H A Dkey_path_test.js8 debug("Cursor opened successfully.");
22 debug("Opening cursor #" + count);
31 debug("Populating object store #" + count);
45 debug('createObjectStore');
H A Dtransaction_run_forever.js25 debug('Creating object store.');
36 debug('Creating new transaction.');
42 debug('Starting endless loop...');
57 debug("Looping infinitely within a transaction.");
/external/chromium_org/content/browser/tracing/
H A Dtrace_message_filter.h11 #include "base/debug/trace_event.h"
27 void SendBeginTracing(const base::debug::CategoryFilter& category_filter_str,
28 const base::debug::TraceOptions& options);
30 void SendEnableMonitoring(const base::debug::CategoryFilter& category_filter,
31 const base::debug::TraceOptions& options);
/external/chromium_org/content/test/data/fileapi/
H A Dcreate_test.js13 debug('Requesting FileSystem');
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_devtools_html.py46 def write_app_input_html(app_input_file, app_output_file, application_name, debug):
48 if not debug:
60 print('usage: %s app_input_html generated_app_html debug' % argv[0])
67 debug = argv[3] != '0'
71 write_app_input_html(app_input_html, app_output_html, application_name, debug)
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-387599.js5 // Flags: --allow-natives-syntax --expose-debug-as debug
7 Debug = debug.Debug;
H A Dregress-2296.js28 // Flags: --expose-debug-as debug
30 Debug = debug.Debug
/external/chromium_org/v8/test/webkit/
H A Darray-sort-small-sparse-array-with-large-length.js33 debug("array[" + s + "] = " + array[s]);
/external/chromium_org/v8/test/webkit/fast/js/
H A DPromise-resolve-with-then-exception.js43 debug('The promise is already rejected now.');
/external/lldb/test/functionalities/data-formatter/rdar-9973865/
H A DMakefile8 CFLAGS_EXTRAS := -fno-limit-debug-info
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/debug/
H A DLocalInfo.java32 package org.jf.dexlib2.iface.debug;
/external/chromium_org/cc/scheduler/
H A Dscheduler_settings.h13 namespace debug { namespace in namespace:base
36 scoped_refptr<base::debug::ConvertableToTraceFormat> AsValue() const;
/external/chromium_org/content/browser/
H A Dbrowser_main.cc7 #include "base/debug/trace_event.h"
16 base::debug::TraceLog::GetInstance()->SetProcessName("Browser");
17 base::debug::TraceLog::GetInstance()->SetProcessSortIndex(
/external/chromium_org/content/ppapi_plugin/
H A Dppapi_broker_main.cc25 base::debug::TraceLog::GetInstance()->SetProcessName("PPAPI Broker Process");
26 base::debug::TraceLog::GetInstance()->SetProcessSortIndex(
/external/chromium_org/mojo/tools/
H A Dtest_runner.py22 # Uncomment to debug:
30 _logging.debug("Test list file: %s", argv[1])
34 _logging.debug("Test list: %s" % gtest_list)
50 _logging.debug("Trying to read successes cache file: %s",
54 _logging.debug("Successes: %s", successes)
63 _logging.debug("Setting GTEST_COLOR=yes")
72 _logging.debug("%s is marked as non-cacheable" % gtest)
78 _logging.debug("Getting transitive hash for %s ... " % gtest)
84 _logging.debug(" Transitive hash: %s" % gtest_hash)

Completed in 504 milliseconds

1234567891011>>