HomeSort by relevance Sort by last modified time
    Searched defs:Attr (Results 26 - 50 of 75) sorted by null

12 3

  /external/llvm/include/llvm/Support/
GraphWriter.h 260 void emitSimpleNode(const void *ID, const std::string &Attr,
264 if (!Attr.empty())
265 O << Attr << ",";
  /external/llvm/lib/CodeGen/
StackProtector.cpp 93 Attribute Attr = Fn.getFnAttribute("stack-protector-buffer-size");
94 if (Attr.isStringAttribute() &&
95 Attr.getValueAsString().getAsInteger(10, SSPBufferSize))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 42 def Attr(obj, attr):
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
170 def attr_chain(obj, attr):
175 terminated by getattr(x, attr) is None.
179 attr: the name of the chaining attribute
184 next = getattr(obj, attr)
187 next = getattr(next, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 42 def Attr(obj, attr):
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
170 def attr_chain(obj, attr):
175 terminated by getattr(x, attr) is None.
179 attr: the name of the chaining attribute
184 next = getattr(obj, attr)
187 next = getattr(next, attr)
  /external/llvm/lib/AsmParser/
LLParser.cpp 860 /// ::= <attr> | <attr> '=' <value>
898 std::string Attr = Lex.getStrVal();
905 B.addAttribute(Attr, Val);
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 264 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
267 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
277 getStreamer().EmitSymbolAttribute(Sym, Attr);
ELFAsmParser.cpp 162 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
169 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
179 getStreamer().EmitSymbolAttribute(Sym, Attr);
611 MCSymbolAttr Attr = MCAttrForString(Type);
612 if (Attr == MCSA_Invalid)
619 getStreamer().EmitSymbolAttribute(Sym, Attr);
  /external/skia/include/views/
SkWidget.h 307 enum Attr {
314 SkPaint& paint(Attr);
379 enum Attr {
384 SkPaint& paint(Attr);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 12 from lib2to3.fixer_util import Attr, Name, Call, Comma
66 self.assertStr(Attr(Name("a"), Name("b")), "a.b")
67 self.assertStr(Attr(call, Name("b")), "foo().b")
70 attr = Attr(Name("a"), Name("b"))
71 self.assertEqual(type(attr), list)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 12 from lib2to3.fixer_util import Attr, Name, Call, Comma
66 self.assertStr(Attr(Name("a"), Name("b")), "a.b")
67 self.assertStr(Attr(call, Name("b")), "foo().b")
70 attr = Attr(Name("a"), Name("b"))
71 self.assertEqual(type(attr), list)
  /external/clang/lib/Index/
CommentToXML.cpp 13 #include "clang/AST/Attr.h"
207 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
208 Result << Attr.Name;
209 if (!Attr.Value.empty())
210 Result << "=\"" << Attr.Value << "\"";
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 557 Attribute Attr = *II;
560 if (Attr.isStringAttribute()) continue;
562 Attribute::AttrKind Kind = Attr.getKindAsEnum();
736 Attribute::AttrKind Attr) const {
737 if (hasAttribute(Index, Attr)) return *this;
738 return addAttributes(C, Index, AttributeSet::get(C, Index, Attr));
805 Attribute::AttrKind Attr) const {
806 if (!hasAttribute(Index, Attr)) return *this;
807 return removeAttributes(C, Index, AttributeSet::get(C, Index, Attr));
921 bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const
    [all...]
AsmWriter.cpp     [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 60 GetFlattenedSpellings(const Record &Attr) {
61 std::vector<Record *> Spellings = Attr.getValueAsListOfDefs("Spellings");
136 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
139 for (const auto *Attr : Attrs) {
140 if (Attr->getValueAsBit("SemaHandler")) {
142 if (Attr->isSubClassOf("TargetSpecificAttr") &&
143 !Attr->isValueUnset("ParseKind")) {
144 AN = Attr->getValueAsString("ParseKind");
150 Dupes->push_back(std::make_pair(AN, Attr));
155 AN = NormalizeAttrName(Attr->getName()).str()
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
BaseAccountType.java 94 private interface Attr {
    [all...]
  /external/clang/include/clang/AST/
Comment.h 489 const Attribute &Attr = Attrs.back();
490 SourceLocation L = Attr.ValueRange.getEnd();
494 Range.setEnd(Attr.getNameLocEnd());
  /external/clang/lib/AST/
ASTDumper.cpp 16 #include "clang/AST/Attr.h"
55 // Attr names (CleanupAttr, GuardedByAttr, etc)
231 void dumpAttr(const Attr *A);
798 void ASTDumper::dumpAttr(const Attr *A) {
804 #define ATTR(X) case attr::X: OS << #X; break;
809 OS << "Attr";
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 272 Attribute Attr = *I;
273 if (Attr.isEnumAttribute()) {
275 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum()));
276 } else if (Attr.isIntAttribute()) {
278 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum()));
279 Record.push_back(Attr.getValueAsInt());
281 StringRef Kind = Attr.getKindAsString();
282 StringRef Val = Attr.getValueAsString();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 211 # Overridden in Element and Attr where localName can be Non-Null
335 class Attr(Node):
353 # Add the single child node that represents the value of the attr
452 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
453 defproperty(Attr, "localName", doc="Namespace-local name of this attribute.")
454 defproperty(Attr, "schemaType", doc="Schema type for this attribute.")
533 node = Attr(attname)
538 if not isinstance(value, Attr):
539 raise TypeError, "value must be a string or Attr object"
580 if not isinstance(node, Attr)
    [all...]

Completed in 914 milliseconds

12 3