HomeSort by relevance Sort by last modified time
    Searched refs:AttributeFactory (Results 1 - 14 of 14) sorted by null

  /external/clang/lib/Sema/
AttributeList.cpp 34 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize;
36 return AttributeFactory::TypeTagForDatatypeAllocSize;
38 return AttributeFactory::PropertyAllocSize;
42 AttributeFactory::AttributeFactory() {
46 AttributeFactory::~AttributeFactory() {}
54 void *AttributeFactory::allocate(size_t size) {
65 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment);
68 void AttributeFactory::reclaimPool(AttributeList *cur)
    [all...]
SemaDecl.cpp     [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
FieldListParser.java 40 * @param attributeFactory {@code non-null;} attribute factory to use
43 AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
73 return AttributeFactory.CTX_FIELD;
MethodListParser.java 40 * @param attributeFactory {@code non-null;} attribute factory to use
43 int offset, AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
73 return AttributeFactory.CTX_METHOD;
AttributeFactory.java 32 public class AttributeFactory {
51 public AttributeFactory() {
AttributeListParser.java 40 private final AttributeFactory attributeFactory;
56 * @param context attribute parsing context (see {@link AttributeFactory})
58 * @param attributeFactory {@code non-null;} attribute factory to use
61 AttributeFactory attributeFactory) {
66 if (attributeFactory == null) {
67 throw new NullPointerException("attributeFactory == null");
75 this.attributeFactory = attributeFactory;
    [all...]
MemberListParser.java 45 private final AttributeFactory attributeFactory;
60 * @param attributeFactory {@code non-null;} attribute factory to use
63 int offset, AttributeFactory attributeFactory) {
72 if (attributeFactory == null) {
73 throw new NullPointerException("attributeFactory == null");
79 this.attributeFactory = attributeFactory;
211 attributeFactory);
    [all...]
DirectClassFile.java 146 private AttributeFactory attributeFactory;
221 * @param attributeFactory {@code non-null;} the attribute factory
223 public void setAttributeFactory(AttributeFactory attributeFactory) {
224 if (attributeFactory == null) {
225 throw new NullPointerException("attributeFactory == null");
228 this.attributeFactory = attributeFactory;
534 new FieldListParser(this, thisClass, at, attributeFactory);
    [all...]
StdAttributeFactory.java 61 * Standard subclass of {@link AttributeFactory}, which knows how to parse
65 extends AttributeFactory {
  /external/clang/include/clang/Sema/
AttributeList.h 318 friend class AttributeFactory;
477 class AttributeFactory {
529 AttributeFactory();
530 ~AttributeFactory();
534 AttributeFactory &Factory;
552 AttributePool(AttributeFactory &factory) : Factory(factory), Head(nullptr) {}
559 AttributeFactory &getFactory() const { return Factory; }
602 void *memory = allocate(AttributeFactory::AvailabilityAllocSize);
630 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize);
653 void *memory = allocate(AttributeFactory::PropertyAllocSize)
    [all...]
DeclSpec.h 419 DeclSpec(AttributeFactory &attrFactory)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 216 AttributeFactory AttrFactory;
244 AttributeFactory &getAttrFactory() { return AttrFactory; }
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 316 milliseconds