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

1 2 3 4

  /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/gdb/darwin-x86/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])]
  /prebuilts/gdb/linux-x86/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])]
  /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)
  /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")) +
  /external/llvm/lib/CodeGen/
TargetFrameLoweringImpl.cpp 32 auto Attr = MF.getFunction()->getFnAttribute("no-frame-pointer-elim");
33 return Attr.getValueAsString() == "true";
  /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...]

Completed in 488 milliseconds

1 2 3 4