Searched refs:in (Results 1 - 25 of 273) sorted by relevance

1234567891011

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DLetterTokenizer.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
52 * @param in
55 public LetterTokenizer(Version matchVersion, Reader in) { argument
56 super(matchVersion, in);
66 * @param in
69 public LetterTokenizer(Version matchVersion, AttributeSource source, Reader in) { argument
70 super(matchVersion, source, in);
81 * @param in
84 public LetterTokenizer(Version matchVersion, AttributeFactory factory, Reader in) { argument
95 LetterTokenizer(Reader in) argument
106 LetterTokenizer(AttributeSource source, Reader in) argument
118 LetterTokenizer(AttributeFactory factory, Reader in) argument
[all...]
H A DLowerCaseTokenizer.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
54 * @param in
57 public LowerCaseTokenizer(Version matchVersion, Reader in) { argument
58 super(matchVersion, in);
68 * @param in
71 public LowerCaseTokenizer(Version matchVersion, AttributeSource source, Reader in) { argument
72 super(matchVersion, source, in);
83 * @param in
86 public LowerCaseTokenizer(Version matchVersion, AttributeFactory factory, Reader in) { argument
97 LowerCaseTokenizer(Reader in) argument
108 LowerCaseTokenizer(AttributeSource source, Reader in) argument
120 LowerCaseTokenizer(AttributeFactory factory, Reader in) argument
[all...]
H A DWhitespaceTokenizer.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
44 * @param in
47 public WhitespaceTokenizer(Version matchVersion, Reader in) { argument
48 super(matchVersion, in);
58 * @param in
61 public WhitespaceTokenizer(Version matchVersion, AttributeSource source, Reader in) { argument
62 super(matchVersion, source, in);
74 * @param in
77 public WhitespaceTokenizer(Version matchVersion, AttributeFactory factory, Reader in) { argument
88 WhitespaceTokenizer(Reader in) argument
99 WhitespaceTokenizer(AttributeSource source, Reader in) argument
111 WhitespaceTokenizer(AttributeFactory factory, Reader in) argument
[all...]
H A DLengthFilter.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
41 public LengthFilter(boolean enablePositionIncrements, TokenStream in, int min, int max) { argument
42 super(enablePositionIncrements, in);
53 public LengthFilter(TokenStream in, int min, int max) { argument
54 this(false, in, min, max);
H A DLimitTokenCountFilter.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
34 public LimitTokenCountFilter(TokenStream in, int maxTokenCount) { argument
35 super(in);
H A DKeywordMarkerFilter.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
29 * contained in the provided is marked as a keyword by setting
42 * keyword if the tokens term buffer is contained in the given set via the
45 * @param in
50 public KeywordMarkerFilter(final TokenStream in, argument
52 super(in);
58 * keyword if the tokens term buffer is contained in the given set via the
61 * @param in
66 public KeywordMarkerFilter(final TokenStream in, fina argument
[all...]
H A DLowerCaseFilter.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
43 * @param in TokenStream to filter
45 public LowerCaseFilter(Version matchVersion, TokenStream in) { argument
46 super(in);
54 public LowerCaseFilter(TokenStream in) { argument
55 this(Version.LUCENE_30, in);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFilterIndexReader.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
45 protected TermDocs in; field in class:FilterIndexReader.FilterTermDocs
47 public FilterTermDocs(TermDocs in) { this.in = in; } argument
49 public void seek(Term term) throws IOException { in.seek(term); }
50 public void seek(TermEnum termEnum) throws IOException { in.seek(termEnum); }
51 public int doc() { return in.doc(); }
52 public int freq() { return in
65 FilterTermPositions(TermPositions in) argument
88 protected TermEnum in; field in class:FilterIndexReader.FilterTermEnum
90 FilterTermEnum(TermEnum in) argument
102 protected IndexReader in; field in class:FilterIndexReader
111 FilterIndexReader(IndexReader in) argument
[all...]
H A DIndexFormatTooOldException.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
36 public IndexFormatTooOldException(DataInput in, String version) { argument
37 this(in.toString(), version);
49 public IndexFormatTooOldException(DataInput in, int version, int minVersion, int maxVersion) { argument
50 this(in.toString(), version, minVersion, maxVersion);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/
H A DIntDecoder.java11 * (the "License"); you may not use this file except in compliance with
16 * Unless required by applicable law or agreed to in writing, software
36 protected InputStream in; field in class:IntDecoder
39 public void reInit(InputStream in) { argument
40 this.in = in;
H A DEightFlagsIntDecoder.java11 * (the "License"); you may not use this file except in compliance with
16 * Unless required by applicable law or agreed to in writing, software
62 indicator = in.read();
79 public void reInit(InputStream in) { argument
80 super.reInit(in);
81 decoder.reInit(in);
H A DFourFlagsIntDecoder.java11 * (the "License"); you may not use this file except in compliance with
16 * Unless required by applicable law or agreed to in writing, software
62 indicator = in.read();
80 public void reInit(InputStream in) { argument
81 super.reInit(in);
82 decoder.reInit(in);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/store/
H A DTestByteArrayDataInput.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
26 ByteArrayDataInput in = new ByteArrayDataInput(bytes);
27 assertEquals("A", in.readString());
30 in.reset(bytes, 1, 2);
31 assertEquals("A", in.readString());
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/store/
H A DTestByteArrayDataInput.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
26 ByteArrayDataInput in = new ByteArrayDataInput(bytes);
27 assertEquals("A", in.readString());
30 in.reset(bytes, 1, 2);
31 assertEquals("A", in.readString());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ar/
H A DArabicLetterTokenizer.java7 * (the "License"); you may not use this file except in compliance with
12 * Unless required by applicable law or agreed to in writing, software
53 * @param in
56 public ArabicLetterTokenizer(Version matchVersion, Reader in) { argument
57 super(matchVersion, in);
67 * @param in
70 public ArabicLetterTokenizer(Version matchVersion, AttributeSource source, Reader in) { argument
71 super(matchVersion, source, in);
82 * @param in
85 public ArabicLetterTokenizer(Version matchVersion, AttributeFactory factory, Reader in) { argument
96 ArabicLetterTokenizer(Reader in) argument
107 ArabicLetterTokenizer(AttributeSource source, Reader in) argument
119 ArabicLetterTokenizer(AttributeFactory factory, Reader in) argument
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/
H A DRussianLetterTokenizer.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
41 * This filter will be removed in Lucene 5.0
53 * @param in
56 public RussianLetterTokenizer(Version matchVersion, Reader in) { argument
57 super(matchVersion, in);
67 * @param in
70 public RussianLetterTokenizer(Version matchVersion, AttributeSource source, Reader in) { argument
71 super(matchVersion, source, in);
82 * @param in
85 RussianLetterTokenizer(Version matchVersion, AttributeFactory factory, Reader in) argument
96 RussianLetterTokenizer(Reader in) argument
107 RussianLetterTokenizer(AttributeSource source, Reader in) argument
119 RussianLetterTokenizer(AttributeFactory factory, Reader in) argument
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DSolrIndexReader.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
50 /** Recursively wrap an IndexReader in SolrIndexReader instances.
51 * @param in the reader to wrap
53 * @param base the docid offset in the parent (0 if top level)
55 public SolrIndexReader(IndexReader in, SolrIndexReader parent, int base) { argument
56 super(in);
57 assert(!(in instanceof SolrIndexReader));
60 IndexReader subs[] = in.getSequentialSubReaders();
109 /** return the leaf readers in thi
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DCodecUtil.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
31 * This is useful to ensure that a file is in the format
45 throw new IllegalArgumentException("codec must be simple ASCII, less than 128 characters in length [got " + codec + "]");
58 public static int checkHeader(DataInput in, String codec, int minVersion, int maxVersion) argument
62 final int actualHeader = in.readInt();
64 throw new CorruptIndexException("codec header mismatch: actual header=" + actualHeader + " vs expected header=" + CODEC_MAGIC + " (resource: " + in + ")");
67 final String actualCodec = in.readString();
69 throw new CorruptIndexException("codec mismatch: actual codec=" + actualCodec + " vs expected codec=" + codec + " (resource: " + in + ")");
72 final int actualVersion = in
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DBrazilianStemFilterFactory.java7 * (the "License"); you may not use this file except in compliance with
12 * Unless required by applicable law or agreed to in writing, software
37 public BrazilianStemFilter create(TokenStream in) { argument
38 return new BrazilianStemFilter(in);
H A DCJKTokenizerFactory.java7 * (the "License"); you may not use this file except in compliance with
12 * Unless required by applicable law or agreed to in writing, software
37 public CJKTokenizer create(Reader in) { argument
38 return new CJKTokenizer(in);
H A DGermanStemFilterFactory.java7 * (the "License"); you may not use this file except in compliance with
12 * Unless required by applicable law or agreed to in writing, software
38 public GermanStemFilter create(TokenStream in) { argument
39 return new GermanStemFilter(in);
H A DReverseStringFilterFactory.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
37 public ReverseStringFilter create(TokenStream in) { argument
39 return new ReverseStringFilter(luceneMatchVersion,in);
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/spell/
H A DPlainTextDictionary.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
39 private BufferedReader in; field in class:PlainTextDictionary
42 in = new BufferedReader(new FileReader(file));
46 in = new BufferedReader(new InputStreamReader(dictFile));
53 in = new BufferedReader(reader);
72 if ((line = in.readLine()) != null) {
77 IOUtils.close(in);
83 IOUtils.closeWhileHandlingException(in);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/analysis/
H A DMockReaderWrapper.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
31 private final Reader in; field in class:MockReaderWrapper
38 public MockReaderWrapper(Random random, Reader in) { argument
39 this.in = in;
56 in.close();
76 read = in.read(cbuf, off, Math.min(realLen, left));
80 read = in.read(cbuf, off, realLen);
H A DTokenStreamToDot.java8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
31 private final TokenStream in; field in class:TokenStreamToDot
40 * offsets, we include the surface form in each arc's
42 public TokenStreamToDot(String inputText, TokenStream in, PrintWriter out) { argument
43 this.in = in;
46 termAtt = in.addAttribute(CharTermAttribute.class);
47 posIncAtt = in.addAttribute(PositionIncrementAttribute.class);
48 posLengthAtt = in
[all...]

Completed in 75 milliseconds

1234567891011