Home
last modified time | relevance | path

Searched refs:ComaIdx (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp334 size_t ComaIdx = RemainingExpr.find(','); in evalStubAddr() local
335 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubAddr()
336 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubAddr()
379 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local
380 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr()
381 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp470 size_t ComaIdx = Mapping.find_first_of(","); in applySpecificSectionMappings() local
472 if (ComaIdx == StringRef::npos) in applySpecificSectionMappings()
476 std::string FileName = SectionIDStr.substr(0, ComaIdx); in applySpecificSectionMappings()
477 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings()