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

1 2 3 4 5 6 7 8

  /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) {
45 AttributeList attribs = getAttributes();
Member.java 74 public AttributeList getAttributes();
StdMember.java 38 private final AttributeList attributes;
49 AttributeList attributes) {
113 public final 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 175 static unsigned getNumAttributeArgs(const AttributeList &Attr) {
181 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr,
194 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
203 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
212 static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &Attr,
221 static bool checkUInt32Argument(Sema &S, const AttributeList &Attr,
267 const AttributeList &Attr,
314 bool Sema::checkStringLiteralArgumentAttr(const AttributeList &Attr,
350 const AttributeList &Attr) {
357 const AttributeList &Attr)
    [all...]
SemaStmtAttr.cpp 26 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A,
56 static Attr *handleLoopHintAttr(Sema &S, Stmt *St, const AttributeList &A,
226 static Attr *handleOpenCLUnrollHint(Sema &S, Stmt *St, const AttributeList &A,
272 static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A,
275 case AttributeList::UnknownAttribute:
280 case AttributeList::AT_FallThrough:
282 case AttributeList::AT_LoopHint:
284 case AttributeList::AT_OpenCLUnrollHint:
295 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
298 for (const AttributeList* l = AttrList; l; l = l->getNext())
    [all...]
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_CDecl: \
106 case AttributeList::AT_FastCall: \
107 case AttributeList::AT_StdCall: \
108 case AttributeList::AT_ThisCall: \
109 case AttributeList::AT_Pascal:
    [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/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
AttributesTest.cpp 24 AttributeList ASs[] = {AttributeList::get(C, 1, Attribute::ZExt),
25 AttributeList::get(C, 2, Attribute::SExt)};
27 AttributeList SetA = AttributeList::get(C, ASs);
28 AttributeList SetB = AttributeList::get(C, ASs);
44 AttributeList ASs[] = {AttributeList::get(C, 2, Attribute::ZExt),
45 AttributeList::get(C, 1, Attribute::SExt)}
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Attributes.h 319 /// the AttributeList object. The function attributes are at index
320 /// `AttributeList::FunctionIndex', the return value is at index
321 /// `AttributeList::ReturnIndex', and the attributes for the parameters start at
322 /// index `AttributeList::FirstArgIndex'.
323 class AttributeList {
343 /// Create an AttributeList with the specified parameters in it.
344 static AttributeList get(LLVMContext &C,
346 static AttributeList get(LLVMContext &C,
349 /// Create an AttributeList from attribute sets for a function, its
351 static AttributeList get(LLVMContext &C, AttributeSet FnAttrs
    [all...]
Function.h 78 AttributeList AttributeSets; ///< Parameter attributes
210 AttributeList getAttributes() const { return AttributeSets; }
213 void setAttributes(AttributeList Attrs) { AttributeSets = Attrs; }
217 addAttribute(AttributeList::FunctionIndex, Kind);
222 addAttribute(AttributeList::FunctionIndex,
228 addAttribute(AttributeList::FunctionIndex, Attr);
233 removeAttribute(AttributeList::FunctionIndex, Kind);
239 getContext(), AttributeList::FunctionIndex, Kind));
318 return getAttribute(AttributeList::FunctionIndex, Kind);
323 return getAttribute(AttributeList::FunctionIndex, Kind)
    [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
54 /// Describes the trailing object for Availability attribute in AttributeList.
81 /// AttributeList as an argument.
85 /// AttributeList - Represents a syntactic attribute.
94 class AttributeList { // TODO: This should really be called ParsedAttribute
162 AttributeList *NextInPosition;
165 AttributeList *NextInPool;
229 AttributeList(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) {
143 public AttributeList getAttributes() {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 140 AttributeList Attr = AttributeList().addAttribute(
141 C, AttributeList::FunctionIndex, Attribute::NoUnwind);
156 AttributeList Attr = AttributeList();
159 Attr = Attr.addAttribute(C, AttributeList::FunctionIndex,
174 AttributeList Attr = AttributeList().addAttribute(
175 C, AttributeList::FunctionIndex, Attribute::NoUnwind);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Statepoint.cpp 69 llvm::parseStatepointDirectivesFromAttrs(AttributeList AS) {
73 AS.getAttribute(AttributeList::FunctionIndex, "statepoint-id");
80 Attribute AttrNumPatchBytes = AS.getAttribute(AttributeList::FunctionIndex,
Attributes.cpp 12 // AttributeListImpl, and AttributeList classes.
796 /// Map from AttributeList index to the internal array index. Adding one happens
801 return Index == AttributeList::FunctionIndex ? 0 : Index + 1;
816 static_assert(attrIdxToArrayIdx(AttributeList::FunctionIndex) == 0U,
836 AttributeList(const_cast<AttributeListImpl *>(this)).dump();
841 // AttributeList Construction and Mutation Methods
844 AttributeList AttributeList::getImpl(LLVMContext &C,
867 return AttributeList(PA);
870 AttributeList
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 31 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) {
121 AttributeList attribs = cf.getAttributes();
179 private static Annotations getAnnotations0(AttributeList attribs) {
206 * {@link AttributeList}, if any, translating it to an annotation.
212 private static Annotation getSignature(AttributeList attribs) {
224 private static Annotation getSourceDebugExtension(AttributeList attribs) {
237 * {@link AttributeList}, if any, translating it to an annotation
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
GuidProtocolPpiXml.py 86 AttributeList = \
102 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
143 AttributeList = \
155 AttributeList = \
169 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
204 AttributeList = \
215 AttributeList = \
228 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
262 AttributeList = \
270 AttributeList = \
    [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) {

Completed in 2398 milliseconds

1 2 3 4 5 6 7 8