Searched defs:code (Results 1 - 7 of 7) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DSolrException.java21 * This class is scheduled for deletion. Please update your code to the moved package.
28 public SolrException(ErrorCode code, String msg, boolean alreadyLogged) { argument
29 super(code, msg, alreadyLogged);
32 public SolrException(ErrorCode code, String msg, Throwable th, boolean alreadyLogged) { argument
33 super(code, msg, th, alreadyLogged);
36 public SolrException(ErrorCode code, String msg, Throwable th) { argument
37 super(code, msg, th);
40 public SolrException(ErrorCode code, Throwable th) { argument
41 super(code, th);
44 public SolrException(ErrorCode code, Strin argument
[all...]
/lucene-3.6.0/lucene/contrib/icu/src/java/org/apache/lucene/analysis/icu/tokenattributes/
H A DScriptAttribute.java30 * Get the numeric code for this script value.
32 * @return numeric code
36 * Set the numeric code for this script value.
38 * @param code numeric code
40 public void setCode(int code); argument
H A DScriptAttributeImpl.java33 private int code = UScript.COMMON; field in class:ScriptAttributeImpl
36 return code;
39 public void setCode(int code) { argument
40 this.code = code;
44 return UScript.getName(code);
48 return UScript.getShortName(code);
53 code = UScript.COMMON;
59 t.setCode(code);
69 return ((ScriptAttributeImpl) other).code
[all...]
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/
H A DSolrException.java44 public final int code; field in class:SolrException.ErrorCode
48 code = c;
52 if(err.code == c) return err;
64 public SolrException(ErrorCode code, String msg) { argument
65 this(code, msg, null, false);
73 public SolrException(ErrorCode code, String msg, boolean alreadyLogged) { argument
74 this(code, msg, null, alreadyLogged);
82 public SolrException(ErrorCode code, String msg, Throwable th, boolean alreadyLogged) { argument
84 this.code=code
88 SolrException(ErrorCode code, String msg, Throwable th) argument
92 SolrException(ErrorCode code, Throwable th) argument
100 SolrException(int code, String msg) argument
109 SolrException(int code, String msg, boolean alreadyLogged) argument
119 SolrException(int code, String msg, Throwable th, boolean alreadyLogged) argument
129 SolrException(int code, String msg, Throwable th) argument
137 SolrException(int code, Throwable th) argument
143 int code=0; field in class:SolrException
144 public int code() { return code; } method in class:SolrException
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBytesRefHash.java261 * given bytes, otherwise <code>(-(ord)-1)</code>. This guarantees
274 * Adds a new {@link BytesRef} with a pre-calculated hash code.
278 * @param code
279 * the bytes hash code
292 * given bytes, otherwise <code>(-(ord)-1)</code>. This guarantees
300 public int add(BytesRef bytes, int code) { argument
304 int hashPos = code & hashMask;
309 final int inc = ((code >>
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCSVParser.java80 private final CharBuffer code = new CharBuffer(4); field in class:CSVParser
289 * Convenience method for <code>nextToken(null)</code>.
525 code.clear();
532 code.append((char) c);
534 ret = Integer.parseInt(code.toString(), 16);
538 + code.toString() + "'" + e.toString());
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/util/
H A DTestHarness.java247 public String checkUpdateStatus(String xml, String code) throws SAXException { argument
250 String valid = validateXPath(res, "//result[@status="+code+"]" );

Completed in 26 milliseconds