Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp336 size_t ComaIdx = RemainingExpr.find(','); in evalStubAddr() local
337 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubAddr()
338 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubAddr()
381 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local
382 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr()
383 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp499 size_t ComaIdx = Mapping.find_first_of(","); in applySpecificSectionMappings() local
501 if (ComaIdx == StringRef::npos) in applySpecificSectionMappings()
505 std::string FileName = SectionIDStr.substr(0, ComaIdx); in applySpecificSectionMappings()
506 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings()