HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
prefix2.s 0 # Prefix must not interfere with register names.
2 PREFIX pre
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 22 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) &&
27 OS << Prefix;
36 StringRef Prefix("|* ");
38 printLine(OS, Prefix, ' ', Suffix);
39 size_t PSLen = Prefix.size() + Suffix.size();
44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix);
47 printLine(OS, Prefix, ' ', Suffix);
48 printLine(OS, Prefix + "Automatically generated file, do not edit!", ' ',
50 printLine(OS, Prefix, ' ', Suffix)
    [all...]
  /external/compiler-rt/test/ubsan/TestCases/TypeCheck/
vptr-corrupted-vtable-itanium.cpp 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-CORRUPTED-VTABLE --strict-whitespace
30 VtablePrefix Prefix[2];
31 Prefix[0].Offset = 1<<21; // Greater than VptrMaxOffset
32 Prefix[0].TypeInfo = RealPrefix->TypeInfo;
35 *reinterpret_cast<void**>(Ptr) = static_cast<void*>(&Prefix[1]);
  /frameworks/base/core/tests/coretests/src/android/net/
RouteInfoTest.java 35 private IpPrefix Prefix(String prefix) {
36 return new IpPrefix(prefix);
51 assertEquals(Prefix("::/0"), r.getDestination());
56 assertEquals(Prefix("0.0.0.0/0"), r.getDestination());
61 r = new RouteInfo(Prefix("2001:db8:beef:cafe::/48"), null, "lo");
62 assertEquals(Prefix("2001:db8:beef::/48"), r.getDestination());
66 r = new RouteInfo(Prefix("192.0.2.5/24"), null);
67 assertEquals(Prefix("192.0.2.0/24"), r.getDestination());
87 r = new PatchedRouteInfo(Prefix("2001:db8:f00::ace:d00d/127"), null, "rmnet0")
    [all...]
  /external/selinux/mcstrans/share/examples/pipes/setrans.d/
pipes.conf 2 Prefix=Handle Via
  /external/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 33 const RecordPrefix *Prefix = nullptr;
37 if (auto EC = Reader.readObject(Prefix))
39 Item.Length = Prefix->RecordLen;
42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind));
49 Len = Prefix->RecordLen + 2;
  /external/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 65 /// A prefix to be matched against paths in \#include directives.
66 std::string Prefix;
68 /// True if paths beginning with this prefix should be treated as system
72 SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader)
73 : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
193 /// path starting with \p Prefix should be considered as naming a system
195 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
196 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader);
HeaderMapTypes.h 25 uint32_t Prefix; // Offset (into strings) of value prefix.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
ValueToString.c 59 CHAR16 Prefix;
85 Prefix = '0';
87 Prefix = ' ';
93 *(TempStr++) = Prefix;
149 CHAR16 Prefix;
188 Prefix = '0';
190 Prefix = ' ';
196 *(TempStr++) = Prefix;
  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 35 /// A string to prefix to error messages.
36 std::string Prefix;
45 /// setPrefix - Set the diagnostic printer prefix string, which will be
46 /// printed at the start of any diagnostics. If empty, no prefix string is
48 void setPrefix(std::string Value) { Prefix = std::move(Value); }
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 31 StringRef Prefix;
38 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix);
DwarfStringPool.cpp 18 StringRef Prefix)
19 : Pool(A), Prefix(Prefix),
29 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr;
  /external/swiftshader/third_party/LLVM/utils/
NewNightlyTest.pl 58 # -llvmgccdir Next argument specifies the llvm-gcc install prefix.
123 # Calculate the date prefix...
283 my $Prefix = "$WebDir/$DATE";
284 my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
285 my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
286 my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
408 WriteFile "$Prefix-sentdata.txt", $sentdata;
417 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
526 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
549 "| sort > $Prefix-$SubDir-Tests.txt"
    [all...]
  /external/llvm/lib/IR/
Mangler.cpp 27 Private, ///< Emit "private" prefix before each symbol.
28 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
34 const DataLayout &DL, char Prefix) {
51 if (Prefix != '\0')
52 OS << Prefix;
61 char Prefix = DL.getGlobalPrefix();
62 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix);
73 char Prefix = DL.getGlobalPrefix();
74 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix);
132 char Prefix = DL.getGlobalPrefix()
    [all...]
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 27 bool isRefType(QualType RetTy, StringRef Prefix,
  /external/clang/include/clang/StaticAnalyzer/Core/
PathDiagnosticConsumers.h 33 const std::string &Prefix,\
  /external/swiftshader/third_party/LLVM/lib/Target/
Mangler.cpp 100 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
116 const char *Prefix = MAI.getPrivateGlobalPrefix();
117 OutName.append(Prefix, Prefix+strlen(Prefix));
119 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
123 const char *Prefix = MAI.getGlobalPrefix()
    [all...]
  /external/clang/lib/Format/
BreakableToken.cpp 138 return StartColumn + Prefix.size() + Postfix.size() +
140 StartColumn + Prefix.size(),
146 StringRef Prefix, StringRef Postfix, bool InPPDirective,
149 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix) {
152 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size());
157 StringRef Prefix, StringRef Postfix, bool InPPDirective,
159 : BreakableSingleLineToken(Tok, IndentLevel, StartColumn, Prefix, Postfix,
166 StartColumn + Prefix.size() + Postfix.size()
    [all...]
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 47 NestedNameSpecifier *Prefix, IdentifierInfo *II) {
49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
52 Mockup.Prefix.setPointer(Prefix);
53 Mockup.Prefix.setInt(StoredIdentifier);
60 NestedNameSpecifier *Prefix,
63 assert((!Prefix ||
64 (Prefix->getAsType() == nullptr &
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 60 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix;
68 /// specifier as encoded within the prefix.
96 : Prefix(nullptr, StoredIdentifier), Specifier(nullptr) {}
101 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
113 /// \brief Builds a specifier combining a prefix and an identifier.
115 /// The prefix must be dependent, since nested name specifiers
119 NestedNameSpecifier *Prefix,
124 NestedNameSpecifier *Prefix,
129 NestedNameSpecifier *Prefix,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
inst.go 15 Prefix Prefixes // Prefixes applied to the instruction.
30 // each prefix byte corresponds to one slot in the array. The first zero
32 type Prefixes [14]Prefix
34 // A Prefix represents an Intel instruction prefix.
35 // The low 8 bits are the actual prefix byte encoding,
37 type Prefix uint16
40 // Metadata about the role of a prefix in an instruction.
41 PrefixImplicit Prefix = 0x8000 // prefix is implied by instruction tex
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
inst.go 15 Prefix Prefixes // Prefixes applied to the instruction.
30 // each prefix byte corresponds to one slot in the array. The first zero
32 type Prefixes [14]Prefix
34 // A Prefix represents an Intel instruction prefix.
35 // The low 8 bits are the actual prefix byte encoding,
37 type Prefix uint16
40 // Metadata about the role of a prefix in an instruction.
41 PrefixImplicit Prefix = 0x8000 // prefix is implied by instruction tex
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 143 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix);
190 StringRef Prefix = getStringOrInvalid(B.Prefix);
192 llvm::dbgs() << " " << i << ". " << Key << " -> '" << Prefix << "' '"
232 Optional<StringRef> Prefix = getString(B.Prefix);
236 if (LLVM_LIKELY(Prefix && Suffix)) {
237 DestPath.append(Prefix->begin(), Prefix->end())
    [all...]
  /external/clang/lib/Analysis/
CocoaConventions.cpp 25 bool cocoa::isRefType(QualType RetTy, StringRef Prefix,
30 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
46 // Does the name start with the prefix?
47 return Name.startswith(Prefix);

Completed in 1360 milliseconds

1 2 3 4 5 6 7 8 91011>>