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

1 2

  /external/v8/src/inspector/
script-breakpoint.h 40 ScriptBreakpoint(String16 script_id, int line_number, int column_number,
42 : script_id(std::move(script_id)),
47 String16 script_id; member in struct:v8_inspector::ScriptBreakpoint
wasm-translation.cc 25 String16 script_id; member in struct:WasmTranslation::TranslatorImpl::TransLocation
28 TransLocation(WasmTranslation* translation, String16 script_id, int line,
31 script_id(script_id),
70 String16 script_id = String16::fromInteger(script->Id()); variable
73 AddFakeScript(isolate, script_id, func_idx, translation, agent);
94 loc->script_id = GetFakeScriptId(loc);
105 int func_index = GetFunctionIndexFromFakeScriptId(loc->script_id);
146 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id());
172 String16 GetFakeScriptId(const String16 script_id, int func_index)
    [all...]
wasm-translation.h 46 bool TranslateWasmScriptLocationToProtocolLocation(String16* script_id,
55 bool TranslateProtocolLocationToWasmScriptLocation(String16* script_id,
v8-debugger-agent-impl.cc 98 builder.append(breakpoint.script_id);
304 breakpoint.script_id = script.first;
464 CHECK(!breakpoint.script_id.isEmpty());
465 ScriptsMap::iterator scriptIterator = m_scripts.find(breakpoint.script_id);
474 &translatedBreakpoint.script_id, &translatedBreakpoint.line_number,
485 &translatedBreakpoint.script_id, &actualLineNumber, &actualColumnNumber);
493 return buildProtocolLocation(translatedBreakpoint.script_id, actualLineNumber,
    [all...]
v8-heap-profiler-agent-impl.cc 349 .setScriptId(String16::fromInteger(node->script_id))
v8-debugger.cc 233 toV8String(m_isolate, breakpoint.script_id))
    [all...]
  /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 75 AllocationNode(AllocationNode* parent, const char* name, int script_id,
78 script_id_(script_id),
90 static FunctionId function_id(int script_id, int start_position,
92 // script_id == kNoScriptId case:
96 if (script_id == v8::UnboundScript::kNoScriptId) {
99 // script_id != kNoScriptId case:
100 // Use script_id, start_position pair to uniquelly identify the node.
103 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1);
105 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 59 int script_id() const { return script_id_; } function in class:v8::internal::CodeEntry
60 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 274 int script_id = Script::cast(pos_info.function->script())->id(); local
276 inlined_frames.push_back(CpuProfileDeoptFrame({script_id, offset}));
profile-generator.cc 252 entry_->name_prefix(), entry_->name(), entry_->script_id(),
259 base::OS::Print("%*s;;; deopted at script_id: %d position: %" PRIuS
261 indent + 10, "", info.stack[0].script_id,
264 base::OS::Print("%*s;;; Inline point: script_id %d position: %" PRIuS
266 indent + 10, "", info.stack[index].script_id,
432 value->SetInteger("scriptId", entry->script_id());
  /external/chromium-trace/catapult/common/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/libtextclassifier/
tokenizer_test.cc 162 config->script_id = 1;
168 config->script_id = 1;
174 config->script_id = 1;
tokenizer.cc 72 *script = range->script_id;
model_generated.h 2058 int32_t script_id; member in struct:libtextclassifier2::TokenizationCodepointRangeT
2084 int32_t script_id() const { function in struct:libtextclassifier2::FLATBUFFERS_FINAL_CLASS
    [all...]
feature-processor_test.cc     [all...]
  /external/v8/include/
v8-profiler.h 24 int script_id; member in struct:v8::CpuProfileDeoptFrame
576 int script_id; member in struct:v8::AllocationProfile::Node
v8.h 1003 Local<Integer> script_id = Local<Integer>(),
    [all...]
  /external/v8/src/debug/
debug.js 261 ScriptBreakPoint.prototype.script_id = function() { method in class:ScriptBreakPoint
389 script_id: script.id };
554 script_id: script.id };
561 Debug.setBreakPointByScriptIdAndPosition = function(script_id, position,
570 var script = scriptById(script_id);
681 Debug.setScriptBreakPointById = function(script_id,
686 script_id, opt_line, opt_column,
  /external/libmtp/src/
ptp.c     [all...]
ptp.h 3393 unsigned script_id; \/* id of script message is to\/from *\/ member in struct:__anon25376
    [all...]
  /external/v8/src/
isolate.cc 740 int script_id = summ.script()->id(); local
742 handle(Smi::FromInt(script_id), isolate_), NONE);
    [all...]

Completed in 775 milliseconds

1 2