Home
last modified time | relevance | path

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

/external/clang/bindings/python/tests/cindex/
Dtest_cursor_kind.py21 assert CursorKind.UNEXPOSED_DECL.is_declaration()
Dtest_cursor.py263 assert typedef.kind.is_declaration()
/external/v8/src/parsing/
Dparse-info.cc88 bool ParseInfo::is_declaration() const { in is_declaration() function in v8::internal::ParseInfo
Dparse-info.h151 bool is_declaration() const;
Dparser.cc872 if (info->is_declaration()) { in ComputeFunctionType()
/external/llvm/test/Bindings/OCaml/
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));
646 insist (is_declaration fn);
666 insist (not (is_declaration fn));
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dvmcore.ml407 insist (is_declaration g);
416 insist (is_declaration g);
431 insist (not (is_declaration g));
432 insist (not (is_declaration g2));
438 insist (not (is_declaration g));
439 insist (not (is_declaration g2));
563 insist (is_declaration fn);
583 insist (not (is_declaration fn));
/external/clang/bindings/python/clang/
Dcindex.py576 def is_declaration(self): member in CursorKind
1387 assert self.kind.is_declaration()
/external/v8/src/
Dobjects-printer.cc1087 } else if (is_declaration()) { in SharedFunctionInfoPrint()
Dobjects.h7674 DECL_BOOLEAN_ACCESSORS(is_declaration)
Dobjects-inl.h6057 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_declaration, in SMI_ACCESSORS()
Dobjects.cc13928 shared_info->set_is_declaration(lit->is_declaration()); in InitFromFunctionLiteral()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml603 external is_declaration : llvalue -> bool = "llvm_is_declaration"
Dllvm.mli1275 (** [is_declaration g] returns [true] if the global value [g] is a declaration
1278 val is_declaration : llvalue -> bool val
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm.ml500 external is_declaration : llvalue -> bool = "llvm_is_declaration"
Dllvm.mli1118 (** [is_declaration g] returns [true] if the global value [g] is a declaration
1121 val is_declaration : llvalue -> bool val
/external/v8/src/ast/
Dast.h2588 bool is_declaration() const { return function_type() == kDeclaration; } in is_declaration() function