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

1 2 3

  /external/clang/lib/Sema/
TargetAttributesSema.h 16 class AttributeList;
23 const AttributeList &Attr, Sema &S) const;
TargetAttributesSema.cpp 25 const AttributeList &Attr, Sema &S) const {
30 const AttributeList &Attr, Sema &S) {
64 const AttributeList &Attr, Sema &S) const {
74 static void HandleMBlazeInterruptHandlerAttr(Decl *d, const AttributeList &Attr,
89 static void HandleMBlazeSaveVolatilesAttr(Decl *d, const AttributeList &Attr,
109 bool ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr,
124 const AttributeList& Attr,
154 static void HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
187 for (AttributeList *nextAttr = Attr.getNext(); nextAttr;
189 if (nextAttr->getKind() == AttributeList::AT_dllexport)
    [all...]
AttributeList.cpp 1 //===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
10 // This file defines the AttributeList class implementation
14 #include "clang/Sema/AttributeList.h"
20 size_t AttributeList::allocated_size() const {
22 return (sizeof(AttributeList) + NumArgs * sizeof(Expr*));
32 assert(size >= sizeof(AttributeList));
34 return ((size - sizeof(AttributeList)) / sizeof(void*));
41 if (AttributeList *attr = FreeLists[index]) {
51 void AttributeFactory::reclaimPool(AttributeList *cur) {
56 AttributeList *next = cur->NextInPool
    [all...]
SemaDeclAttr.cpp 202 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
215 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
249 static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
278 static bool checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
301 const AttributeList &Attr,
354 static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
377 static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
412 static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
433 const AttributeList &Attr) {
449 static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr
    [all...]
SemaType.cpp 53 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
59 case AttributeList::AT_objc_gc:
64 case AttributeList::AT_objc_ownership:
93 case AttributeList::AT_objc_gc: \
94 case AttributeList::AT_objc_ownership
98 case AttributeList::AT_noreturn: \
99 case AttributeList::AT_cdecl: \
100 case AttributeList::AT_fastcall: \
101 case AttributeList::AT_stdcall: \
102 case AttributeList::AT_thiscall:
    [all...]
  /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
46 /// AttributeList - Represents GCC's __attribute__ declaration. There are
54 class AttributeList { // TODO: This should really be called ParsedAttribute
90 AttributeList *NextInPosition;
93 AttributeList *NextInPool;
113 AttributeList(const AttributeList &); // DO NOT IMPLEMENT
114 void operator=(const AttributeList &); // DO NOT IMPLEMENT
116 ~AttributeList(); // DO NOT IMPLEMEN
    [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();
  /dalvik/dx/src/com/android/dx/cf/iface/
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();
StdMethod.java 41 AttributeList attributes) {
  /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)
HandlerBase.java 205 public void startElement (String name, AttributeList attributes)
  /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;
69 AttributeList attribs = method.getAttributes();
81 * Gets the annotations out of a given {@link AttributeList}. This
89 public static Annotations getAnnotations(AttributeList attribs) {
116 AttributeList attribs = cf.getAttributes();
174 private static Annotations getAnnotations0(AttributeList attribs) {
201 * {@link AttributeList}, if any, translating it to an annotation.
207 private static Annotation getSignature(AttributeList attribs) {
220 * {@link AttributeList}, if any, translating it to an annotation.
230 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 701 milliseconds

1 2 3