HomeSort by relevance Sort by last modified time
    Searched full:hasstrong (Results 1 - 4 of 4) sorted by null

  /external/clang/test/SemaObjCXX/
arc-type-traits.mm 16 struct HasStrong { id obj; };
25 TRAIT_IS_TRUE(__has_nothrow_assign, HasStrong);
34 TRAIT_IS_TRUE(__has_nothrow_copy, HasStrong);
43 TRAIT_IS_TRUE(__has_nothrow_constructor, HasStrong);
52 TRAIT_IS_FALSE(__has_trivial_assign, HasStrong);
61 TRAIT_IS_FALSE(__has_trivial_copy, HasStrong);
70 TRAIT_IS_FALSE(__has_trivial_constructor, HasStrong);
79 TRAIT_IS_FALSE(__has_trivial_destructor, HasStrong);
100 TRAIT_IS_FALSE(__is_pod, HasStrong);
109 TRAIT_IS_FALSE(__is_trivial, HasStrong);
    [all...]
  /external/clang/test/Rewriter/
modern-write-bf-abi.mm 41 + (id)__new:(const id [])objects :(NSUInteger)count :(BOOL)hasObjects :(BOOL)hasStrong :(BOOL)transferRetain {
45 newArray->_doHardRetain = (hasObjects && hasStrong);
46 newArray->_doWeakAccess = (objc_collectingEnabled() && !hasStrong);
48 newArray->_hasStrongReferences = hasStrong;
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 238 bool hasWeak = false, hasStrong = false;
255 hasStrong = true;
262 if (hasWeak && hasStrong)
  /external/clang/lib/CodeGen/
CGObjC.cpp 518 bool isAtomic, bool hasStrong) {
538 args.add(RValue::get(CGF.Builder.getInt1(hasStrong)), Context.BoolTy);
593 bool hasStrongMember() const { return HasStrong; }
607 unsigned HasStrong : 1;
622 HasStrong = false; // doesn't matter here.
699 HasStrong = recordType->getDecl()->hasObjectMember();
704 if (HasStrong) {
    [all...]

Completed in 607 milliseconds