HomeSort by: relevance | last modified time | path
    Searched refs:TemplateArgumentKind (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_cursor.py 12 from clang.cindex import TemplateArgumentKind
524 self.assertEqual(foos[1].get_template_argument_kind(0), TemplateArgumentKind.INTEGRAL)
525 self.assertEqual(foos[1].get_template_argument_kind(1), TemplateArgumentKind.TYPE)
526 self.assertEqual(foos[1].get_template_argument_kind(2), TemplateArgumentKind.INTEGRAL)
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 1373 class TemplateArgumentKind(BaseEnumeration):
1375 A TemplateArgumentKind describes the kind of entity that a template argument
1383 TemplateArgumentKind.NULL = TemplateArgumentKind(0)
1384 TemplateArgumentKind.TYPE = TemplateArgumentKind(1)
1385 TemplateArgumentKind.DECLARATION = TemplateArgumentKind(2)
1386 TemplateArgumentKind.NULLPTR = TemplateArgumentKind(3
    [all...]

Completed in 20 milliseconds