OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DeclarationName
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
DeclarationName.cpp
1
//===--
DeclarationName
.cpp - Declaration names implementation --*- C++ -*-===//
10
// This file implements the
DeclarationName
and DeclarationNameTable
16
#include "clang/AST/
DeclarationName
.h"
59
/// This identifier is stored here rather than directly in
DeclarationName
so as
76
int
DeclarationName
::compare(
DeclarationName
LHS,
DeclarationName
RHS) {
81
case
DeclarationName
::Identifier: {
90
case
DeclarationName
::ObjCZeroArgSelector:
91
case
DeclarationName
::ObjCOneArgSelector
[
all
...]
/external/clang/include/clang/AST/
DeclarationName.h
1
//===--
DeclarationName
.h - Representation of declaration names -*- C++ -*-===//
10
// This file declares the
DeclarationName
and DeclarationNameTable classes.
35
///
DeclarationName
- The name of a declaration. In the common case,
41
class
DeclarationName
{
129
DeclarationName
(CXXSpecialName *Name)
137
DeclarationName
(CXXOperatorIdName *Name)
143
DeclarationName
(CXXLiteralOperatorIdName *Name)
150
DeclarationName
(uintptr_t Ptr) : Ptr(Ptr) { }
160
///
DeclarationName
- Used to create an empty selector.
161
DeclarationName
() : Ptr(0) {
[
all
...]
Completed in 1704 milliseconds