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.
50 lines
1.4 KiB
50 lines
1.4 KiB
(*
|
|
* Copyright (c) 2013 - 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.
|
|
*)
|
|
|
|
open! IStd
|
|
|
|
val is_cf_non_null_alloc : Typ.Procname.t -> bool
|
|
|
|
val is_alloc : Typ.Procname.t -> bool
|
|
|
|
val is_alloc_model : Typ.t -> Typ.Procname.t -> bool
|
|
|
|
val is_builtin_expect : Typ.Procname.t -> bool
|
|
|
|
val is_builtin_object_size : Typ.Procname.t -> bool
|
|
|
|
val is_std_addressof : Typ.Procname.t -> bool
|
|
|
|
val is_replace_with_deref_first_arg : Typ.Procname.t -> bool
|
|
|
|
val is_objc_memory_model_controlled : string -> bool
|
|
|
|
val is_assert_log : Typ.Procname.t -> bool
|
|
|
|
val is_handleFailureInMethod : string -> bool
|
|
|
|
val is_modeled_builtin : string -> bool
|
|
|
|
val is_release_builtin : string -> Clang_ast_t.type_ptr -> bool
|
|
|
|
val is_retain_builtin : string -> Clang_ast_t.type_ptr -> bool
|
|
|
|
val is_modeled_attribute : string -> bool
|
|
|
|
val is_toll_free_bridging : Typ.Procname.t -> bool
|
|
|
|
val is_cf_retain_release : Typ.Procname.t -> bool
|
|
|
|
val get_predefined_model_method_signature :
|
|
Typ.Name.t -> string
|
|
-> (Typ.Name.t -> string -> Typ.Procname.objc_cpp_method_kind -> Typ.Procname.t)
|
|
-> CFrontend_config.clang_lang -> CMethod_signature.method_signature option
|
|
|
|
val is_dispatch_function_name : string -> (string * int) option
|