Searched refs:Suffix (Results 1 - 25 of 118) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTableGenBackend.cpp22 StringRef Suffix) {
24 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) &&
27 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size();
30 OS << Suffix << '\n'; local
36 StringRef Suffix(" *|");
37 printLine(OS, Prefix, ' ', Suffix);
38 size_t PSLen = Prefix.size() + Suffix.size();
43 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix);
46 printLine(OS, Prefix, ' ', Suffix);
48 Suffix);
21 printLine(raw_ostream &OS, const Twine &Prefix, char Fill, StringRef Suffix) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderMapTypes.h25 uint32_t Suffix; // Offset (into strings) of value suffix. member in struct:clang::HMapBucket
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderMap.cpp144 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
191 StringRef Suffix = getStringOrInvalid(B.Suffix); local
193 << Suffix << "'\n"; local
233 Optional<StringRef> Suffix = getString(B.Suffix); local
236 if (LLVM_LIKELY(Prefix && Suffix)) {
238 DestPath.append(Suffix->begin(), Suffix
[all...]
H A DPreprocessor.cpp1147 SmallVector<Token, 32> Suffix; local
1152 Suffix.push_back(Result);
1156 CollectPpImportSuffix(Suffix);
1157 if (Suffix.back().isNot(tok::semi)) {
1159 EnterTokens(Suffix);
1166 SourceLocation SemiLoc = Suffix.back().getLocation();
1179 /*HashLoc*/ SourceLocation(), ImportTok, Suffix.front(), SemiLoc);
1186 Suffix.emplace_back();
1187 Suffix.back().startToken();
1188 Suffix
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGlobPattern.h43 Optional<StringRef> Suffix; member in class:llvm::GlobPattern
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMipsLinux.cpp125 const char *Suffix; local
128 Suffix = ".o";
131 Suffix = ".a";
134 Suffix = ".so";
138 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTwine.h425 Twine concat(const Twine &Suffix) const;
488 inline Twine Twine::concat(const Twine &Suffix) const {
490 if (isNull() || Suffix.isNull())
495 return Suffix;
496 if (Suffix.isEmpty())
503 NewRHS.twine = &Suffix;
509 if (Suffix.isUnary()) {
510 NewRHS = Suffix.LHS;
511 NewRHSKind = Suffix.getLHSKind();
H A DStringRef.h286 /// Check if this string ends with the given \p Suffix.
288 bool endswith(StringRef Suffix) const {
289 return Length >= Suffix.Length &&
290 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
293 /// Check if this string ends with the given \p Suffix, ignoring case.
295 bool endswith_lower(StringRef Suffix) const;
681 bool consume_back(StringRef Suffix) {
682 if (!endswith(Suffix))
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DHexagon.cpp147 llvm::StringLiteral Suffix; member in struct:CPUSuffix
161 return Item->Suffix.data();
166 for (const CPUSuffix &Suffix : Suffixes)
167 Values.push_back(Suffix.Name);
/freebsd-12-stable/sys/contrib/dev/acpica/common/
H A Dadfile.c294 * Suffix - New extension.
306 char *Suffix)
318 strlen (InputFilename) + strlen (Suffix) + 2);
332 strcat (Position, Suffix);
339 strcat (NewFilename, Suffix);
304 FlGenerateFilename( char *InputFilename, char *Suffix) argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsResource.h107 uint16_t getDataVersion() const { return Suffix->DataVersion; }
108 uint16_t getLanguage() const { return Suffix->Language; }
109 uint16_t getMemoryFlags() const { return Suffix->MemoryFlags; }
110 uint16_t getMajorVersion() const { return Suffix->Version >> 16; }
111 uint16_t getMinorVersion() const { return Suffix->Version; }
112 uint32_t getCharacteristics() const { return Suffix->Characteristics; }
132 const WinResHeaderSuffix *Suffix = nullptr; member in class:llvm::object::ResourceEntryRef
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h103 // Suffix to use when creating extracted function (appended to the original
106 std::string Suffix; member in class:llvm::CodeExtractor
124 std::string Suffix = "");
134 std::string Suffix = "");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp127 Pat.Suffix = S.drop_front();
148 if (Suffix)
149 return S.endswith(*Suffix);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DListReducer.h121 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end());
123 Expected<TestResult> Result = doTest(Prefix, Suffix);
130 TheList.swap(Suffix);
H A DMiscompilation.cpp53 std::vector<std::string> &Suffix) override;
62 std::vector<std::string> &Suffix) {
63 // First, run the program with just the Suffix passes. If it is still broken
65 outs() << "Checking to see if '" << getPassesString(Suffix)
69 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/,
73 BD.setPassesToRun(Suffix);
88 if (Suffix.empty()) {
147 if (Suffix.empty())
150 outs() << "Checking to see if '" << getPassesString(Suffix)
156 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResul
61 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp103 bool MCAsmParser::addErrorSuffix(const Twine &Suffix) { argument
108 Suffix.toVector(PErr.Msg);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h109 bool addErrorSuffix(const Twine &Suffix) { argument
110 return getParser().addErrorSuffix(Suffix);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCLowerMASSVEntries.cpp93 StringRef Suffix = getCPUSuffix(Subtarget); local
95 std::string MASSVEntryName = GenericName + Suffix.str();
H A DPPCMCInstLower.cpp44 StringRef Suffix; local
46 Suffix = "$non_lazy_ptr";
48 if (!Suffix.empty())
59 Name += Suffix;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp132 const char *Suffix; member in struct:__anon2990::DriverSuffix
159 StringRef Suffix(DriverSuffixes[i].Suffix);
160 if (ProgName.endswith(Suffix)) {
161 Pos = ProgName.size() - Suffix.size();
212 size_t SuffixEnd = SuffixPos + strlen(DS->Suffix);
399 const char *Suffix; local
402 Suffix = IsITANMSVCWindows ? ".obj" : ".o";
405 Suffix = IsITANMSVCWindows ? ".lib" : ".a";
408 Suffix
670 StringRef Suffix = local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp117 const GlobalValue *GV, StringRef Suffix, const TargetMachine &TM) const {
118 assert(!Suffix.empty());
123 NameStr.append(Suffix.begin(), Suffix.end());
116 getSymbolWithGlobalValueBase( const GlobalValue *GV, StringRef Suffix, const TargetMachine &TM) const argument
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp64 for (const auto &Suffix : kResourceDirSuffixes) {
66 llvm::SmallString<32> relative_path(Suffix);
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd8_private.h33 CPpmd8_Context_Ref Suffix; member in struct:CPpmd8_Context_
114 p->NS2BSIndx[Ppmd8_GetContext(p, p->MinContext->Suffix)->NumStats] + \
/freebsd-12-stable/sys/contrib/dev/acpica/include/
H A Dacapps.h319 char *Suffix);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp51 void ARMTargetStreamer::emitInst(uint32_t Inst, char Suffix) { argument
56 switch (Suffix) {
68 Size = (Suffix == 'n' ? 2 : 4);
81 llvm_unreachable("Invalid Suffix");

Completed in 150 milliseconds

12345