HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 101 - 125 of 733) sorted by null

1 2 3 45 6 7 8 91011>>

  /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");
44 OS << Name;
60 /// a suffix on their name indicating the number of words of arguments they
101 StringRef Name = GV->getName();
104 // mangle" flag in the name.
105 if (Name[0] == '\1')
    [all...]
  /external/llvm/lib/MC/
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...]
MCSectionELF.cpp 23 // should be printed before the section name
24 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
28 if (Name == ".text" || Name == ".data" ||
29 (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
35 static void printName(raw_ostream &OS, StringRef Name) {
36 if (Name.find_first_not_of("0123456789_."
38 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) {
39 OS << Name;
43 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B)
    [all...]
MCSymbol.cpp 68 // The name for this MCSymbol is required to be a valid target name. However,
69 // some targets support quoting names with funny characters. If the name
71 StringRef Name = getName();
72 if (!NameNeedsQuoting(Name)) {
73 OS << Name;
78 for (unsigned I = 0, E = Name.size(); I != E; ++I) {
79 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.str());
71 SmallString<256> Name;
72 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "CPI"
81 // Create a symbol for the name.
82 return Ctx.GetOrCreateSymbol(Name.str());
  /external/llvm/lib/Transforms/Utils/
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/utils/TableGen/
FastISelEmitter.cpp 35 std::string Name;
426 // Determine the target's namespace name.
650 OS << "(" << InstNS << Memo.Name << ", ";
742 OS << "(" << InstNS << Memo.Name << ", ";
870 // Determine the target's namespace name.
  /external/lzma/CPP/7zip/Common/
RegisterArc.h 13 const wchar_t *Name;
RegisterCodec.h 14 const wchar_t *Name;
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/
SDL_syscdrom.h 28 /* Get the name of the specified drive */
29 const char *(*Name)(int drive);
  /external/skia/src/effects/
SkLumaColorFilter.cpp 68 static const char* Name() { return "Luminance-to-Alpha"; }
  /external/skia/src/gpu/effects/
GrBezierEffect.h 87 static const char* Name() { return "Conic"; }
154 static const char* Name() { return "Quad"; }
223 static const char* Name() { return "Cubic"; }
GrBicubicEffect.h 27 static const char* Name() { return "Bicubic"; }
GrConvexPolyEffect.h 62 static const char* Name() { return "ConvexPoly"; }
GrCustomCoordsTextureEffect.h 30 static const char* Name() { return "Texture"; }
GrDitherEffect.cpp 27 static const char* Name() { return "Dither"; }
GrSimpleTextureEffect.h 53 static const char* Name() { return "Texture"; }
  /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...]

Completed in 2428 milliseconds

1 2 3 45 6 7 8 91011>>