Exemplo n.º 1
0
 public CXToken *GetToken(CXSourceLocation sourceLocation) => clang.getToken(this, sourceLocation);
Exemplo n.º 2
0
 public CXCursor GetCursor(CXSourceLocation location) => clang.getCursor(this, location);
Exemplo n.º 3
0
 public static CXSourceRange Create(CXSourceLocation begin, CXSourceLocation end) => clang.getRange(begin, end);
Exemplo n.º 4
0
 public static extern void getSpellingLocation(CXSourceLocation location, [NativeTypeName("CXFile *")] void **file, [NativeTypeName("unsigned int *")] uint *line, [NativeTypeName("unsigned int *")] uint *column, [NativeTypeName("unsigned int *")] uint *offset);
Exemplo n.º 5
0
 public static extern CXSourceRange getRange(CXSourceLocation begin, CXSourceLocation end);