HomeSort by relevance Sort by last modified time
    Searched refs:script_id (Results 1 - 19 of 19) sorted by null

  /external/webrtc/webrtc/base/
macutils.cc 156 OSAID script_id, result_id; local
160 script_id = kOSANullScript;
175 err = OSACompile(component, &script_desc, kOSAModeCanInteract, &script_id);
178 if (script_id != kOSANullScript) {
179 OSADispose(component, script_id);
186 err = OSAExecute(component, script_id, kOSANullScript, kOSAModeCanInteract,
204 if (script_id != kOSANullScript) {
205 OSADispose(component, script_id);
  /external/v8/src/profiler/
sampling-heap-profiler.h 74 AllocationNode(AllocationNode* parent, const char* name, int script_id,
77 script_id_(script_id),
89 static FunctionId function_id(int script_id, int start_position,
91 // script_id == kNoScriptId case:
95 if (script_id == v8::UnboundScript::kNoScriptId) {
98 // script_id != kNoScriptId case:
99 // Use script_id, start_position pair to uniquelly identify the node.
102 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1);
104 AllocationNode* FindOrAddChildNode(const char* name, int script_id,
sampling-heap-profiler.cc 142 int script_id,
144 FunctionId id = function_id(script_id, start_position, name);
150 auto child = new AllocationNode(this, name, script_id, start_position);
200 int script_id = v8::UnboundScript::kNoScriptId; local
203 script_id = script->id();
205 node = node->FindOrAddChildNode(name, script_id, shared->start_position());
profile-generator.h 54 int script_id; member in struct:v8::internal::CodeEntry::DeoptInlinedFrame
64 int script_id() const { return script_id_; } function in class:v8::internal::CodeEntry
65 void set_script_id(int script_id) { script_id_ = script_id; }
allocation-tracker.h 103 int script_id; member in struct:v8::internal::AllocationTracker::FunctionInfo
allocation-tracker.cc 112 script_id(0),
274 info->script_id = script->id();
profiler-listener.cc 103 // script. So the proper fix is to store script_id in some form
299 int script_id = v8::UnboundScript::kNoScriptId; local
302 script_id = script->id();
304 CodeEntry::DeoptInlinedFrame frame = {source_position, script_id};
profile-generator.cc 193 {inlined_frame.script_id, deopt_position + inlined_frame.position}));
265 entry_->name_prefix(), entry_->name(), entry_->script_id(),
272 base::OS::Print("%*s;;; deopted at script_id: %d position: %" PRIuS
274 indent + 10, "", info.stack[0].script_id,
277 base::OS::Print("%*s;;; Inline point: script_id %d position: %" PRIuS
279 indent + 10, "", info.stack[index].script_id,
heap-snapshot-generator.cc     [all...]
  /external/v8/test/mjsunit/
debug-script-breakpoints.js 33 var script_id; variable
42 script_id = id;
47 assertTrue(script_id !== undefined);
49 print("#" + script_id + ": " + script_name);
92 assertEquals(script_id, breakpoint.script_id());
99 var sbp = Debug.setScriptBreakPointById(script_id, 40, 6);
106 var sbp1 = Debug.setScriptBreakPointById(script_id, 42, 3);
107 var sbp2 = Debug.setScriptBreakPointById(script_id, 43, 4);
108 var sbp3 = Debug.setScriptBreakPointById(script_id, 44, 5)
    [all...]
debug-liveedit-breakpoints.js 90 if (breaks[i].script_id() == script.id) {
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
generate.py 149 def __init__(self, script_id=None, text_content=None, content_type=None):
150 if script_id is not None:
151 assert script_id[0] != '#'
152 self.script_id = script_id
159 if self.script_id:
160 attrs.append('id="%s"' % self.script_id)
  /external/v8/include/
v8-profiler.h 23 int script_id; member in struct:v8::CpuProfileDeoptFrame
466 int script_id; member in struct:v8::AllocationProfile::Node
v8.h 1019 Local<Integer> script_id = Local<Integer>(),
    [all...]
  /external/v8/src/debug/
debug.js 291 ScriptBreakPoint.prototype.script_id = function() {
419 script_id: script.id };
620 script_id: script.id };
627 Debug.setBreakPointByScriptIdAndPosition = function(script_id, position,
640 if (script_id == scripts[i].id) {
750 Debug.setScriptBreakPointById = function(script_id,
755 script_id, opt_line, opt_column,
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 1899 int script_id = script->GetUnboundScript()->GetId(); local
1969 int script_id = script->GetUnboundScript()->GetId(); local
    [all...]
test-debug.cc 199 static int SetScriptBreakPointByIdFromJS(v8::Isolate* isolate, int script_id,
206 script_id, line, column);
211 script_id, line);
1502 int script_id = script->GetUnboundScript()->GetId(); local
    [all...]
  /external/v8/src/
bootstrapper.cc 2490 Handle<AccessorInfo> script_id = Accessors::ScriptIdInfo(isolate, attribs); local
    [all...]
api.cc     [all...]

Completed in 493 milliseconds