Home
last modified time | relevance | path

Searched refs:script_id (Results 1 – 18 of 18) sorted by relevance

/external/libtextclassifier/lang_id/
Drelevant-script-feature.cc79 for (int script_id = 0; script_id < kNumRelevantScripts; ++script_id) { in Evaluate() local
80 int count = counts[script_id]; in Evaluate()
83 FloatFeatureValue value(script_id, weight); in Evaluate()
/external/webrtc/webrtc/base/
Dmacutils.cc156 OSAID script_id, result_id; in RunAppleScript() local
160 script_id = kOSANullScript; in RunAppleScript()
175 err = OSACompile(component, &script_desc, kOSAModeCanInteract, &script_id); in RunAppleScript()
178 if (script_id != kOSANullScript) { in RunAppleScript()
179 OSADispose(component, script_id); in RunAppleScript()
186 err = OSAExecute(component, script_id, kOSANullScript, kOSAModeCanInteract, in RunAppleScript()
204 if (script_id != kOSANullScript) { in RunAppleScript()
205 OSADispose(component, script_id); in RunAppleScript()
/external/v8/src/profiler/
Dsampling-heap-profiler.h75 AllocationNode(AllocationNode* parent, const char* name, int script_id, in AllocationNode() argument
78 script_id_(script_id), in AllocationNode()
90 static FunctionId function_id(int script_id, int start_position, in function_id() argument
96 if (script_id == v8::UnboundScript::kNoScriptId) { in function_id()
103 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1); in function_id()
105 AllocationNode* FindOrAddChildNode(const char* name, int script_id,
Dsampling-heap-profiler.cc142 int script_id, in FindOrAddChildNode() argument
144 FunctionId id = function_id(script_id, start_position, name); in FindOrAddChildNode()
150 auto child = new AllocationNode(this, name, script_id, start_position); in FindOrAddChildNode()
200 int script_id = v8::UnboundScript::kNoScriptId; in AddStack() local
203 script_id = script->id(); in AddStack()
205 node = node->FindOrAddChildNode(name, script_id, shared->start_position()); in AddStack()
Dprofile-generator.h59 int script_id() const { return script_id_; } in script_id() function
60 void set_script_id(int script_id) { script_id_ = script_id; } in set_script_id() argument
Dprofile-generator.cc251 entry_->name_prefix(), entry_->name(), entry_->script_id(), in Print()
260 indent + 10, "", info.stack[0].script_id, in Print()
265 indent + 10, "", info.stack[index].script_id, in Print()
431 value->SetInteger("scriptId", entry->script_id()); in BuildNodeValue()
Dallocation-tracker.cc112 script_id(0), in FunctionInfo()
274 info->script_id = script->id(); in AddFunctionInfo()
Dallocation-tracker.h103 int script_id; member
Dprofiler-listener.cc273 int script_id = Script::cast(pos_info.function->script())->id(); in RecordDeoptInlinedFrames() local
274 inlined_frames.push_back(CpuProfileDeoptFrame({script_id, offset})); in RecordDeoptInlinedFrames()
Dheap-snapshot-generator.cc3014 buffer_pos = utoa(static_cast<unsigned>(info->script_id), buffer, in SerializeTraceNodeInfos()
/external/v8/src/debug/
Ddebug.js288 ScriptBreakPoint.prototype.script_id = function() { method in ScriptBreakPoint
416 script_id: script.id }; property
606 script_id: script.id }; property
613 Debug.setBreakPointByScriptIdAndPosition = function(script_id, position, argument
622 var script = scriptById(script_id);
733 Debug.setScriptBreakPointById = function(script_id, argument
738 script_id, opt_line, opt_column,
1472 response.body.script_id = break_point.script_id();
1606 description.script_id = break_point.script_id();
2202 var script_id = request.arguments.script_id;
[all …]
/external/v8/include/
Dv8-profiler.h23 int script_id; member
576 int script_id; member
Dv8.h1001 Local<Integer> script_id = Local<Integer>(),
8858 Local<Integer> script_id,
8870 script_id_(script_id),
/external/v8/src/inspector/
Dv8-heap-profiler-agent-impl.cc347 .setScriptId(String16::fromInteger(node->script_id)) in buildSampingHeapProfileNode()
/external/llvm/utils/vim/
Dvimrc89 " rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
/external/v8/src/
Disolate.cc728 int script_id = frame->script()->id(); in NewStackFrameObject() local
730 handle(Smi::FromInt(script_id), isolate_), NONE); in NewStackFrameObject()
Dbootstrapper.cc2998 Handle<AccessorInfo> script_id = Accessors::ScriptIdInfo(isolate, attribs); in ExportFromRuntime() local
3000 AccessorConstantDescriptor d(Handle<Name>(Name::cast(script_id->name())), in ExportFromRuntime()
3001 script_id, attribs); in ExportFromRuntime()
Dapi.cc9148 return entry->script_id(); in GetScriptId()