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

1 2 3 4

  /external/clang/lib/Sema/
TargetAttributesSema.h 16 class AttributeList;
23 const AttributeList &Attr, Sema &S) const;
AttributeList.cpp 1 //===--- AttributeList.cpp --------------------------------------*- C++ -*-===//
10 // This file defines the AttributeList class implementation
14 #include "clang/Sema/AttributeList.h"
22 size_t AttributeList::allocated_size() const {
28 return (sizeof(AttributeList) + NumArgs * sizeof(Expr*));
38 assert(size >= sizeof(AttributeList));
40 return ((size - sizeof(AttributeList)) / sizeof(void*));
47 if (AttributeList *attr = FreeLists[index]) {
57 void AttributeFactory::reclaimPool(AttributeList *cur) {
62 AttributeList *next = cur->NextInPool
    [all...]
SemaStmtAttr.cpp 27 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A,
48 static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A,
51 case AttributeList::UnknownAttribute:
56 case AttributeList::AT_FallThrough:
67 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
70 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
SemaDeclAttr.cpp 210 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
224 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
324 const AttributeList &Attr) {
375 static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
417 const AttributeList &Attr,
499 const AttributeList &Attr) {
515 static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
525 const AttributeList &Attr) {
538 const AttributeList &Attr,
564 static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr)
    [all...]
TargetAttributesSema.cpp 25 const AttributeList &Attr, Sema &S) const {
30 const AttributeList &Attr, Sema &S) {
66 const AttributeList &Attr, Sema &S) const {
77 const AttributeList& Attr,
131 static void HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
178 static void HandleDLLExportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
213 const AttributeList &Attr, Sema &S) const {
218 case AttributeList::AT_DLLImport: HandleDLLImportAttr(D, Attr, S);
220 case AttributeList::AT_DLLExport: HandleDLLExportAttr(D, Attr, S);
236 static void HandleMips16Attr(Decl *D, const AttributeList &Attr, Sema &S)
    [all...]
SemaType.cpp 66 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
71 case AttributeList::AT_ObjCGC: WhichType = TDS_Pointer; break;
72 case AttributeList::AT_ObjCOwnership: WhichType = TDS_ObjCObjOrBlock; break;
99 case AttributeList::AT_ObjCGC: \
100 case AttributeList::AT_ObjCOwnership
104 case AttributeList::AT_NoReturn: \
105 case AttributeList::AT_CDecl: \
106 case AttributeList::AT_FastCall: \
107 case AttributeList::AT_StdCall: \
108 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
47 /// AttributeList - Represents a syntactic attribute.
56 class AttributeList { // TODO: This should really be called ParsedAttribute
112 AttributeList *NextInPosition;
115 AttributeList *NextInPool;
174 AttributeList(const AttributeList &) LLVM_DELETED_FUNCTION;
175 void operator=(const AttributeList &) LLVM_DELETED_FUNCTION;
177 ~AttributeList() LLVM_DELETED_FUNCTION
    [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();
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLMetaCharsetParser.h 51 typedef Vector<pair<String, String> > AttributeList;
53 static WTF::TextEncoding encodingFromMetaAttributes(const AttributeList&
  /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 516 milliseconds

1 2 3 4