Home
last modified time | relevance | path

Searched refs:GetSymbol (Results 1 – 25 of 62) sorted by relevance

123

/llvm-project-15.0.7/lldb/scripts/android/
H A Dhost_art_bt.py30 symbol = frame.GetSymbol()
77 …elif frame.GetSymbol() and (frame.GetSymbol().GetName() == 'art_quick_invoke_stub' or frame.GetSym…
86 if frame.GetSymbol() and frame.GetSymbol().GetName(
92 … elif frame.GetSymbol() and frame.GetSymbol().GetName() == 'art_quick_generic_jni_trampoline':
129 if frame.GetSymbol() and (frame.GetSymbol().GetName() ==
139 if frame.GetSymbol() and frame.GetSymbol().GetName(
145 elif frame.GetSymbol() and re.search(r'art::interpreter::', frame.GetSymbol().GetName()):
154 if frame.GetSymbol() and frame.GetSymbol().GetName(
213 if frame.GetSymbol() and not re.search(
214 r'art::interpreter::', frame.GetSymbol().GetName()):
[all …]
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dcall.cpp96 return DynamicType::From(GetSymbol()); in GetType()
102 if (const Symbol * symbol{GetSymbol()}) { in Rank()
120 if (const Symbol * symbol{GetSymbol()}) { in GetInterfaceSymbol()
137 } else if (const Symbol * symbol{GetSymbol()}) { in IsElemental()
160 const Symbol *ProcedureDesignator::GetSymbol() const { in GetSymbol() function in Fortran::evaluate::ProcedureDesignator
/llvm-project-15.0.7/lldb/examples/python/
H A Din_call_stack.py17 symbol = frame.GetSymbol()
18 if symbol and name in frame.GetSymbol().GetName():
H A Ddiagnose_unwind.py48 if sym_ctx.IsValid() and sym_ctx.GetSymbol().IsValid():
49 function_start = sym_ctx.GetSymbol().GetStartAddress().GetLoadAddress(target)
51 …r_width, addr_for_printing, addr_width, fp, module_description, sym_ctx.GetSymbol().GetName(), off…
H A Ddisasm.py90 symbol = frame.GetSymbol()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/objc/
H A DTestObjCBreakpoints.py43 function_name = bp_loc.GetAddress().GetSymbol().GetName()
94 function_name = bp_loc.GetAddress().GetSymbol().GetName()
114 function_name = bp_loc.GetAddress().GetSymbol().GetName()
/llvm-project-15.0.7/lldb/test/API/macosx/dyld-trie-symbols/
H A DTestDyldTrieSymbols.py87 sym1 = syms_ctx.GetContextAtIndex(0).GetSymbol()
88 sym2 = syms_ctx.GetContextAtIndex(1).GetSymbol()
102 sym = syms_ctx.GetContextAtIndex(0).GetSymbol()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBSymbolContext.i67 lldb::SBSymbol GetSymbol ();
92 …symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setti…
H A DSBAddress.i138 GetSymbol ();
182 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
H A DSBFrame.i105 GetSymbol () const;
349 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
/llvm-project-15.0.7/lldb/utils/lui/
H A Dlldbutil.py697 caller = thread.GetFrameAtIndex(1).GetSymbol()
718 def GetSymbol(i): function
719 return thread.GetFrameAtIndex(i).GetSymbol().GetName()
721 return [GetSymbol(i) for i in range(thread.GetNumFrames())]
805 start_addr = frame.GetSymbol().GetStartAddress().GetFileAddress()
869 elif frame.GetSymbol():
870 name = frame.GetSymbol().GetName()
/llvm-project-15.0.7/lldb/test/API/python_api/function_symbol/
H A DTestSymbolAPI.py60 symbol_line1 = frame0.GetSymbol()
77 symbol_line2 = frame0.GetSymbol()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_symbolcontext.py14 obj.GetSymbol()
H A Dsb_address.py21 obj.GetSymbol()
H A Dsb_frame.py19 obj.GetSymbol()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-return.cpp36 IsFunction(*subprogramScope->GetSymbol()))) { in Leave()
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dscope.h116 inline const Symbol *GetSymbol() const;
308 inline const Symbol *Scope::GetSymbol() const { in GetSymbol() function
315 if (const auto *sym{GetSymbol()}) { in GetName()
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/module-end/
H A DTestNoReturnModuleEnd.py36 symbol = frame.GetSymbol()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1086 caller = thread.GetFrameAtIndex(1).GetSymbol()
1107 def GetSymbol(i): function
1108 return thread.GetFrameAtIndex(i).GetSymbol().GetName()
1110 return list(map(GetSymbol, list(range(thread.GetNumFrames()))))
1198 start_addr = frame.GetSymbol().GetStartAddress().GetFileAddress()
1333 elif frame.GetSymbol():
1334 name = frame.GetSymbol().GetName()
/llvm-project-15.0.7/lldb/test/API/python_api/name_lookup/
H A DTestNameLookup.py58 self.assertTrue(symbol_context.GetSymbol().IsValid())
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBSymbolContext.h43 lldb::SBSymbol GetSymbol();
/llvm-project-15.0.7/lldb/test/API/lang/cpp/global_variables/
H A DTestCPPGlobalVariables.py56 mangled = lldb.SBAddress(addr, target).GetSymbol().GetMangledName()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/
H A DTestAvoidBreakpointInDelaySlot.py41 self.assertEqual(sc.GetSymbol().GetName(), "foo")
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/cpp/
H A DTestCPPBreakpointLocations.py101 symbol = sc_list.GetContextAtIndex(0).GetSymbol()
/llvm-project-15.0.7/lldb/test/API/python_api/symbol-context/
H A DTestSymbolContext.py83 symbol = context.GetSymbol()

123