/external/llvm/lib/IR/ |
Mangler.cpp | 1 //===-- Mangler.cpp - Self-contained c/asm llvm name mangler --------------===// 10 // Unified name mangler for assembly backends. 27 StringRef Name = GVName.toStringRef(TmpData); 28 assert(!Name.empty() && "getNameWithPrefix requires non-empty name"); 31 // mangle" flag in the name. 32 if (Name[0] == '\1') { 33 OS << Name.substr(1); 46 OS << Name; 73 /// Microsoft fastcall and stdcall functions require a suffix on their name [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
MCExternalSymbolizer.cpp | 65 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address, 67 if (Name) { 68 SymbolicOp.AddSymbol.Name = Name; 70 // If Name is a C++ symbol name put the human readable name in a comment. 82 if (!Name && !IsBranch) 88 if (SymbolicOp.AddSymbol.Name) { 89 StringRef Name(SymbolicOp.AddSymbol.Name) [all...] |
/external/llvm/lib/MC/ |
MCSectionELF.cpp | 23 // should be printed before the section name. 24 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name, 31 if (Name == ".text" || Name == ".data" || 32 (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS())) 38 static void printName(raw_ostream &OS, StringRef Name) { 39 if (Name.find_first_not_of("0123456789_." 41 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) { 42 OS << Name; 46 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) [all...] |
MCSymbol.cpp | 62 // The name for this MCSymbol is required to be a valid target name. However, 63 // some targets support quoting names with funny characters. If the name 65 StringRef Name = getName(); 66 if (!NameNeedsQuoting(Name)) { 67 OS << Name; 72 for (unsigned I = 0, E = Name.size(); I != E; ++I) { 73 char C = Name[I];
|
/external/llvm/lib/Target/AArch64/Disassembler/ |
AArch64ExternalSymbolizer.cpp | 77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType, 79 if (Name) { 80 SymbolicOp.AddSymbol.Name = Name; 166 if (SymbolicOp.AddSymbol.Name) { 167 StringRef Name(SymbolicOp.AddSymbol.Name); 168 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Name); 181 if (SymbolicOp.SubtractSymbol.Name) { 182 StringRef Name(SymbolicOp.SubtractSymbol.Name) [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430MCInstLower.cpp | 54 SmallString<256> Name; 55 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "JTI" 64 // Create a symbol for the name. 65 return Ctx.GetOrCreateSymbol(Name); 71 SmallString<256> Name; 72 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "CPI" 81 // Create a symbol for the name. 82 return Ctx.GetOrCreateSymbol(Name);
|
/external/llvm/lib/Transforms/ObjCARC/ |
ProvenanceAnalysisEvaluator.cpp | 42 StringRef Name = V->getName(); 43 if (Name.startswith("\1")) 44 return Name.substr(1); 45 return Name;
|
/external/llvm/lib/Transforms/Utils/ |
ASanStackFrameLayout.cpp | 79 const char *Name = Vars[i].Name; 84 StackDescription << " " << Offset << " " << Size << " " << strlen(Name) 85 << " " << Name;
|
MetaRenamer.cpp | 76 StringRef Name = AI->getName(); 77 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1)) 86 StringRef Name = GI->getName(); 87 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1)) 108 StringRef Name = FI->getName(); 109 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1) [all...] |
/external/llvm/tools/llvm-cov/ |
TestingSupport.cpp | 54 StringRef Name; 55 if (Section.getName(Name)) 57 if (Name == "__llvm_prf_names") { 59 } else if (Name == "__llvm_covmap") {
|
/external/llvm/tools/llvm-pdbdump/ |
ClassDefinitionDumper.cpp | 36 std::string Name = Class.getName();
|
/external/lzma/CPP/7zip/Common/ |
RegisterArc.h | 13 const wchar_t *Name;
|
RegisterCodec.h | 14 const wchar_t *Name;
|
/external/skia/bench/ |
Benchmark.cpp | 14 const char* SkTriState::Name[] = { "default", "true", "false" };
|
/external/v8/src/arm/ |
constants-arm.cc | 56 const char* Registers::Name(int reg) { 83 const char* VFPRegisters::Name(int reg, bool is_double) { 89 int VFPRegisters::Number(const char* name, bool* is_double) { 91 if (strcmp(names_[i], name) == 0) { 102 // No register with the requested name found. 107 int Registers::Number(const char* name) { 110 if (strcmp(names_[i], name) == 0) { 118 if (strcmp(aliases_[i].name, name) == 0) { 124 // No register with the requested name found [all...] |
/external/v8/src/mips/ |
constants-mips.cc | 49 const char* Registers::Name(int reg) { 60 int Registers::Number(const char* name) { 63 if (strcmp(names_[i], name) == 0) { 71 if (strcmp(aliases_[i].name, name) == 0) { 77 // No register with the reguested name found. 95 const char* FPURegisters::Name(int creg) { 106 int FPURegisters::Number(const char* name) { 109 if (strcmp(names_[i], name) == 0) { 117 if (strcmp(aliases_[i].name, name) == 0) [all...] |
/external/v8/src/mips64/ |
constants-mips64.cc | 49 const char* Registers::Name(int reg) { 60 int Registers::Number(const char* name) { 63 if (strcmp(names_[i], name) == 0) { 71 if (strcmp(aliases_[i].name, name) == 0) { 77 // No register with the reguested name found. 95 const char* FPURegisters::Name(int creg) { 106 int FPURegisters::Number(const char* name) { 109 if (strcmp(names_[i], name) == 0) { 117 if (strcmp(aliases_[i].name, name) == 0) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_except.py | 5 - "except E, T:" where T is a name: 9 - "except E, T:" where T is not a name, tuple or list: 15 name. 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms 56 comma.replace(Name(u"as", prefix=u" ")) 58 if N.type != token.NAME: 60 new_N = Name(self.new_name(), prefix=u" ") 78 assign = Assign(target, Attr(new_N, Name(u'args')))
|
fix_execfile.py | 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node, 35 open_call = Node(syms.power, [Name(u"open"), open_args]) 36 read = [Node(syms.trailer, [Dot(), Name(u'read')]), 45 compile_call = Call(Name(u"compile"), compile_args, u"") 52 return Call(Name(u"exec"), args, prefix=node.prefix)
|
fix_idioms.py | 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms 105 test = Call(Name(u"isinstance"), [x, Comma(), T]) 108 test = Node(syms.not_test, [Name(u"not"), test]) 114 one.replace(Name(u"True", prefix=one.prefix)) 123 list_call.replace(Name(u"sorted", prefix=list_call.prefix)) 127 simple_expr.replace(Call(Name(u"sorted"), [new],
|
fix_imports.py | 6 from ..fixer_util import Name, attr_chain 127 import_mod.replace(Name(new_name, prefix=import_mod.prefix)) 145 bare_name.replace(Name(new_name, prefix=bare_name.prefix))
|
fix_map.py | 25 from ..fixer_util import Name, Call, ListComp, in_special_context 43 (fp=NAME | vfpdef< '(' fp=NAME ')'> ) ':' xp=any 67 new = Call(Name(u"list"), [new]) 79 args.children[0].type == token.NAME and \ 89 new = Call(Name(u"list"), [new])
|
fix_metaclass.py | 23 from ..fixer_util import Name, syms, Node, Leaf 168 # Node(classdef, ['class', 'name', '(', arglist, ')', ':', suite]) 172 # Node(classdef, ['class', 'name', '(', 'Parent', ')', ':', suite]) 178 # Node(classdef, ['class', 'name', '(', ')', ':', suite]) 183 # Node(classdef, ['class', 'name', ':', suite])
|
fix_next.py | 12 from ..fixer_util import Name, Call, find_binding 27 name='next' 28 parameters< '(' NAME ')' > any+ > 51 name = results.get("name") 55 attr.replace(Name(u"__next__", prefix=attr.prefix)) 59 node.replace(Call(Name(u"next", prefix=node.prefix), base)) 60 elif name: 61 n = Name(u"__next__", prefix=name.prefix [all...] |
fix_print.py | 21 from ..fixer_util import Name, Call, Comma, String, is_tuple 25 """atom< '(' [atom|STRING|NAME] ')' >""" 44 bare_print.replace(Call(Name(u"print"), [], 47 assert node.children[0] == Name(u"print") 73 n_stmt = Call(Name(u"print"), l_args) 81 (Name(s_kwd),
|