Searched defs:in (Results 1 - 25 of 179) sorted by relevance

12345678

/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);
H A DChineseFilterFactory.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 ChineseFilter create(TokenStream in) { argument
39 return new ChineseFilter(in);
H A DChineseTokenizerFactory.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
39 public ChineseTokenizer create(Reader in) { argument
40 return new ChineseTokenizer(in);
H A DFrenchStemFilterFactory.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
40 public TokenFilter create(TokenStream in) { argument
41 return new SnowballFilter(in, new org.tartarus.snowball.ext.FrenchStemmer());
H A DGreekLowerCaseFilterFactory.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
52 public GreekLowerCaseFilter create(TokenStream in) { argument
53 return new GreekLowerCaseFilter(luceneMatchVersion, in);
H A DKeepWordFilter.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
29 * A TokenFilter that only keeps tokens with text contained in the
41 public KeepWordFilter(TokenStream in, Set<String> words, boolean ignoreCase ) { argument
42 this(false, in, new CharArraySet(words, ignoreCase));
47 public KeepWordFilter(boolean enablePositionIncrements, TokenStream in, CharArraySet words) { argument
48 super(enablePositionIncrements, in);
H A DPhoneticFilter.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
30 public PhoneticFilter(TokenStream in, Encoder encoder, String name, boolean inject) { argument
31 super(in, encoder, inject);
H A DRussianLetterTokenizerFactory.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
44 public RussianLetterTokenizer create(Reader in) { argument
45 return new RussianLetterTokenizer(luceneMatchVersion,in);
H A DRussianLowerCaseFilterFactory.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
45 public TokenFilter create(TokenStream in) { argument
47 return new LowerCaseFilter(Version.LUCENE_29, in);
H A DRussianStemFilterFactory.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
41 public TokenFilter create(TokenStream in) { argument
42 return new SnowballFilter(in, new org.tartarus.snowball.ext.RussianStemmer());
H A DTrimFilter.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
28 * Trims leading and trailing whitespace from Tokens in the stream.
39 public TrimFilter(TokenStream in, boolean updateOffsets) { argument
40 super(in);
/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;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
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 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 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);
H A DPorterStemFilter.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 Note: the input to the stemming filter must already be in lower case,
28 down the Tokenizer chain in order for this to work properly!
46 in a previous {@link TokenStream}.
54 public PorterStemFilter(TokenStream in) { argument
55 super(in);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DIndexFormatTooNewException.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 IndexFormatTooNewException(DataInput in, int version, int minVersion, int maxVersion) { argument
37 this(in.toString(), version, minVersion, maxVersion);
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/analyzers/common/src/java/org/apache/lucene/analysis/in/
H A DIndicNormalizationFilter.java1 package org.apache.lucene.analysis.in;
8 * (the "License"); you may not use this file except in compliance with
13 * Unless required by applicable law or agreed to in writing, software
28 * in Indian Languages.
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/
H A DRussianLowerCaseFilter.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
30 * functionality. This filter will be removed in Lucene 4.0
37 public RussianLowerCaseFilter(TokenStream in) argument
39 super(in);
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DGener.java10 are the people or entities mentioned as copyright holders in that file
12 whole, the copyright holders are the people or entities mentioned in
13 the file CREDITS. This file can be found in the same location as this
14 license in the distribution.
16 Redistribution and use in source and binary forms, with or without
22 2. Redistributions in binary form must reproduce the above copyright
24 disclaimer that follows these conditions in the documentation
30 nor may "Egothor" appear in their name, without prior written
33 In addition, we request that you include in the end-user documentation
34 provided with the redistribution and/or in th
107 eat(Row in, int remap[]) argument
[all...]
H A DLift.java10 are the people or entities mentioned as copyright holders in that file
12 whole, the copyright holders are the people or entities mentioned in
13 the file CREDITS. This file can be found in the same location as this
14 license in the distribution.
16 Redistribution and use in source and binary forms, with or without
22 2. Redistributions in binary form must reproduce the above copyright
24 disclaimer that follows these conditions in the documentation
30 nor may "Egothor" appear in their name, without prior written
33 In addition, we request that you include in the end-user documentation
34 provided with the redistribution and/or in th
114 liftUp(Row in, List<Row> nodes) argument
[all...]

Completed in 281 milliseconds

12345678