HomeSort by relevance Sort by last modified time
    Searched refs:getAttr (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 51 if (FD->getAttr<AnalyzerNoReturnAttr>() || FD->isNoReturn())
UndefCapturedBlockVarChecker.cpp 74 if (VD->getAttr<BlocksAttr>() || !VD->hasLocalStorage())
ObjCUnusedIVarsChecker.cpp 131 ID->getAttr<UnusedAttr>() || ID->getAttr<IBOutletAttr>() ||
132 ID->getAttr<IBOutletCollectionAttr>() ||
CheckObjCDealloc.cpp 122 ID->getAttr<IBOutletAttr>() || // Skip IBOutlets.
123 ID->getAttr<IBOutletCollectionAttr>()) // Skip IBOutletCollections.
DeadStoresChecker.cpp 214 !(VD->getAttr<UnusedAttr>() || VD->getAttr<BlocksAttr>())) {
339 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) {
NonNullParamChecker.cpp 51 const NonNullAttr *Att = FD->getAttr<NonNullAttr>();
RetainCountChecker.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 138 BlocksAttr *attr = var->getAttr<BlocksAttr>();
TransUnbridgedCasts.cpp 129 if (FD->getAttr<CFReturnsRetainedAttr>()) {
133 if (FD->getAttr<CFReturnsNotRetainedAttr>()) {
435 if (PD->getAttr<CFConsumedAttr>()) {
Transforms.cpp 91 if (FD->getAttr<CFReturnsRetainedAttr>())
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
BaseAccountType.java 667 private static boolean getAttr(AttributeSet attrs, String attribute, boolean defaultValue) {
671 private static int getAttr(AttributeSet attrs, String attribute, int defaultValue) {
675 private static String getAttr(AttributeSet attrs, String attribute) {
716 final String kind = getAttr(attrs, Attr.KIND);
    [all...]
  /external/clang/tools/libclang/
CXComment.cpp 208 return cxstring::createRef(HST->getAttr(AttrIdx).Name);
216 return cxstring::createRef(HST->getAttr(AttrIdx).Value);
527 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 318 const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>();
656 if (const SectionAttr *SA = D->getAttr<SectionAttr>())
708 if (const SectionAttr *SA = FD->getAttr<SectionAttr>())
    [all...]
CodeGenFunction.cpp 327 VecTypeHintAttr *attr = FD->getAttr<VecTypeHintAttr>();
344 WorkGroupSizeHintAttr *attr = FD->getAttr<WorkGroupSizeHintAttr>();
355 ReqdWorkGroupSizeAttr *attr = FD->getAttr<ReqdWorkGroupSizeAttr>();
    [all...]
CGDeclCXX.cpp 267 unsigned int order = D->getAttr<InitPriorityAttr>()->getPriority();
CGDecl.cpp 319 if (const SectionAttr *SA = D.getAttr<SectionAttr>())
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 202 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
SemaDeclAttr.cpp 362 if (RT->getDecl()->getAttr<LockableAttr>())
392 if (RD->getAttr<LockableAttr>())
703 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 328 if (LockReturnedAttr* At = MD->getAttr<LockReturnedAttr>()) {
358 if (LockReturnedAttr* At = FD->getAttr<LockReturnedAttr>()) {
    [all...]
  /external/clang/include/clang/AST/
Comment.h 461 const Attribute &getAttr(unsigned Idx) const {
DeclBase.h 454 template<typename T> T *getAttr() const {
    [all...]
  /external/clang/unittests/AST/
CommentParser.cpp 403 StringRef ActualName = HST->getAttr(0).Name;
409 StringRef ActualValue = HST->getAttr(0).Value;
    [all...]
  /external/clang/lib/AST/
Decl.cpp 190 if (const TypeVisibilityAttr *A = D->getAttr<TypeVisibilityAttr>()) {
196 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
    [all...]
DumpXML.cpp 494 if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>())

Completed in 475 milliseconds

1 2 3