Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DFunctionBreakpoint.cpp15 : BreakpointBase(obj), functionName(std::string(GetString(obj, "name"))) {} in FunctionBreakpoint()
18 if (functionName.empty()) in SetBreakpoint()
20 bp = g_vsc.target.BreakpointCreateByName(functionName.c_str()); in SetBreakpoint()
H A DFunctionBreakpoint.h17 std::string functionName; member
H A Dlldb-vscode.cpp2279 request_bps[func_bp.functionName] = std::move(func_bp); in request_setFunctionBreakpoints()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DCocoaConventions.cpp102 StringRef functionName = ident->getName(); in followsCreateRule() local
104 StringRef::iterator it = functionName.begin(); in followsCreateRule()
106 StringRef::iterator endI = functionName.end(); in followsCreateRule()
129 StringRef suffix = functionName.substr(it - start); in followsCreateRule()
/llvm-project-15.0.7/libunwind/src/
H A DUnwindLevel1.c112 const char *functionName = functionBuf; in unwind_phase1() local
117 functionName = ".anonymous."; in unwind_phase1()
123 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
216 const char *functionName = functionBuf; in unwind_phase2() local
221 functionName = ".anonymous."; in unwind_phase2()
226 functionName, sp, frameInfo.lsda, in unwind_phase2()
314 const char *functionName = functionBuf; in unwind_phase2_forced() local
319 functionName = ".anonymous."; in unwind_phase2_forced()
323 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
H A DUnwindLevel1-gcc-ext.c158 char functionName[512]; in _Unwind_Backtrace() local
161 __unw_get_proc_name(&cursor, functionName, 512, &offset); in _Unwind_Backtrace()
165 frame.start_ip, functionName, frame.lsda, in _Unwind_Backtrace()
H A DUnwind-EHABI.cpp491 const char *functionName = functionBuf; in unwind_phase1() local
496 functionName = ".anonymous."; in unwind_phase1()
503 frameInfo.start_ip, functionName, in unwind_phase1()
612 const char *functionName = functionBuf; in unwind_phase2() local
617 functionName = ".anonymous."; in unwind_phase2()
622 functionName, sp, frameInfo.lsda, in unwind_phase2()
722 const char *functionName = functionBuf; in unwind_phase2_forced() local
727 functionName = ".anonymous."; in unwind_phase2_forced()
731 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
H A DUnwind-seh.cpp251 const char *functionName = functionBuf; in unwind_phase2_forced() local
256 functionName = ".anonymous."; in unwind_phase2_forced()
260 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
H A DUnwindCursor.hpp2018 const char *functionName = functionBuf; in getInfoFromTBTable() local
2021 functionName = ".anonymous."; in getInfoFromTBTable()
2024 __func__, functionName, in getInfoFromTBTable()
2259 const char *functionName = functionBuf; in stepWithTBTable() local
2262 functionName = ".anonymous."; in stepWithTBTable()
2265 __func__, functionName, in stepWithTBTable()
/llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/
H A DGPUToLLVMConversion.cpp66 FunctionCallBuilder(StringRef functionName, Type returnType, in FunctionCallBuilder()
68 : functionName(functionName), in FunctionCallBuilder()
73 StringRef functionName; member
391 if (auto function = module.lookupSymbol<LLVM::LLVMFuncOp>(functionName)) in create()
394 .create<LLVM::LLVMFuncOp>(loc, functionName, functionType); in create()
541 static bool isDefinedByCallTo(Value value, StringRef functionName) { in isDefinedByCallTo() argument
544 return defOp.getCallee()->equals(functionName); in isDefinedByCallTo()
561 if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) { in matchAndRewrite()
595 if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) { in matchAndRewrite()
/llvm-project-15.0.7/polly/utils/pyscop/
H A Disl.py432 functionName = "isl_" + object.isl_name() + "_" + name
433 islFunction = getattr(isl, functionName)
451 functionName = "isl_" + base.isl_name() + "_" + operation variable
452 islFunction = getattr(isl, functionName)
466 functionName = "isl_" + object.isl_name() + "_" + name
467 islFunction = getattr(isl, functionName)
481 functionName = "isl_" + base.isl_name() + "_" + operation variable
482 islFunction = getattr(isl, functionName)
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dblocks-5.m15 …oid DVT (volatile const void * object, volatile const void * selector, const char * functionName);
/llvm-project-15.0.7/clang/test/Index/
H A Dfix-its.m5 …ile const void * object, volatile const void * selector, const char * functionName, const char * f…
/llvm-project-15.0.7/clang/test/Analysis/
H A DCFRetainRelease_NSAssertionHandler.m23 - (void)handleFailureInFunction:(NSString *)functionName file:(NSString *)fileName lineNumber:(NSIn…
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializeOps.cpp459 auto functionName = getFunctionSymbol(functionID); in processOp() local
473 SymbolRefAttr::get(opBuilder.getContext(), functionName), arguments); in processOp()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dpredefined-expr.cpp547 void XXLog(const char *functionName) { } in XXLog() argument
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprConstant.cpp2041 StringRef functionName; in VisitBlockExpr() local
2043 functionName = CGF->CurFn->getName(); in VisitBlockExpr()
2045 functionName = "global"; in VisitBlockExpr()
2047 return CGM.GetAddrOfGlobalBlock(E, functionName); in VisitBlockExpr()