/external/v8/src/inspector/ |
D | wasm-translation.cc | 59 String16 script_id; member 62 TransLocation(WasmTranslation* translation, String16 script_id, int line, in TransLocation() 65 script_id(script_id), in TransLocation() 123 String16 script_id = String16::fromInteger(script->Id()); in Init() local 126 AddFakeScript(isolate, script_id, func_idx, translation, agent); in Init() 147 loc->script_id = GetFakeScriptId(loc); in Translate() 165 int func_index = GetFunctionIndexFromFakeScriptId(loc->script_id); in TranslateBack() 189 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id()); in TranslateBack() 241 String16 GetFakeScriptId(const String16 script_id, int func_index) { in GetFakeScriptId() argument 242 return String16::concat(script_id, '-', String16::fromInteger(func_index)); in GetFakeScriptId() [all …]
|
D | wasm-translation.h | 46 bool TranslateWasmScriptLocationToProtocolLocation(String16* script_id, 55 bool TranslateProtocolLocationToWasmScriptLocation(String16* script_id, 59 const String16& GetSource(const String16& script_id, int func_index); 60 int GetStartLine(const String16& script_id, int func_index) { return 0; } in GetStartLine() argument 61 int GetStartColumn(const String16& script_id, int func_index) { return 0; } in GetStartColumn() argument 62 int GetEndLine(const String16& script_id, int func_index); 63 int GetEndColumn(const String16& script_id, int func_index); 64 String16 GetHash(const String16& script_id, int func_index);
|
D | v8-heap-profiler-agent-impl.cc | 350 .setScriptId(String16::fromInteger(node->script_id)) in buildSampingHeapProfileNode()
|
/external/webrtc/webrtc/base/ |
D | macutils.cc | 156 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/libtextclassifier/lang_id/features/ |
D | relevant-script-feature.cc | 95 for (int script_id = 0; script_id < num_supported_scripts_; ++script_id) { in Evaluate() local 96 int count = counts[script_id]; in Evaluate() 99 FloatFeatureValue value(script_id, weight); in Evaluate()
|
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/ |
D | generate.py | 149 def __init__(self, script_id=None, text_content=None, content_type=None): argument 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/src/profiler/ |
D | sampling-heap-profiler.h | 75 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,
|
D | sampling-heap-profiler.cc | 144 int script_id, in FindOrAddChildNode() argument 146 FunctionId id = function_id(script_id, start_position, name); in FindOrAddChildNode() 152 auto child = new AllocationNode(this, name, script_id, start_position); in FindOrAddChildNode() 217 int script_id = v8::UnboundScript::kNoScriptId; in AddStack() local 220 script_id = script->id(); in AddStack() 222 node = node->FindOrAddChildNode(name, script_id, shared->StartPosition()); in AddStack()
|
D | profile-generator.h | 67 int script_id() const { return script_id_; } in script_id() function 68 void set_script_id(int script_id) { script_id_ = script_id; } in set_script_id() argument
|
D | allocation-tracker.cc | 105 script_id(0), in FunctionInfo() 260 info->script_id = script->id(); in AddFunctionInfo()
|
D | profile-generator.cc | 236 entry_->name(), line_number, entry_->script_id(), id()); in Print() 244 indent + 10, "", info.stack[0].script_id, in Print() 249 indent + 10, "", info.stack[index].script_id, in Print() 436 value->SetInteger("scriptId", entry->script_id()); in BuildNodeValue()
|
D | allocation-tracker.h | 105 int script_id; member
|
D | profiler-listener.cc | 291 int script_id = pos_info.script->id(); in AttachDeoptInlinedFrames() local 293 deopt_frames[deopt_frame_count++] = {script_id, offset}; in AttachDeoptInlinedFrames()
|
/external/v8/src/ |
D | log.cc | 1508 int script_id, double time_delta, int start_position, in AppendFunctionMessage() argument 1510 msg << "function" << Logger::kNext << reason << Logger::kNext << script_id in AppendFunctionMessage() 1517 void Logger::FunctionEvent(const char* reason, int script_id, double time_delta, in FunctionEvent() argument 1522 AppendFunctionMessage(msg, reason, script_id, time_delta, start_position, in FunctionEvent() 1528 void Logger::FunctionEvent(const char* reason, int script_id, double time_delta, in FunctionEvent() argument 1534 AppendFunctionMessage(msg, reason, script_id, time_delta, start_position, in FunctionEvent() 1546 int script_id = -1; in CompilationCacheEvent() local 1548 script_id = Script::cast(sfi->script())->id(); in CompilationCacheEvent() 1551 << cache_type << Logger::kNext << script_id << Logger::kNext in CompilationCacheEvent() 1557 void Logger::ScriptEvent(ScriptEventType type, int script_id) { in ScriptEvent() argument [all …]
|
D | log.h | 178 void FunctionEvent(const char* reason, int script_id, double time_delta_ms, 181 void FunctionEvent(const char* reason, int script_id, double time_delta_ms, 188 void ScriptEvent(ScriptEventType type, int script_id);
|
/external/v8/src/parsing/ |
D | preparser.cc | 123 int script_id) { in PreParseFunction() argument 128 set_script_id(script_id); in PreParseFunction() 368 event_name, script_id(), ms, function_scope->start_position(), in ParseFunctionLiteral()
|
D | parse-info.h | 208 int script_id() const { return script_id_; } in script_id() function
|
D | preparser.h | 947 int script_id = -1, bool parsing_module = false, 951 runtime_call_stats, logger, script_id, 981 int script_id);
|
/external/v8/src/debug/ |
D | liveedit.cc | 806 void AddInterestingLiteral(int script_id, FunctionLiteral* literal, in AddInterestingLiteral() argument 808 map_.emplace(GetFuncId(script_id, literal), in AddInterestingLiteral() 892 FuncId GetFuncId(int script_id, FunctionLiteral* literal) { in GetFuncId() argument 900 return FuncId(script_id, start_position); in GetFuncId() 903 FuncId GetFuncId(int script_id, SharedFunctionInfo* sfi) { in GetFuncId() argument 904 DCHECK_EQ(script_id, Script::cast(sfi->script())->id()); in GetFuncId() 912 return FuncId(script_id, start_position); in GetFuncId() 1259 int script_id = script->id(); in PatchScript() local 1261 new_script->set_id(script_id); in PatchScript()
|
/external/libtextclassifier/utils/ |
D | tokenizer_test.cc | 190 config->script_id = 1; in TEST() 196 config->script_id = 1; in TEST() 202 config->script_id = 1; in TEST()
|
D | tokenizer.fbs | 68 script_id:int;
|
D | tokenizer.cc | 83 *script = range->script_id; in GetScriptAndRole()
|
/external/v8/include/ |
D | v8-profiler.h | 24 int script_id; member 589 int script_id; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/vim/ |
D | vimrc | 89 " rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
|
/external/llvm/utils/vim/ |
D | vimrc | 89 " rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
|