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