This file is indexed.

/usr/lib/ocaml/lablgtk2/xml_lexer.mli is in liblablgtk2-ocaml-dev 2.18.3+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
(**************************************************************************)
(*                Lablgtk                                                 *)
(*                                                                        *)
(*    This program is free software; you can redistribute it              *)
(*    and/or modify it under the terms of the GNU Library General         *)
(*    Public License as published by the Free Software Foundation         *)
(*    version 2, with the exception described in file COPYING which       *)
(*    comes with the library.                                             *)
(*                                                                        *)
(*    This program is distributed in the hope that it will be useful,     *)
(*    but WITHOUT ANY WARRANTY; without even the implied warranty of      *)
(*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       *)
(*    GNU Library General Public License for more details.                *)
(*                                                                        *)
(*    You should have received a copy of the GNU Library General          *)
(*    Public License along with this program; if not, write to the        *)
(*    Free Software Foundation, Inc., 59 Temple Place, Suite 330,         *)
(*    Boston, MA 02111-1307  USA                                          *)
(*                                                                        *)
(*                                                                        *)
(**************************************************************************)

(** Simple XML lexer *)

(** This module provides an [ocamllex] lexer for XML files. It only
    supports the most basic features of the XML specification. 

    The lexer altogether ignores the following 'events': comments,
    processing instructions, XML prolog and doctype declaration.

    The predefined entities ([&], [<], etc.) are supported. The
    replacement text for other entities whose entity value consist of
    character data can be provided to the lexer (see
    {!Xml_lexer.entities}). Internal entities declarations are {e not}
    taken into account (the lexer just skips the doctype declaration).

    [CDATA] sections and character references are supported.

    See {!Xml_lexer.strip_ws} about whitespace handling.
*)

(** {3 Error reporting} *)

type error =
  | Illegal_character of char
  | Bad_entity of string
  | Unterminated of string
  | Tag_expected
  | Attribute_expected
  | Other of string
val error_string : error -> string

exception Error of error * int
(** This exception is raised in case of an error during the
    parsing. The [int] argument indicates the character position in
    the buffer. Note that some non-conforming XML documents might not
    trigger an error. *)

(** {3 API} *)

(** The type of the XML document elements *)
type token =
  | Tag of string * (string * string) list * bool
	(** [Tag (name, attributes, empty)] denotes an opening tag 
	   with the specified [name] and [attributes]. If [empty], 
	   then the tag ended in "/>", meaning that it has no 
	   sub-elements. *)
  | Chars of string
        (** Some text between the tags *)
  | Endtag of string
        (** A closing tag *)
  | EOF
        (** End of input *)

val strip_ws : bool ref
(** Whitespace handling: if [strip_ws] is [true] (the default), 
    whitespaces next to a tag are ignored. Character data consisting 
    only of whitespaces is thus suppressed (i.e. [Chars ""] tokens are
    skipped). *)

val entities : (string * string) list ref
(** An association list of entities definitions. Initially, it
    contains the predefined entities ([ ["amp", "&"; "lt", "<" ...] ]). *)

val token : Lexing.lexbuf -> token
(** The entry point of the lexer.
    @return the next token in the buffer
    @raise Error in case of an invalid XML document *)