Searched defs:BaseName (Results 1 - 12 of 12) sorted by relevance

/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp76 std::string BaseName = macroName(Base->getName()); local
93 << BaseName << "(Type, Base)\n"; local
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp137 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 DMCJIT.cpp107 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 DSPIRVReader.cpp194 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 DSPIRVUtil.cpp1201 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 DSSAUpdater.cpp361 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 DSSAUpdater.cpp326 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 Dfile_path.cc109 // 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 DDriver.cpp2138 /// 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 Dcpplint.py808 def BaseName(self): member in class:FileInfo
3071 (error_message, fileinfo.BaseName()))
/external/libvpx/libvpx/tools/
H A Dcpplint.py933 def BaseName(self): member in class:FileInfo
3622 (error_message, fileinfo.BaseName()))
/external/clang/lib/AST/
H A DItaniumMangle.cpp2757 const char *BaseName = nullptr; local
2761 BaseName = "__simd64_";
2764 BaseName = "__simd128_";
2766 Out << strlen(BaseName) + strlen(EltName);
2767 Out << BaseName << EltName;

Completed in 7367 milliseconds