OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cxtype
(Results
1 - 4
of
4
) sorted by null
/external/clang/tools/libclang/
CXType.h
24
namespace
cxtype
{
namespace in namespace:clang
26
CXType
MakeCXType(QualType T, CXTranslationUnit TU);
28
}} // end namespace clang::
cxtype
CXType.cpp
18
#include "
CXType
.h"
99
CXType
cxtype
::MakeCXType(QualType T, CXTranslationUnit TU) {
117
CXType
CT = { TK, { TK == CXType_Invalid ? 0 : T.getAsOpaquePtr(), TU }};
121
using
cxtype
::MakeCXType;
123
static inline QualType GetQualType(
CXType
CT) {
127
static inline CXTranslationUnit GetTU(
CXType
CT) {
133
CXType
clang_getCursorType(CXCursor C) {
192
return
cxtype
::MakeCXType(getCursorCXXBaseSpecifier(C)->getType(), TU);
195
return
cxtype
::MakeCXType(getCursorMemberRef(C).first->getType(), TU)
[
all
...]
CXCursor.cpp
19
#include "
CXType
.h"
[
all
...]
CIndex.cpp
23
#include "
CXType
.h"
[
all
...]
Completed in 187 milliseconds