/external/clang/lib/Sema/ |
AttributeList.cpp | 23 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize; 25 return AttributeFactory::TypeTagForDatatypeAllocSize; 27 return AttributeFactory::PropertyAllocSize; 31 AttributeFactory::AttributeFactory() { 35 AttributeFactory::~AttributeFactory() {} 43 void *AttributeFactory::allocate(size_t size) { 54 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment); 57 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 | 272 friend class AttributeFactory; 441 class AttributeFactory { 491 AttributeFactory(); 492 ~AttributeFactory(); 496 AttributeFactory &Factory; 514 AttributePool(AttributeFactory &factory) : Factory(factory), Head(0) {} 521 AttributeFactory &getFactory() const { return Factory; } 566 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); 584 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); 610 void *memory = allocate(AttributeFactory::PropertyAllocSize) [all...] |
DeclSpec.h | 408 DeclSpec(AttributeFactory &attrFactory) [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
Archive.h | 29 class AttributeFactory;
|
/frameworks/compile/mclinker/include/mcld/Support/ |
TargetRegistry.h | 32 class AttributeFactory;
|
/external/clang/include/clang/Parse/ |
Parser.h | 199 AttributeFactory AttrFactory; 227 AttributeFactory &getAttrFactory() { return AttrFactory; } [all...] |
/external/clang/lib/Parse/ |
ParseObjc.cpp | [all...] |
/prebuilts/sdk/tools/lib/ |
dx.jar | |