OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CommandInfo
(Results
1 - 15
of
15
) sorted by null
/external/clang/include/clang/AST/
CommentCommandTraits.h
33
struct
CommandInfo
{
114
/// \brief True if this command is unknown. This \c
CommandInfo
object was
135
/// \returns a
CommandInfo
object for a given command name or
136
/// NULL if no
CommandInfo
object exists for this command.
137
const
CommandInfo
*getCommandInfoOrNULL(StringRef Name) const;
139
const
CommandInfo
*getCommandInfo(StringRef Name) const {
140
if (const
CommandInfo
*Info = getCommandInfoOrNULL(Name))
145
const
CommandInfo
*getTypoCorrectCommandInfo(StringRef Typo) const;
147
const
CommandInfo
*getCommandInfo(unsigned CommandID) const;
149
const
CommandInfo
*registerUnknownCommand(StringRef CommandName)
[
all
...]
CommentLexer.h
30
struct
CommandInfo
;
334
char Marker, const
CommandInfo
*Info);
341
const
CommandInfo
*Info);
/external/clang/lib/AST/
CommentCommandTraits.cpp
34
const
CommandInfo
*CommandTraits::getCommandInfoOrNULL(StringRef Name) const {
35
if (const
CommandInfo
*Info = getBuiltinCommandInfo(Name))
40
const
CommandInfo
*CommandTraits::getCommandInfo(unsigned CommandID) const {
41
if (const
CommandInfo
*Info = getBuiltinCommandInfo(CommandID))
47
HelperTypoCorrectCommandInfo(SmallVectorImpl<const
CommandInfo
*> &BestCommand,
48
StringRef Typo, const
CommandInfo
*Command) {
69
const
CommandInfo
*
76
SmallVector<const
CommandInfo
*, 2> BestCommand;
89
CommandInfo
*CommandTraits::createCommandInfoWithName(StringRef CommandName) {
94
// Value-initialize (=zero-initialize in this case) a new
CommandInfo
[
all
...]
CommentBriefParser.cpp
82
const
CommandInfo
*Info = Traits.getCommandInfo(Tok.getCommandID());
CommentParser.cpp
308
const
CommandInfo
*Info = Traits.getCommandInfo(Tok.getCommandID());
564
const
CommandInfo
*Info = Traits.getCommandInfo(Tok.getCommandID());
667
const
CommandInfo
*Info = Traits.getCommandInfo(Tok.getVerbatimBlockID());
CommentSema.cpp
94
const
CommandInfo
*Info = Traits.getCommandInfo(Comment->getCommandID());
127
const
CommandInfo
*Info = Traits.getCommandInfo(Comment->getCommandID());
164
const
CommandInfo
*Info = Traits.getCommandInfo(Comment->getCommandID());
617
const
CommandInfo
*Info = Traits.getCommandInfo(Command->getCommandID());
[
all
...]
ASTDumper.cpp
[
all
...]
/external/chromium_org/tools/gn/
commands.cc
14
CommandInfo
::
CommandInfo
()
20
CommandInfo
::
CommandInfo
(const char* in_help_short,
32
info_map[k##cmd] =
CommandInfo
(k##cmd##_HelpShort, \
commands.h
54
struct
CommandInfo
{
55
CommandInfo
();
56
CommandInfo
(const char* in_help_short,
65
typedef std::map<base::StringPiece,
CommandInfo
> CommandInfoMap;
/external/chromium_org/gpu/command_buffer/service/
common_decoder.cc
115
struct
CommandInfo
{
120
// A table of
CommandInfo
for all the commands.
121
const
CommandInfo
g_command_info[] = {
142
const
CommandInfo
& info = g_command_info[command];
gles2_cmd_decoder.cc
231
struct
CommandInfo
{
236
// A table of
CommandInfo
for all the commands.
237
const
CommandInfo
g_command_info[] = {
[
all
...]
/external/clang/tools/libclang/
CXComment.cpp
454
const
CommandInfo
*Info = Traits.getCommandInfo(BCC->getCommandID());
501
const
CommandInfo
*Info = Traits.getCommandInfo(VLC->getCommandID());
661
const
CommandInfo
*Info = Traits.getCommandInfo(C->getCommandID());
[
all
...]
/external/chromium_org/third_party/skia/src/core/
SkPictureRecord.cpp
236
struct
CommandInfo
{
250
int* pattern,
CommandInfo
* result, int numCommands) {
299
const
CommandInfo
& saveLayerInfo,
300
const
CommandInfo
& dbmInfo);
319
CommandInfo
result[SK_ARRAY_COUNT(pattern)];
350
const
CommandInfo
& saveLayerInfo,
351
const
CommandInfo
& dbmInfo) {
438
CommandInfo
result[SK_ARRAY_COUNT(pattern)];
[
all
...]
/external/skia/src/core/
SkPictureRecord.cpp
236
struct
CommandInfo
{
250
int* pattern,
CommandInfo
* result, int numCommands) {
299
const
CommandInfo
& saveLayerInfo,
300
const
CommandInfo
& dbmInfo);
319
CommandInfo
result[SK_ARRAY_COUNT(pattern)];
350
const
CommandInfo
& saveLayerInfo,
351
const
CommandInfo
& dbmInfo) {
438
CommandInfo
result[SK_ARRAY_COUNT(pattern)];
[
all
...]
/hardware/ril/libril/
ril.cpp
123
}
CommandInfo
;
133
CommandInfo
*pCI;
262
static
CommandInfo
s_commands[] = {
[
all
...]
Completed in 149 milliseconds