This file is indexed.

/usr/include/firefox-esr-52/mozISpellI18NUtil.h is in firefox-esr-dev 52.8.1esr-1~deb8u1.

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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/mozISpellI18NUtil.idl
 */

#ifndef __gen_mozISpellI18NUtil_h__
#define __gen_mozISpellI18NUtil_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif

/* starting interface:    mozISpellI18NUtil */
#define MOZISPELLI18NUTIL_IID_STR "b075d5dc-1df1-441a-bebf-680d8caaa19c"

#define MOZISPELLI18NUTIL_IID \
  {0xb075d5dc, 0x1df1, 0x441a, \
    { 0xbe, 0xbf, 0x68, 0x0d, 0x8c, 0xaa, 0xa1, 0x9c }}

class NS_NO_VTABLE mozISpellI18NUtil : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(MOZISPELLI18NUTIL_IID)

  enum {
    kCheck = 0U,
    kSuggest = 1U
  };

  /* readonly attribute wstring language; */
  NS_IMETHOD GetLanguage(char16_t * *aLanguage) = 0;

  /* void getRootForm (in wstring word, in uint32_t type, [array, size_is (count)] out wstring words, out uint32_t count); */
  NS_IMETHOD GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count) = 0;

  /* void fromRootForm (in wstring word, [array, size_is (icount)] in wstring iwords, in uint32_t icount, [array, size_is (ocount)] out wstring owords, out uint32_t ocount); */
  NS_IMETHOD FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount) = 0;

  /* void findNextWord (in wstring word, in uint32_t length, in uint32_t offset, out int32_t begin, out int32_t end); */
  NS_IMETHOD FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(mozISpellI18NUtil, MOZISPELLI18NUTIL_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MOZISPELLI18NUTIL \
  NS_IMETHOD GetLanguage(char16_t * *aLanguage) override; \
  NS_IMETHOD GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count) override; \
  NS_IMETHOD FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount) override; \
  NS_IMETHOD FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end) override; 

/* Use this macro when declaring the members of this interface when the
   class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_MOZISPELLI18NUTIL \
  NS_METHOD GetLanguage(char16_t * *aLanguage); \
  NS_METHOD GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count); \
  NS_METHOD FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount); \
  NS_METHOD FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MOZISPELLI18NUTIL(_to) \
  NS_IMETHOD GetLanguage(char16_t * *aLanguage) override { return _to GetLanguage(aLanguage); } \
  NS_IMETHOD GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count) override { return _to GetRootForm(word, type, words, count); } \
  NS_IMETHOD FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount) override { return _to FromRootForm(word, iwords, icount, owords, ocount); } \
  NS_IMETHOD FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end) override { return _to FindNextWord(word, length, offset, begin, end); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MOZISPELLI18NUTIL(_to) \
  NS_IMETHOD GetLanguage(char16_t * *aLanguage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLanguage(aLanguage); } \
  NS_IMETHOD GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRootForm(word, type, words, count); } \
  NS_IMETHOD FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FromRootForm(word, iwords, icount, owords, ocount); } \
  NS_IMETHOD FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FindNextWord(word, length, offset, begin, end); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class _MYCLASS_ : public mozISpellI18NUtil
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MOZISPELLI18NUTIL

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, mozISpellI18NUtil)

_MYCLASS_::_MYCLASS_()
{
  /* member initializers and constructor code */
}

_MYCLASS_::~_MYCLASS_()
{
  /* destructor code */
}

/* readonly attribute wstring language; */
NS_IMETHODIMP _MYCLASS_::GetLanguage(char16_t * *aLanguage)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void getRootForm (in wstring word, in uint32_t type, [array, size_is (count)] out wstring words, out uint32_t count); */
NS_IMETHODIMP _MYCLASS_::GetRootForm(const char16_t * word, uint32_t type, char16_t * **words, uint32_t *count)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void fromRootForm (in wstring word, [array, size_is (icount)] in wstring iwords, in uint32_t icount, [array, size_is (ocount)] out wstring owords, out uint32_t ocount); */
NS_IMETHODIMP _MYCLASS_::FromRootForm(const char16_t * word, const char16_t * *iwords, uint32_t icount, char16_t * **owords, uint32_t *ocount)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void findNextWord (in wstring word, in uint32_t length, in uint32_t offset, out int32_t begin, out int32_t end); */
NS_IMETHODIMP _MYCLASS_::FindNextWord(const char16_t * word, uint32_t length, uint32_t offset, int32_t *begin, int32_t *end)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_mozISpellI18NUtil_h__ */