/external/lldb/test/lang/c/stepping/ |
D | TestStepAndBreakpoints.py | 150 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "a") 156 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "main") 178 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b") 208 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b") 217 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "complex") 240 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "b") 249 self.assertTrue (thread.GetFrameAtIndex(0).GetFunctionName() == "main")
|
/external/v8/src/ |
D | profile-generator.h | 29 const char* GetFunctionName(Name* name); 30 const char* GetFunctionName(const char* name); 270 const char* GetFunctionName(Name* name) { in GetFunctionName() function 271 return function_and_resource_names_.GetFunctionName(name); in GetFunctionName() 273 const char* GetFunctionName(const char* name) { in GetFunctionName() function 274 return function_and_resource_names_.GetFunctionName(name); in GetFunctionName()
|
D | cpu-profiler.cc | 204 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent() 218 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent() 233 tag, profiles_->GetFunctionName(shared->DebugName()), in CodeCreateEvent() 260 tag, profiles_->GetFunctionName(shared->DebugName()), in CodeCreateEvent()
|
D | profile-generator.cc | 109 const char* StringsStorage::GetFunctionName(Name* name) { in GetFunctionName() function in v8::internal::StringsStorage 114 const char* StringsStorage::GetFunctionName(const char* name) { in GetFunctionName() function in v8::internal::StringsStorage
|
D | allocation-tracker.cc | 271 info->name = names_->GetFunctionName(shared->DebugName()); in AddFunctionInfo()
|
/external/lldb/test/functionalities/return-value/ |
D | TestReturnValue.py | 68 fun_name = frame.GetFunctionName() 119 fun_name = frame.GetFunctionName() 141 fun_name = frame.GetFunctionName () 151 fun_name = frame.GetFunctionName() 179 fun_name = frame.GetFunctionName()
|
/external/lldb/scripts/Python/interface/ |
D | SBFrame.i | 118 ") GetFunctionName; 120 GetFunctionName(); 310 __swig_getmethods__["name"] = GetFunctionName 311 …if _newclass: name = property(GetFunctionName, None, doc='''A read only property that retuns the n…
|
/external/lldb/source/Target/ |
D | ThreadPlanStepInRange.cpp | 289 const char *frame_function_name = sc.GetFunctionName().GetCString(); in FrameMatchesAvoidRegexp() 347 if (step_in_range_plan->m_step_into_target == sc.GetFunctionName()) in DefaultShouldStopHereCallback() 354 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() 363 sc.GetFunctionName().AsCString(), in DefaultShouldStopHereCallback()
|
/external/lldb/test/functionalities/inferior-assert/ |
D | TestInferiorAssert.py | 165 substrs = ['->', frame.GetFunctionName()]) 173 print "Checking if function %s is main" % frame.GetFunctionName() 175 if 'main' == frame.GetFunctionName():
|
/external/lldb/source/API/ |
D | SBTypeSummary.cpp | 120 const char* fname = script_summary_ptr->GetFunctionName(); in GetData() 292 current_summary_ptr->GetFunctionName(), in CopyOnWrite_Impl()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_frame.py | 21 obj.GetFunctionName()
|
/external/lldb/test/benchmarks/disassembly/ |
D | TestDoAttachThenDisassembly.py | 55 if "MainLoop" in f.GetFunctionName():
|
/external/lldb/examples/python/ |
D | diagnose_unwind.py | 223 …print "Disassembly of %s, frame %d, address 0x%x" % (frame.GetFunctionName(), frame.GetFrameID(), … 250 … print "Unwind instructions for %s, frame %d" % (frame.GetFunctionName(), frame.GetFrameID())
|
/external/lldb/test/lang/objc/print-obj/ |
D | TestPrintObj.py | 89 name = frame.GetFunctionName()
|
/external/lldb/include/lldb/API/ |
D | SBFrame.h | 89 GetFunctionName();
|
/external/lldb/include/lldb/Symbol/ |
D | SymbolContext.h | 288 GetFunctionName (Mangled::NamePreference preference = Mangled::ePreferDemangled) const;
|
/external/lldb/tools/lldb-perf/lib/ |
D | Xcode.cpp | 102 auto fname = frame.GetFunctionName(); in FetchFrames()
|
/external/v8/include/ |
D | v8-profiler.h | 26 Handle<String> GetFunctionName() const;
|
/external/lldb/source/Commands/ |
D | CommandObjectSource.cpp | 362 source_info.function = sc.GetFunctionName(); in DisplayFunctionSource() 571 SourceInfo source_info (sc.GetFunctionName(), in DoExecute()
|
D | CommandCompletions.cpp | 675 ConstString func_name = sc.GetFunctionName(Mangled::ePreferDemangled); in SearchCallback()
|
/external/lldb/include/lldb/DataFormatters/ |
D | TypeSummary.h | 484 GetFunctionName () const in GetFunctionName() function
|
/external/lldb/source/Breakpoint/ |
D | BreakpointResolverName.cpp | 163 ConstString full_name (sc.GetFunctionName()); in Prune()
|
/external/lldb/source/Core/ |
D | ModuleList.cpp | 373 const char *func_name = sc.GetFunctionName().GetCString(); in FindFunctions() 433 const char *func_name = sc.GetFunctionName().GetCString(); in FindFunctionSymbols()
|
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 442 v8::Handle<v8::String> name = node->GetChild(i)->GetFunctionName(); in CheckChildrenNames() 447 CHECK_NE(name, node->GetChild(j)->GetFunctionName()); in CheckChildrenNames() 460 if (nameHandle->Equals(child->GetFunctionName())) return child; in FindChild() 1601 node->GetFunctionName()); in CheckFunctionDetails()
|
/external/lldb/test/ |
D | lldbutil.py | 581 return thread.GetFrameAtIndex(i).GetFunctionName()
|