mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-20 10:07:02 +00:00
Convert comments to proper Doxygen comments.
llvm-svn: 158241
This commit is contained in:
parent
4ceb928f02
commit
4280e5cf97
@ -1215,10 +1215,10 @@ public:
|
||||
const TemplateArgument &ArgPack) const;
|
||||
|
||||
enum GetBuiltinTypeError {
|
||||
GE_None, //< No error
|
||||
GE_Missing_stdio, //< Missing a type from <stdio.h>
|
||||
GE_Missing_setjmp, //< Missing a type from <setjmp.h>
|
||||
GE_Missing_ucontext //< Missing a type from <ucontext.h>
|
||||
GE_None, ///< No error
|
||||
GE_Missing_stdio, ///< Missing a type from <stdio.h>
|
||||
GE_Missing_setjmp, ///< Missing a type from <setjmp.h>
|
||||
GE_Missing_ucontext ///< Missing a type from <ucontext.h>
|
||||
};
|
||||
|
||||
/// GetBuiltinType - Return the type for the specified builtin. If
|
||||
|
@ -63,10 +63,10 @@ namespace clang {
|
||||
/// one).
|
||||
enum Mapping {
|
||||
// NOTE: 0 means "uncomputed".
|
||||
MAP_IGNORE = 1, //< Map this diagnostic to nothing, ignore it.
|
||||
MAP_WARNING = 2, //< Map this diagnostic to a warning.
|
||||
MAP_ERROR = 3, //< Map this diagnostic to an error.
|
||||
MAP_FATAL = 4 //< Map this diagnostic to a fatal error.
|
||||
MAP_IGNORE = 1, ///< Map this diagnostic to nothing, ignore it.
|
||||
MAP_WARNING = 2, ///< Map this diagnostic to a warning.
|
||||
MAP_ERROR = 3, ///< Map this diagnostic to an error.
|
||||
MAP_FATAL = 4 ///< Map this diagnostic to a fatal error.
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -34,8 +34,8 @@ public:
|
||||
virtual ~FileSystemStatCache() {}
|
||||
|
||||
enum LookupResult {
|
||||
CacheExists, //< We know the file exists and its cached stat data.
|
||||
CacheMissing //< We know that the file doesn't exist.
|
||||
CacheExists, ///< We know the file exists and its cached stat data.
|
||||
CacheMissing ///< We know that the file doesn't exist.
|
||||
};
|
||||
|
||||
/// FileSystemStatCache::get - Get the 'stat' information for the specified
|
||||
|
@ -19,7 +19,7 @@ namespace clang {
|
||||
/// OverloadedOperatorKind - Enumeration specifying the different kinds of
|
||||
/// C++ overloaded operators.
|
||||
enum OverloadedOperatorKind {
|
||||
OO_None, //< Not an overloaded operator
|
||||
OO_None, ///< Not an overloaded operator
|
||||
#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
|
||||
OO_##Name,
|
||||
#include "clang/Basic/OperatorKinds.def"
|
||||
|
@ -638,10 +638,10 @@ class CodeCompletionResult {
|
||||
public:
|
||||
/// \brief Describes the kind of result generated.
|
||||
enum ResultKind {
|
||||
RK_Declaration = 0, //< Refers to a declaration
|
||||
RK_Keyword, //< Refers to a keyword or symbol.
|
||||
RK_Macro, //< Refers to a macro
|
||||
RK_Pattern //< Refers to a precomputed pattern.
|
||||
RK_Declaration = 0, ///< Refers to a declaration
|
||||
RK_Keyword, ///< Refers to a keyword or symbol.
|
||||
RK_Macro, ///< Refers to a macro
|
||||
RK_Pattern ///< Refers to a precomputed pattern.
|
||||
};
|
||||
|
||||
/// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
|
||||
|
@ -33,11 +33,11 @@ class InclusionRewriter : public PPCallbacks {
|
||||
FileChange(SourceLocation From) : From(From) {
|
||||
}
|
||||
};
|
||||
Preprocessor &PP; //< Used to find inclusion directives.
|
||||
SourceManager &SM; //< Used to read and manage source files.
|
||||
raw_ostream &OS; //< The destination stream for rewritten contents.
|
||||
bool ShowLineMarkers; //< Show #line markers.
|
||||
bool UseLineDirective; //< Use of line directives or line markers.
|
||||
Preprocessor &PP; ///< Used to find inclusion directives.
|
||||
SourceManager &SM; ///< Used to read and manage source files.
|
||||
raw_ostream &OS; ///< The destination stream for rewritten contents.
|
||||
bool ShowLineMarkers; ///< Show #line markers.
|
||||
bool UseLineDirective; ///< Use of line directives or line markers.
|
||||
typedef std::map<unsigned, FileChange> FileChangeMap;
|
||||
FileChangeMap FileChanges; /// Tracks which files were included where.
|
||||
/// Used transitively for building up the FileChanges mapping over the
|
||||
|
@ -4620,9 +4620,9 @@ void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
|
||||
/// \brief Descripts the kind of Objective-C method that we want to find
|
||||
/// via code completion.
|
||||
enum ObjCMethodKind {
|
||||
MK_Any, //< Any kind of method, provided it means other specified criteria.
|
||||
MK_ZeroArgSelector, //< Zero-argument (unary) selector.
|
||||
MK_OneArgSelector //< One-argument selector.
|
||||
MK_Any, ///< Any kind of method, provided it means other specified criteria.
|
||||
MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
|
||||
MK_OneArgSelector ///< One-argument selector.
|
||||
};
|
||||
|
||||
static bool isAcceptableObjCSelector(Selector Sel,
|
||||
|
Loading…
x
Reference in New Issue
Block a user