HomeSort by relevance Sort by last modified time
    Searched refs:AttributeList (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /dalvik/dx/src/com/android/dx/cf/iface/
HasAttribute.java 30 public AttributeList getAttributes();
AttributeList.java 22 public interface AttributeList {
25 * {@code AttributeList} interface itself doesn't provide any means
StdField.java 38 AttributeList attributes) {
44 AttributeList attribs = getAttributes();
Member.java 73 public AttributeList getAttributes();
StdMember.java 38 private final AttributeList attributes;
49 AttributeList attributes) {
107 public final AttributeList getAttributes() {
ClassFile.java 113 public AttributeList getAttributes();
  /external/clang/lib/Sema/
AttributeList.cpp 1 //===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
10 // This file defines the AttributeList class implementation
14 #include "clang/Sema/AttributeList.h"
34 size_t AttributeList::allocated_size() const {
40 return (sizeof(AttributeList) + NumArgs * sizeof(ArgsUnion));
50 assert(size >= sizeof(AttributeList));
52 return ((size - sizeof(AttributeList)) / sizeof(void*));
59 if (AttributeList *attr = FreeLists[index]) {
69 void AttributeFactory::reclaimPool(AttributeList *cur) {
74 AttributeList *next = cur->NextInPool
    [all...]
SemaDeclAttr.cpp 171 static unsigned getNumAttributeArgs(const AttributeList &Attr) {
177 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr,
190 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
199 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
208 static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &Attr,
217 static bool checkUInt32Argument(Sema &S, const AttributeList &Attr,
263 const AttributeList &Attr,
310 bool Sema::checkStringLiteralArgumentAttr(const AttributeList &Attr,
346 const AttributeList &Attr) {
378 const AttributeList &Attr)
    [all...]
SemaStmtAttr.cpp 26 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A,
46 static Attr *handleLoopHintAttr(Sema &S, Stmt *St, const AttributeList &A,
207 static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A,
210 case AttributeList::UnknownAttribute:
215 case AttributeList::AT_FallThrough:
217 case AttributeList::AT_LoopHint:
228 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
231 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
SemaType.cpp 65 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
70 case AttributeList::AT_ObjCGC: WhichType = TDS_Pointer; break;
71 case AttributeList::AT_ObjCOwnership: WhichType = TDS_ObjCObjOrBlock; break;
100 case AttributeList::AT_ObjCGC: \
101 case AttributeList::AT_ObjCOwnership
105 case AttributeList::AT_NoReturn: \
106 case AttributeList::AT_CDecl: \
107 case AttributeList::AT_FastCall: \
108 case AttributeList::AT_StdCall: \
109 case AttributeList::AT_ThisCall:
    [all...]
  /system/connectivity/shill/net/
attribute_list.cc 40 bool AttributeList::CreateAttribute(
41 int id, AttributeList::NewFromIdMethod factory) {
50 bool AttributeList::CreateControlAttribute(int id) {
55 bool AttributeList::CreateNl80211Attribute(
61 bool AttributeList::CreateAndInitAttribute(
62 const AttributeList::NewFromIdMethod& factory,
70 bool AttributeList::InitAttributeFromValue(int id, const ByteString& value) {
77 void AttributeList::Print(int log_level, int indent) const {
86 bool AttributeList::IterateAttributes(
88 const AttributeList::AttributeMethod& method)
    [all...]
attribute_list.h 34 class AttributeList;
35 typedef scoped_refptr<const AttributeList> AttributeListConstRefPtr;
36 typedef scoped_refptr<AttributeList> AttributeListRefPtr;
42 class SHILL_EXPORT AttributeList : public base::RefCounted<AttributeList> {
48 AttributeList() {}
139 friend class base::RefCounted<AttributeList>;
140 virtual ~AttributeList() {}
152 DISALLOW_COPY_AND_ASSIGN(AttributeList);
156 // in an |AttributeList|. This class is really only useful if the calle
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 22 public interface AttributeList {
25 * {@code AttributeList} interface itself doesn't provide any means
Member.java 73 public AttributeList getAttributes();
StdMember.java 38 private final AttributeList attributes;
49 AttributeList attributes) {
107 public final AttributeList getAttributes() {
StdField.java 38 AttributeList attributes) {
72 AttributeList attribs = getAttributes();
  /external/clang/include/clang/Sema/
AttributeList.h 1 //===--- AttributeList.h - Parsed attribute sets ----------------*- C++ -*-===//
10 // This file defines the AttributeList class, which is used to collect
59 /// AttributeList as an argument.
63 /// AttributeList - Represents a syntactic attribute.
72 class AttributeList { // TODO: This should really be called ParsedAttribute
134 AttributeList *NextInPosition;
137 AttributeList *NextInPool;
207 AttributeList(const AttributeList &) = delete;
208 void operator=(const AttributeList &) = delete
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 21 import com.android.dx.cf.iface.AttributeList;
44 private final AttributeList attributes;
56 ByteCatchList catches, AttributeList attributes) {
142 public AttributeList getAttributes() {
  /libcore/luni/src/main/java/org/xml/sax/
AttributeList.java 4 // $Id: AttributeList.java,v 1.7 2004/04/26 17:34:34 dmegginson Exp $
35 * from the AttributeList. First, it can iterate through the entire
39 * public void startElement (String name, AttributeList atts) {
56 * public void startElement (String name, AttributeList atts) {
73 public interface AttributeList {
196 // end of AttributeList.java
DocumentHandler.java 129 * @see org.xml.sax.AttributeList
131 public abstract void startElement (String name, AttributeList atts)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 1 // SAX default implementation for AttributeList.
9 import org.xml.sax.AttributeList;
13 * Default implementation for AttributeList.
22 * <p>AttributeList implements the deprecated SAX1 {@link
23 * org.xml.sax.AttributeList AttributeList} interface, and has been
28 * {@link org.xml.sax.AttributeList AttributeList} interface. This
35 * private AttributeList myatts;
37 * public void startElement (String name, AttributeList atts
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
FieldListParser.java 19 import com.android.dx.cf.iface.AttributeList;
79 AttributeList attributes) {
MethodListParser.java 19 import com.android.dx.cf.iface.AttributeList;
79 AttributeList attributes) {
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 30 import com.android.dx.cf.iface.AttributeList;
68 AttributeList attribs = method.getAttributes();
80 * Gets the annotations out of a given {@link AttributeList}. This
88 public static Annotations getAnnotations(AttributeList attribs) {
115 AttributeList attribs = cf.getAttributes();
173 private static Annotations getAnnotations0(AttributeList attribs) {
200 * {@link AttributeList}, if any, translating it to an annotation.
206 private static Annotation getSignature(AttributeList attribs) {
219 * {@link AttributeList}, if any, translating it to an annotation.
229 private static Annotation translateEnclosingMethod(AttributeList attribs)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 23 import com.android.dx.cf.iface.AttributeList;
84 AttributeList attribs = method.getAttributes();
87 AttributeList codeAttribs = attCode.getAttributes();
168 public AttributeList getAttributes() {

Completed in 453 milliseconds

1 2 3 4 5 6