/external/llvm/lib/MC/ |
MCStreamer.cpp | 285 StringRef Prefix = getContext().getAsmInfo().getPrivateGlobalPrefix(); 286 if (LastSymbol && LastSymbol->getName().startswith(Prefix)) {
|
MCDwarf.cpp | 537 StringRef Prefix) { 563 Streamer.AddComment(Twine(Prefix) + " = " + EncStr); [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 115 ATTRIBUTE Prefix 1003 string
|
/external/llvm/tools/llc/ |
llc.cpp | 57 cl::Prefix,
|
/external/clang/lib/AST/ |
MicrosoftMangle.cpp | 40 void mangle(const NamedDecl *D, StringRef Prefix = "?"); 157 StringRef Prefix) { 173 Out << Prefix; [all...] |
ItaniumMangle.cpp | 224 void mangle(const NamedDecl *D, StringRef Prefix = "_Z"); 388 void CXXNameMangler::mangle(const NamedDecl *D, StringRef Prefix) { 394 // Adding the prefix can cause problems when one file has a "foo" and 412 Out << Prefix; 700 /// i.e. if there is more prefix "to the right". 755 // In all of these cases, we should have no prefix. 917 /*prefix*/ 0, 923 /*prefix*/ 0, 928 /*prefix*/ 0, [all...] |
ASTContext.cpp | [all...] |
/external/llvm/lib/VMCore/ |
AsmWriter.cpp | 89 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) { 91 switch (Prefix) { 92 default: llvm_unreachable("Bad prefix!"); [all...] |
/external/llvm/tools/llvm-mc/ |
llvm-mc.cpp | 95 cl::value_desc("directory"), cl::Prefix);
|
/external/llvm/lib/CodeGen/ |
MachineBasicBlock.cpp | 51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); 52 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
|
/external/clang/lib/Lex/ |
Lexer.cpp | [all...] |
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | [all...] |
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
pac_library_unittest.js | 155 // Invalid prefix. 157 t.expectFalse(isInNetEx("127.0.0.1", "127.0.0.1")); // Missing '/' in prefix. 306 // Prefix with the test name that generated the log.
|
/external/llvm/lib/Support/ |
CommandLine.cpp | 338 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix; 370 /// see if this is a prefix or grouped option. If so, split arg into output an 385 if (PGOpt->getFormattingFlag() == cl::Prefix) { [all...] |
/external/v8/test/mjsunit/ |
strict-mode.js | 267 // Prefix increment with eval or arguments 275 // Prefix decrement with eval or arguments 314 // Prefix unary operators other than delete, ++, -- are valid in strict mode [all...] |
/external/clang/include/clang/AST/ |
RecursiveASTVisitor.h | 529 if (NestedNameSpecifierLoc Prefix = NNS.getPrefix()) 530 TRY_TO(TraverseNestedNameSpecifierLoc(Prefix)); [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | [all...] |
/external/llvm/include/llvm/TableGen/ |
Record.h | [all...] |
/external/oprofile/events/i386/westmere/ |
unit_masks | 95 0x01 lcp Length Change Prefix stall cycles
|
/external/clang/lib/CodeGen/ |
CGObjCMac.cpp | [all...] |
CGBuiltin.cpp | 36 // Get the name, skip over the __builtin_ prefix (if necessary). 42 // that prefix labels. [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMAsmPrinter.cpp | 800 static MCSymbol *getPICLabel(const char *Prefix, unsigned FunctionNumber, 803 MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix) [all...] |
/external/llvm/include/llvm/Support/ |
CommandLine.h | 120 // Prefix - This option allows arguments that are otherwise unrecognized to be 121 // matched by options that are a prefix of the actual value. This is useful for 123 // '-L../../include' where -l or -L are the actual flags. When prefix is 135 Prefix = 0x100, // Can this option directly prefix its value? [all...] |
/external/clang/lib/Sema/ |
SemaExprCXX.cpp | 96 // code below is permitted to look at the prefix of the 107 NestedNameSpecifier *Prefix = 0; 110 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) { 112 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data())); [all...] |