Searched defs:PropertyAttributes (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dproperty-details.h36 enum PropertyAttributes { enum
80 PropertyDetails(PropertyAttributes attributes,
102 PropertyAttributes attributes() { return AttributesField::decode(value_); }
120 class AttributesField: public BitField<PropertyAttributes, 4, 3> {};
/external/chromium_org/v8/src/
H A Dproperty-details.h36 enum PropertyAttributes { enum
214 PropertyDetails(PropertyAttributes attributes,
225 PropertyDetails(PropertyAttributes attributes,
242 PropertyDetails CopyAddAttributes(PropertyAttributes new_attributes) {
244 static_cast<PropertyAttributes>(attributes() | new_attributes);
262 PropertyAttributes attributes() const {
293 class AttributesField: public BitField<PropertyAttributes, 3, 3> {};
319 PropertyDetails(int value, PropertyAttributes attributes) {
/external/llvm/lib/IR/
H A DDIBuilder.cpp457 unsigned PropertyAttributes) {
473 ConstantInt::get(Type::getInt32Ty(VMContext), PropertyAttributes)
509 unsigned PropertyAttributes,
518 ConstantInt::get(Type::getInt32Ty(VMContext), PropertyAttributes),
451 createObjCIVar(StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, DIType Ty, StringRef PropertyName, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes) argument
505 createObjCProperty(StringRef Name, DIFile File, unsigned LineNumber, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes, DIType Ty) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1027 unsigned PropertyAttributes = 0; local
1029 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readonly;
1031 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readwrite;
1033 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_assign;
1035 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_retain;
1037 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_copy;
1039 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_nonatomic;
1040 if (PropertyAttributes)
1042 PropertyAttributes);

Completed in 133 milliseconds