This file is indexed.

/usr/include/CLucene/queryParser/QueryParserTokenManager.h is in libclucene-dev 2.3.3.4-4build1.

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
/*------------------------------------------------------------------------------
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
* 
* Distributable under the terms of either the Apache License (Version 2.0) or 
* the GNU Lesser General Public License, as specified in the COPYING file.
------------------------------------------------------------------------------*/
#ifndef _lucene_queryParser_QueryParserTokenManager_
#define _lucene_queryParser_QueryParserTokenManager_

#include "QueryParserConstants.h"

CL_NS_DEF(queryParser)

class CharStream;
class QueryToken;

class CLUCENE_EXPORT QueryParserTokenManager: public virtual QueryParserConstants
{
public:
	// TODO: PrintStream debugStream = System.out;
	// TODO: setDebugStream(PrintStream ds) { debugStream = ds; }

private:
	int32_t jjStopStringLiteralDfa_3(const int32_t pos, int64_t active0);
	int32_t jjStartNfa_3(int32_t pos, int64_t active0);
	int32_t jjStopAtPos(const int32_t pos, const int32_t kind);

	int32_t jjStartNfaWithStates_3(int32_t pos, int32_t kind, int32_t state);

	int32_t jjMoveStringLiteralDfa0_3();

	void jjCheckNAdd(const int32_t state);
	void jjAddStates(int32_t start, const int32_t end);
	void jjCheckNAddTwoStates(const int32_t state1, const int32_t state2);
	void jjCheckNAddStates(int32_t start, const int32_t end);
	void jjCheckNAddStates(const int32_t start);

	static const int64_t jjbitVec0[];
	static const int64_t jjbitVec2[];

	int32_t jjMoveNfa_3(const int32_t startState, int32_t curPos);

	int32_t jjStopStringLiteralDfa_1(const int32_t pos, const int64_t active0);

	int32_t jjStartNfa_1(int32_t pos, int64_t active0);

	int32_t jjStartNfaWithStates_1(const int32_t pos, const int32_t kind, const int32_t state);

	int32_t jjMoveStringLiteralDfa0_1();
	int32_t jjMoveStringLiteralDfa1_1(int64_t active0);
	int32_t jjMoveNfa_1(const int32_t startState, int32_t curPos);
	int32_t jjMoveStringLiteralDfa0_0();

	int32_t jjMoveNfa_0(const int32_t startState, int32_t curPos);
	int32_t jjStopStringLiteralDfa_2(const int32_t pos, const int64_t active0);
	int32_t jjStartNfa_2(int32_t pos, int64_t active0);

	int32_t jjStartNfaWithStates_2(const int32_t pos, const int32_t kind, const int32_t state);

	int32_t jjMoveStringLiteralDfa0_2();
	int32_t jjMoveStringLiteralDfa1_2(const int64_t active0);

	int32_t jjMoveNfa_2(const int32_t startState, int32_t curPos);

	static const int32_t jjnextStates[];

	static bool jjCanMove_0(const int32_t hiByte, const int32_t i1, const int32_t i2, const int64_t l1,
		const int64_t l2);

public:
	static const TCHAR* jjstrLiteralImages [];
	static const TCHAR* lexStateNames [];
	static const int32_t jjnewLexState [];
	static const int64_t jjtoToken [];
	static const int64_t jjtoSkip [];
protected:
	CharStream* input_stream;
private:
	int32_t jjrounds[36];
	int32_t jjstateSet[72];
protected:
	TCHAR curChar;
public:
	QueryParserTokenManager(CharStream* stream, const int32_t lexState = -1);
	virtual ~QueryParserTokenManager();

	void ReInit(CharStream* stream);
private:
	void ReInitRounds();
public:
	void ReInit(CharStream* stream, const int32_t lexState);
	void SwitchTo(const int32_t lexState);

protected:
	QueryToken* jjFillToken();

	int32_t curLexState;
	int32_t defaultLexState;
	int32_t jjnewStateCnt;
	uint32_t jjround;
	int32_t jjmatchedPos;
	int32_t jjmatchedKind;

public:
	QueryToken* getNextToken();

private:
	static TCHAR* getLexicalError(bool EOFSeen, int32_t lexState, int32_t errorLine, int32_t errorColumn,
		TCHAR* errorAfter, TCHAR curChar);
};
CL_NS_END
#endif