| /llvm-project-15.0.7/lldb/scripts/android/ |
| H A D | host_art_bt.py | 30 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 D | call.cpp | 96 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 D | in_call_stack.py | 17 symbol = frame.GetSymbol() 18 if symbol and name in frame.GetSymbol().GetName():
|
| H A D | diagnose_unwind.py | 48 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 D | disasm.py | 90 symbol = frame.GetSymbol()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/objc/ |
| H A D | TestObjCBreakpoints.py | 43 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 D | TestDyldTrieSymbols.py | 87 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 D | SBSymbolContext.i | 67 lldb::SBSymbol GetSymbol (); 92 …symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setti…
|
| H A D | SBAddress.i | 138 GetSymbol (); 182 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
|
| H A D | SBFrame.i | 105 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 D | lldbutil.py | 697 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 D | TestSymbolAPI.py | 60 symbol_line1 = frame0.GetSymbol() 77 symbol_line2 = frame0.GetSymbol()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_symbolcontext.py | 14 obj.GetSymbol()
|
| H A D | sb_address.py | 21 obj.GetSymbol()
|
| H A D | sb_frame.py | 19 obj.GetSymbol()
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | check-return.cpp | 36 IsFunction(*subprogramScope->GetSymbol()))) { in Leave()
|
| /llvm-project-15.0.7/flang/include/flang/Semantics/ |
| H A D | scope.h | 116 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 D | TestNoReturnModuleEnd.py | 36 symbol = frame.GetSymbol()
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbutil.py | 1086 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 D | TestNameLookup.py | 58 self.assertTrue(symbol_context.GetSymbol().IsValid())
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBSymbolContext.h | 43 lldb::SBSymbol GetSymbol();
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/global_variables/ |
| H A D | TestCPPGlobalVariables.py | 56 mangled = lldb.SBAddress(addr, target).GetSymbol().GetMangledName()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
| H A D | TestAvoidBreakpointInDelaySlot.py | 41 self.assertEqual(sc.GetSymbol().GetName(), "foo")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/cpp/ |
| H A D | TestCPPBreakpointLocations.py | 101 symbol = sc_list.GetContextAtIndex(0).GetSymbol()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/symbol-context/ |
| H A D | TestSymbolContext.py | 83 symbol = context.GetSymbol()
|