You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
61 lines
1.8 KiB
8 years ago
|
(*
|
||
|
* Copyright (c) 2016 - present Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*)
|
||
|
|
||
8 years ago
|
open! IStd
|
||
|
|
||
8 years ago
|
type t = string * string list (* (name, [param1,...,paramK]) *)
|
||
|
|
||
8 years ago
|
val captured_variables_cxx_ref : Clang_ast_t.decl -> Clang_ast_t.named_decl_info list
|
||
8 years ago
|
|
||
|
val call_method : string -> Clang_ast_t.stmt -> bool
|
||
|
|
||
8 years ago
|
val property_name_contains_word : string -> Clang_ast_t.decl -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val is_objc_extension : CLintersContext.context -> bool
|
||
8 years ago
|
|
||
|
val is_syntactically_global_var : Clang_ast_t.decl -> bool
|
||
|
|
||
|
val is_const_expr_var : Clang_ast_t.decl -> bool
|
||
|
|
||
8 years ago
|
val call_function_named : string list -> Clang_ast_t.stmt -> bool
|
||
8 years ago
|
|
||
|
val is_strong_property : Clang_ast_t.decl -> bool
|
||
|
|
||
|
val is_assign_property : Clang_ast_t.decl -> bool
|
||
|
|
||
|
val is_property_pointer_type : Clang_ast_t.decl -> bool
|
||
|
|
||
|
val context_in_synchronized_block : CLintersContext.context -> bool
|
||
|
|
||
|
val is_ivar_atomic : Clang_ast_t.stmt -> bool
|
||
|
|
||
|
val is_method_property_accessor_of_ivar : Clang_ast_t.stmt -> CLintersContext.context -> bool
|
||
|
|
||
|
val is_objc_constructor : CLintersContext.context -> bool
|
||
|
|
||
|
val is_objc_dealloc : CLintersContext.context -> bool
|
||
|
|
||
8 years ago
|
val captures_cxx_references : Clang_ast_t.decl -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val is_binop_with_kind : string -> Clang_ast_t.stmt -> bool
|
||
|
|
||
|
val is_unop_with_kind : string -> Clang_ast_t.stmt -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val isa : string -> Clang_ast_t.stmt -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val is_stmt : string -> Clang_ast_t.stmt -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val is_decl : string -> Clang_ast_t.decl -> bool
|
||
8 years ago
|
|
||
8 years ago
|
val pp_predicate : Format.formatter -> t -> unit
|
||
8 years ago
|
|
||
|
val decl_unavailable_in_supported_ios_sdk : Clang_ast_t.decl -> bool
|
||
|
|
||
|
val get_available_attr_ios_sdk : Clang_ast_t.decl -> string option
|