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.
26 lines
819 B
26 lines
819 B
(*
|
|
* 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
|
|
|
|
(** Android lifecycle types and their lifecycle methods that are called by the framework *)
|
|
|
|
val drawable_prefix : string
|
|
(** prefix for Drawable fields in generated resources *)
|
|
|
|
val is_autocloseable : Tenv.t -> Typ.Name.t -> bool
|
|
|
|
val is_view : Tenv.t -> Typ.Name.t -> bool
|
|
(** return true if [typename] <: android.view.View *)
|
|
|
|
val is_fragment : Tenv.t -> Typ.Name.t -> bool
|
|
|
|
val is_destroy_method : Typ.Procname.t -> bool
|
|
(** return true if [procname] is a special lifecycle cleanup method *)
|