Home
last modified time | relevance | path

Searched refs:is_declaration (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dplain_cpp.h74 plain_cpp_generator &generator, bool is_declaration) : in plain_printer()
75 class_printer(os, clazz, generator, is_declaration), in plain_printer()
H A Dtemplate_cpp.cc1269 bool is_declaration);
1315 bool is_declaration) : in class_printer() argument
1318 is_declaration), in class_printer()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp198 bool is_declaration = false; in IndexUnitImpl() local
218 is_declaration = form_value.Unsigned() != 0; in IndexUnitImpl()
320 if (name && !is_declaration) in IndexUnitImpl()
322 if (mangled_cstr && !is_declaration) in IndexUnitImpl()
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_cursor_kind.py30 self.assertTrue(CursorKind.UNEXPOSED_DECL.is_declaration())
H A Dtest_cursor.py315 self.assertTrue(typedef.kind.is_declaration())
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dcore.ml469 insist (is_declaration g);
478 insist (is_declaration g);
495 insist (not (is_declaration g));
496 insist (not (is_declaration g2));
502 insist (not (is_declaration g));
503 insist (not (is_declaration g2));
650 insist (is_declaration fn);
670 insist (not (is_declaration fn));
/llvm-project-15.0.7/clang/bindings/python/clang/
H A Dcindex.py671 def is_declaration(self): member in CursorKind
1695 assert self.kind.is_declaration()
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.ml704 external is_declaration : llvalue -> bool = "llvm_is_declaration"
H A Dllvm.mli1318 (** [is_declaration g] returns [true] if the global value [g] is a declaration
1321 val is_declaration : llvalue -> bool val