Home
last modified time | relevance | path

Searched refs:Prefixes (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Option/
H A DOptTable.cpp73 for (const char * const *APre = A.Prefixes, in operator <()
74 * const *BPre = B.Prefixes; in operator <()
142 if (const char *const *P = getInfo(i).Prefixes) { in OptTable()
170 static bool isInput(const StringSet<> &Prefixes, StringRef Arg) { in isInput() argument
173 for (StringSet<>::const_iterator I = Prefixes.begin(), in isInput()
174 E = Prefixes.end(); I != E; ++I) in isInput()
183 for (const char * const *Pre = I->Prefixes; *Pre != nullptr; ++Pre) { in matchOption()
199 if (In.Prefixes) { in optionMatches()
201 for (size_t I = 0; In.Prefixes[I]; I++) in optionMatches()
203 if (Option.slice(0, Option.size() - InName.size()) == In.Prefixes[I]) in optionMatches()
[all …]
H A DOption.cpp61 if (Info->Prefixes) { in print()
63 for (const char *const *Pre = Info->Prefixes; *Pre != nullptr; ++Pre) { in print()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DOptParserEmitter.cpp39 std::vector<StringRef> Prefixes = R.getValueAsListOfStrings("Prefixes"); in getOptionSpelling() local
42 if (Prefixes.empty()) { in getOptionSpelling()
47 PrefixLength = Prefixes[0].size(); in getOptionSpelling()
48 return (Twine(Prefixes[0]) + Twine(Name)).str(); in getOptionSpelling()
228 PrefixesT Prefixes; in EmitOptParser() local
229 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0")); in EmitOptParser()
236 if (Prefixes.insert(std::make_pair(PrefixKey, Prefix)).second) in EmitOptParser()
246 for (const auto &Prefix : Prefixes) { in EmitOptParser()
312 OS << Prefixes[PrefixKeyT(RPrefixes.begin(), RPrefixes.end())] << ", "; in EmitOptParser()
H A DOptRSTEmitter.cpp63 std::vector<StringRef> Prefixes = R->getValueAsListOfStrings("Prefixes"); in EmitOptRST() local
64 if (!Prefixes.empty()) in EmitOptRST()
65 OS << Prefixes[0]; in EmitOptRST()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h49 unsigned Prefixes; member
128 OS << "Prefix:" << Pref.Prefixes; in print()
166 return Pref.Prefixes; in getPrefix()
642 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) { in CreatePrefix()
644 Res->Pref.Prefixes = Prefixes; in CreatePrefix()
H A DX86AsmParser.cpp4129 unsigned Prefixes = getPrefixes(Operands); in MatchAndEmitATTInstruction() local
4136 Prefixes |= X86::IP_USE_VEX; in MatchAndEmitATTInstruction()
4138 Prefixes |= X86::IP_USE_VEX2; in MatchAndEmitATTInstruction()
4140 Prefixes |= X86::IP_USE_VEX3; in MatchAndEmitATTInstruction()
4142 Prefixes |= X86::IP_USE_EVEX; in MatchAndEmitATTInstruction()
4146 Prefixes |= X86::IP_USE_DISP8; in MatchAndEmitATTInstruction()
4148 Prefixes |= X86::IP_USE_DISP32; in MatchAndEmitATTInstruction()
4150 if (Prefixes) in MatchAndEmitATTInstruction()
4151 Inst.setFlags(Prefixes); in MatchAndEmitATTInstruction()
4388 unsigned Prefixes = getPrefixes(Operands); in MatchAndEmitIntelInstruction() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DGnu.cpp1912 SmallVector<std::string, 8> Prefixes; in init() local
1918 Prefixes.push_back(std::string(GCCToolchainDir)); in init()
1922 Prefixes.push_back(D.SysRoot); in init()
1923 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot); in init()
1927 Prefixes.push_back(D.InstalledDir + "/.."); in init()
1933 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot); in init()
1960 for (const std::string &Prefix : Prefixes) { in init()
2022 const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes, in AddDefaultGCCPrefixes() argument
2048 Prefixes.push_back(CandidatePrefix); in AddDefaultGCCPrefixes()
2056 Prefixes.push_back("/opt/rh/devtoolset-10/root/usr"); in AddDefaultGCCPrefixes()
[all …]
H A DGnu.h261 SmallVectorImpl<std::string> &Prefixes,
/netbsd-src/external/mpl/bind/dist/bin/tests/system/checkzone/zones/
H A Dbad-dns-sd-reverse.db16 ; The following are *not* Service Discovery Prefixes from RFC 6763 and the
H A Dgood-dns-sd-reverse.db16 ; The following are Service Discovery Prefixes from RFC 6763 and the
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp431 const auto &Prefixes = Diags.getDiagnosticOptions().VerifyPrefixes; in ParseDirective() local
432 if (!(Prefixes.size() == 1 ? PH.Search(*Prefixes.begin(), true, true) in ParseDirective()
479 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken)) in ParseDirective()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Option/
H A DOptTable.h46 const char *const *Prefixes; member
H A DOption.h127 const char *Prefix = *Info->Prefixes; in getPrefix()
H A DOptParser.td87 list<string> Prefixes = prefixes;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1149 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10; in writeNopData() local
1150 for (uint8_t i = 0; i < Prefixes; i++) in writeNopData()
1152 const uint8_t Rest = ThisNopLength - Prefixes; in writeNopData()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc4520.txt423 3.12. LDAP authzId Prefixes
433 Prefixes are case insensitive.
436 strings, they should be short. Prefixes longer than 12 characters
439 Prefixes beginning with "x-" are for Private Use and cannot be
442 Prefixes beginning with "e-" are reserved for experiments and will be
/netbsd-src/external/mpl/bind/dist/doc/arm/
H A Dgeneral.rst109 :rfc:`3123` - P. Koch. *A DNS RR Type for Lists of Address Prefixes (APL RR).* June
339 :rfc:`7793` - M. Andrews. *Adding 100.64.0.0/10 Prefixes to the IPv4
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1330 SmallVector<SDValue,8> Prefixes; in LowerHvxConcatVectors() local
1333 Prefixes.push_back(P); in LowerHvxConcatVectors()
1340 for (unsigned i = 0, e = Prefixes.size(); i != e; ++i) { in LowerHvxConcatVectors()
1342 Res = DAG.getNode(ISD::OR, dl, ByteTy, Res, Prefixes[e-i-1]); in LowerHvxConcatVectors()
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-i386.texi30 * i386-Prefixes:: Instruction Prefixes
1107 @node i386-Prefixes
1108 @section Instruction Prefixes
H A Das.info12242 * i386-Prefixes:: Instruction Prefixes
12846 File: as.info, Node: i386-Regs, Next: i386-Prefixes, Prev: i386-Mnemonics, Up: i386-Dependent
12923 File: as.info, Node: i386-Prefixes, Next: i386-Memory, Prev: i386-Regs, Up: i386-Dependent
12925 9.16.6 Instruction Prefixes
12984 File: as.info, Node: i386-Memory, Next: i386-Jumps, Prev: i386-Prefixes, Up: i386-Dependent
28142 * bus lock prefixes, i386: i386-Prefixes. (line 36)
28217 * coprocessor wait, i386: i386-Prefixes. (line 40)
28584 * i386 instruction prefixes: i386-Prefixes. (line 6)
28645 * inhibiting interrupts, i386: i386-Prefixes. (line 36)
28663 * instruction prefixes, i386: i386-Prefixes. (line 6)
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-i386.texi30 * i386-Prefixes:: Instruction Prefixes
1227 @node i386-Prefixes
1228 @section Instruction Prefixes
H A Das.info12524 * i386-Prefixes:: Instruction Prefixes
13237 File: as.info, Node: i386-Regs, Next: i386-Prefixes, Prev: i386-Mnemonics, Up: i386-Dependent
13311 File: as.info, Node: i386-Prefixes, Next: i386-Memory, Prev: i386-Regs, Up: i386-Dependent
13313 9.16.6 Instruction Prefixes
13371 File: as.info, Node: i386-Memory, Next: i386-Jumps, Prev: i386-Prefixes, Up: i386-Dependent
28597 * bus lock prefixes, i386: i386-Prefixes. (line 36)
28671 * coprocessor wait, i386: i386-Prefixes. (line 40)
29043 * i386 instruction prefixes: i386-Prefixes. (line 6)
29104 * inhibiting interrupts, i386: i386-Prefixes. (line 36)
29123 * instruction prefixes, i386: i386-Prefixes. (line 6)
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/Proposals/
H A DVariableNames.rst359 .. [Mozilla] Mozilla Coding style: Prefixes https://firefox-source-docs.mozilla.org/tools/lint/codi…
/netbsd-src/external/bsd/flex/dist/src/
H A Dflex.skl108 %# Prefixes.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtarget.def6292 /* Prefixes for proxy variable and template. */
6307 /* Prefixes for proxy variable and template. */

12