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

1 2 3

  /external/llvm/lib/Support/
ARMBuildAttrs.cpp 17 ARMBuildAttrs::AttrType Attr;
73 StringRef AttrTypeAsString(unsigned Attr, bool HasTagPrefix) {
74 return AttrTypeAsString(static_cast<AttrType>(Attr), HasTagPrefix);
77 StringRef AttrTypeAsString(AttrType Attr, bool HasTagPrefix) {
80 if (ARMAttributeTags[TI].Attr == Attr)
90 return ARMAttributeTags[TI].Attr;
Threading.cpp 47 pthread_attr_t Attr;
51 if (::pthread_attr_init(&Attr) != 0)
56 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
61 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
68 ::pthread_attr_destroy(&Attr);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
36 args.extend(Attr(Name(u'collections'), Name(u'Callable')))
fix_intern.py 11 from ..fixer_util import Name, Attr, touch_import
39 Attr(Name(u"sys"), Name(u"intern")) +
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
27 attr = Attr(Name(u"sys"), call)
28 attr[1].children[0].prefix = results["dot"].prefix
29 attr.append(Subscript(index))
30 return Node(syms.power, attr, prefix=node.prefix)
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
36 args.extend(Attr(Name(u'collections'), Name(u'Callable')))
fix_intern.py 11 from ..fixer_util import Name, Attr, touch_import
39 Attr(Name(u"sys"), Name(u"intern")) +
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
27 attr = Attr(Name(u"sys"), call)
28 attr[1].children[0].prefix = results["dot"].prefix
29 attr.append(Subscript(index))
30 return Node(syms.power, attr, prefix=node.prefix)
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
  /external/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp 41 uint16_t Attr = Data.getULEB128(OffsetPtr);
52 if (Attr == 0 && Form == 0)
54 AttributeSpecs.push_back(AttributeSpec(Attr, Form));
74 const char *attrString = AttributeString(Spec.Attr);
78 OS << format("DW_AT_Unknown_%x", Spec.Attr);
91 DWARFAbbreviationDeclaration::findAttributeIndex(uint16_t attr) const {
93 if (AttributeSpecs[i].Attr == attr)
  /external/skia/include/xml/
SkDOM.h 29 typedef SkDOMAttr Attr;
52 const Attr* getFirstAttr(const Node*) const;
53 const Attr* getNextAttr(const Node*, const Attr*) const;
54 const char* getAttrName(const Node*, const Attr*) const;
55 const char* getAttrValue(const Node*, const Attr*) const;
83 const Attr* fAttr;
84 const Attr* fStop;
  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 16 * The <code>Attr</code> interface represents an attribute in an
19 * <p><code>Attr</code> objects inherit the <code>Node</code> interface, but
24 * <code>null</code> value for <code>Attr</code> objects. The DOM takes the
29 * <code>Attr</code> nodes may not be immediate children of a
33 * DOM need to be aware that <code>Attr</code> nodes have some things in
43 * attribute on the <code>Attr</code> instance can also be used to retrieve
58 * the child nodes of the <code>Attr</code> node may be either
68 * <code>nodeValue</code> attributes of an <code>Attr</code> node initially
73 * the string value directly or by changing the <code>Attr</code> child
90 * <th>Initial <code>Attr.value</code></th
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
24 uint16_t Attr;
46 uint32_t findAttributeIndex(uint16_t attr) const;
  /external/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
42 /// Attr - This represents one attribute.
43 class Attr {
50 /// attribute defined in Attr.td file.
77 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex,
85 attr::Kind getKind() const {
86 return static_cast<attr::Kind>(AttrKind);
107 Attr *clone(ASTContext &C) const
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 262 dwarf::Attribute Attr = AbbrevData[i].getAttribute();
267 OutStreamer.AddComment(dwarf::AttributeString(Attr));
268 if (Attr == dwarf::DW_AT_accessibility)
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 131 AttributeSet Attr =
136 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
149 AttributeSet Attr = AttributeSet();
152 Attr = Attr.addAttribute(C, AttributeSet::FunctionIndex,
155 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
168 AttributeSet Attr =
171 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
176 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
69 if (handleAttr(Attr, D))
71 TL = Attr.getModifiedLoc();
113 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back();
115 Attr.Kind = Kind;
116 Attr.Loc = Loc;
117 Attr.ModifiedType = TL.getModifiedLoc().getType();
118 Attr.Dcl = D;
119 Attr.FullyMigratable = FullyMigratable;
188 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs[i]
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 101 byte Attr; // Endpoint transfer type.

Completed in 168 milliseconds

1 2 3