mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 19:30:29 -05:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
//===- CocoaConventions.h - Special handling of Cocoa conventions -*- C++ -*--//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_CHECKER_DS_COCOA
|
|
#define LLVM_CLANG_CHECKER_DS_COCOA
|
|
|
|
#include "clang/Basic/IdentifierTable.h"
|
|
#include "clang/AST/Type.h"
|
|
|
|
namespace clang {
|
|
namespace cocoa {
|
|
|
|
enum NamingConvention { NoConvention, CreateRule, InitRule };
|
|
|
|
NamingConvention deriveNamingConvention(Selector S);
|
|
|
|
static inline bool followsFundamentalRule(Selector S) {
|
|
return deriveNamingConvention(S) == CreateRule;
|
|
}
|
|
|
|
bool isRefType(QualType RetTy, llvm::StringRef Prefix,
|
|
llvm::StringRef Name = llvm::StringRef());
|
|
|
|
bool isCFObjectRef(QualType T);
|
|
|
|
bool isCocoaObjectRef(QualType T);
|
|
|
|
}}
|
|
|
|
#endif
|