Searched defs:ivar (Results 1 - 12 of 12) sorted by relevance

/external/clang/test/Modules/Inputs/
H A Ddef.h7 int ivar; variable
/external/clang/tools/libclang/
H A DCIndexUSRs.cpp121 void GenObjCIvar(StringRef ivar);
170 // The USR for an ivar declared in a class extension is based on the
777 void USRGenerator::GenObjCIvar(StringRef ivar) { argument
778 Out << '@' << ivar; local
/external/clang/lib/AST/
H A DDeclObjC.cpp51 /// getIvarDecl - This method looks up an ivar in this ContextDecl.
57 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
58 return ivar;
782 /// all_declared_ivar_begin - return first ivar declared in this class,
939 "Invalid ivar decl context!");
940 // Once a new ivar is created in any of class/class-extension/implementation
969 llvm_unreachable("invalid ivar container!");
974 assert(CD->IsClassExtension() && "invalid container for ivar!");
1191 /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
1327 ObjCIvarDecl *ivar,
1321 Create(ASTContext &C, DeclContext *DC, SourceLocation atLoc, SourceLocation L, ObjCPropertyDecl *property, Kind PK, ObjCIvarDecl *ivar, SourceLocation ivarLoc) argument
[all...]
/external/libxslt/libxslt/
H A Dxslt.c512 xsltVarInfoPtr ivar = cctxt->ivars, ivartmp; local
514 while (ivar) {
515 ivartmp = ivar;
516 ivar = ivar->next;
2249 xsltVarInfoPtr ivar; local
2251 if ((cctxt->ivar != NULL) && (cctxt->ivar->next != NULL)) {
2252 ivar = cctxt->ivar
3936 xsltVarInfoPtr ivar = cctxt->ivar; local
3973 xsltVarInfoPtr ivar = cctxt->ivar; local
[all...]
H A DxsltInternals.h1350 xsltVarInfoPtr ivar; /* topmost local variable/param. */ member in struct:_xsltCompilerCtxt
/external/svox/pico/lib/
H A Dpicocep.c967 picoos_int32 mean, ivar; local
1015 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR,
1017 prev_diag0 = cep->diag0[i] = ivar << 2; /* multiply ivar by 4 (4 used to be first entry of xsq) */
1026 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR,
1028 cep->diag0[i] += xsq[j] * ivar;
1040 ivar = getFromPdf(pdf, vecstart, cepnum, PICOCEP_WANTIVAR,
1042 cep->diag0[i] += xsq[numd + j] * ivar;
1084 /* cepnum'th delta delta ivar */
1106 ivar
1139 picoos_int32 mean = 0, ivar = 0; local
1311 picoos_int32 mean, ivar; local
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp539 ObjCIvarDecl *ivar) {
540 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
542 QualType ivarType = ivar->getType();
558 // If the ivar is private, and it's implicitly __unsafe_unretained
564 ivar->getAccessControl() == ObjCIvarDecl::Private) {
570 ivar->setType(ivarType);
579 << ivar->getDeclName()
586 << ivar->getDeclName();
592 << ivar->getDeclName()
611 /// 'ivar'
537 checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc, ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
613 setImpliedPropertyAttributeForReadOnlyProperty( ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
[all...]
H A DSemaChecking.cpp5305 ObjCIvarDecl *ivar = ref->getDecl(); local
5306 if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
/external/clang/include/clang/AST/
H A DDeclObjC.h801 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
804 void setIvarList(ObjCIvarDecl *ivar) { data().IvarList = ivar; } argument
1045 /// \brief Return the class interface that this ivar is logically contained
1046 /// in; this is either the interface where the ivar was declared, or the
1047 /// interface the ivar is conceptually a part of in the case of synthesized
1053 void setNextIvar(ObjCIvarDecl *ivar) { NextIvar = ivar; } argument
1566 /// Support for ivar initialization.
1596 /// init_iterator - Iterates through the ivar initialize
[all...]
/external/clang/lib/CodeGen/
H A DCGObjC.cpp486 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar, argument
492 ivar, 0).getAddress();
504 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
593 // Evaluate the ivar's size and alignment.
594 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
595 QualType ivarType = ivar->getType();
617 // acceptable if the ivar is __strong, which won't be true if
650 if (ivar->isBitField()) {
665 // Compute whether the ivar has strong members.
679 // alignment of the ivar
753 emitCPPObjectAtomicGetterCall(CodeGenFunction &CGF, llvm::Value *returnAddr, ObjCIvarDecl *ivar, llvm::Constant *AtomicHelperFn) argument
796 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
807 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
935 emitStructSetterCall(CodeGenFunction &CGF, ObjCMethodDecl *OMD, ObjCIvarDecl *ivar) argument
979 emitCPPObjectAtomicSetterCall(CodeGenFunction &CGF, ObjCMethodDecl *OMD, ObjCIvarDecl *ivar, llvm::Constant *AtomicHelperFn) argument
1057 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1247 const ObjCIvarDecl *ivar; member in struct:__anon52::DestroyIvar
1251 DestroyIvar(llvm::Value *addr, const ObjCIvarDecl *ivar, CodeGenFunction::Destroyer *destroyer, bool useEHCleanupForArray) argument
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp347 // Rewriting ivar access
349 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
538 // Rewriting ivar
539 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
805 // Synthesize an explicit cast to gain access to the ivar.
863 // Synthesize an explicit cast to initialize the ivar.
3270 // FIXME: If there are cases where '<' is used in ivar declaration part
3271 // of user code, then scan the ivar list and use needToScanForQualifiers
4683 // Pseudo-object operations and ivar references need special
5182 /// ivar offse
5183 RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, std::string &Result) argument
[all...]
H A DRewriteModernObjC.cpp417 // Rewriting ivar
418 void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
796 // Build name of symbol holding ivar offset.
811 // ivar in class extensions requires special treatment.
907 // Synthesize an explicit cast to gain access to the ivar.
966 // Synthesize an explicit cast to initialize the ivar.
3719 assert(false && "class not allowed as an ivar type");
3887 /// RewriteIvarOffsetSymbols - Rewrite ivar offset symbols of those ivars which
3888 /// have been referenced in an ivar access expression.
3891 // write out ivar offse
5994 RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, std::string &Result) argument
[all...]

Completed in 2850 milliseconds