This file is indexed.

/usr/include/trilinos/RTC_TokenizerRTC.hh is in libtrilinos-pamgen-dev 12.10.1-3.

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
#ifndef _TOKENIZER_H
#define _TOKENIZER_H

#include "RTC_commonRTC.hh"

#include <string>
#include <vector>
#include <stack>
#include <cassert>

namespace PG_RuntimeCompiler {

/**
 *
 */
class Tokenizer {
 public:
  Tokenizer(const std::string& body, std::string& errors);

  Tokenizer(std::vector<Token> tokens);

  static void test();

  void print();

  void printCurrLine();

  int lineNum();

  void nextLine();

  void nextToken();

  void previousToken();

  Token token() {assert(!eol()); return *_currToken;}

  bool eof() { return _currLine == _tokenizedLines.end();}

  bool eol() { return _currToken == _currLine->end();}

  bool isArg() { return _tokenizedLines.size() == 1 && _currLine->size() == 1;}

private:
  Tokenizer(const Tokenizer&) {} //no copying allowed

  bool checkStack(const std::string& op);

  bool check(const std::string& testName, const std::string& errs,
             unsigned int expectedNumLines,
             unsigned int* expectedNumTokens,
             Token** expectedTokens);

  std::vector<std::vector<Token> >           _tokenizedLines;
  std::vector<std::string>                   _stack;
  std::vector<std::vector<Token> >::iterator _currLine;
  std::vector<Token>::iterator               _currToken;
};

}
#endif