/external/clang/utils/TableGen/ |
H A D | ClangASTNodesEmitter.cpp | 76 std::string BaseName = macroName(Base->getName()); local 93 << BaseName << "(Type, Base)\n"; local
|
/external/llvm/lib/ExecutionEngine/OProfileJIT/ |
H A D | OProfileWrapper.cpp | 137 char* BaseName = 0; local 145 BaseName = ExeName; 159 BaseName = ExeName + Idx + 1; 166 if (BaseName != 0 && (!strcmp("oprofiled", BaseName) || 167 !strcmp("operf", BaseName))) {
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 107 StringRef BaseName = F->getName(); local 108 if (BaseName[0] == '\1') 109 return (void*)Dyld.getSymbolAddress(BaseName.substr(1)); 111 + BaseName).str());
|
/external/spirv-llvm/lib/SPIRV/ |
H A D | SPIRVReader.cpp | 194 std::string BaseName; local 196 splitFileName(File, BaseName, Path); 198 BaseName, Path, "spirv", false, "", 0, "", DICompileUnit::DebugEmissionKind::LineTablesOnly); 212 std::string BaseName; 214 splitFileName(FileName, BaseName, Path); 215 if (!BaseName.empty()) 216 return Builder.createFile(BaseName, Path); 267 std::string &BaseName, 271 BaseName = FileName.substr(Loc + 1); 274 BaseName 266 splitFileName(const std::string &FileName, std::string &BaseName, std::string &Path) argument [all...] |
H A D | SPIRVUtil.cpp | 1201 getSPIRVTypeName(StringRef BaseName, StringRef Postfixes) { argument 1202 assert(!BaseName.empty() && "Invalid SPIR-V type name"); 1204 + BaseName.str();
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
H A D | SSAUpdater.cpp | 361 SSAUpdater &S, StringRef BaseName) : SSA(S) { 370 if (BaseName.empty()) 371 BaseName = SomeVal->getName(); 372 SSA.Initialize(SomeVal->getType(), BaseName); 360 LoadAndStorePromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S, StringRef BaseName) argument
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SSAUpdater.cpp | 326 SSAUpdater &S, StringRef BaseName) : SSA(S) { 335 if (BaseName.empty()) 336 BaseName = SomeVal->getName(); 337 SSA.Initialize(SomeVal->getType(), BaseName); 325 LoadAndStorePromoter(ArrayRef<const Instruction*> Insts, SSAUpdater &S, StringRef BaseName) argument
|
/external/libchrome/base/files/ |
H A D | file_path.cc | 109 // of the file name. The position is relative to BaseName(), not value(). 236 base = current.BaseName(); 243 base = current.BaseName(); 245 ret_val.push_back(current.BaseName().value()); 345 FilePath FilePath::BaseName() const { function in class:base::FilePath 369 FilePath base(BaseName()); 378 FilePath base(BaseName()); 412 if (IsEmptyOrSpecialCase(BaseName().value())) 433 if (IsEmptyOrSpecialCase(BaseName().value())) 451 if (IsEmptyOrSpecialCase(BaseName() [all...] |
/external/clang/lib/Driver/ |
H A D | Driver.cpp | 2138 /// does not provide a filename, then use BaseName, and use the extension 2141 StringRef BaseName, 2146 // If the argument is empty, output to BaseName in the current dir. 2147 Filename = BaseName; 2149 // If the argument is a directory, output to BaseName in that dir. 2150 llvm::sys::path::append(Filename, BaseName); 2183 StringRef BaseName = llvm::sys::path::filename(BaseInput); local 2188 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C), 2202 StringRef BaseName = llvm::sys::path::filename(BaseInput); local 2205 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, J 2140 MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue, StringRef BaseName, types::ID FileType) argument 2221 StringRef BaseName; local [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
H A D | cpplint.py | 808 def BaseName(self): member in class:FileInfo 3071 (error_message, fileinfo.BaseName()))
|
/external/libvpx/libvpx/tools/ |
H A D | cpplint.py | 933 def BaseName(self): member in class:FileInfo 3622 (error_message, fileinfo.BaseName()))
|
/external/clang/lib/AST/ |
H A D | ItaniumMangle.cpp | 2757 const char *BaseName = nullptr; local 2761 BaseName = "__simd64_"; 2764 BaseName = "__simd128_"; 2766 Out << strlen(BaseName) + strlen(EltName); 2767 Out << BaseName << EltName;
|