Searched refs:hexToInt (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/highlight/
H A DGradientFormatter.java79 fgRMin = hexToInt(minForegroundColor.substring(1, 3));
80 fgGMin = hexToInt(minForegroundColor.substring(3, 5));
81 fgBMin = hexToInt(minForegroundColor.substring(5, 7));
83 fgRMax = hexToInt(maxForegroundColor.substring(1, 3));
84 fgGMax = hexToInt(maxForegroundColor.substring(3, 5));
85 fgBMax = hexToInt(maxForegroundColor.substring(5, 7));
104 bgRMin = hexToInt(minBackgroundColor.substring(1, 3));
105 bgGMin = hexToInt(minBackgroundColor.substring(3, 5));
106 bgBMin = hexToInt(minBackgroundColor.substring(5, 7));
108 bgRMax = hexToInt(maxBackgroundColo
208 public static final int hexToInt(String hex) method in class:GradientFormatter
[all...]
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/parser/
H A DEscapeQuerySyntaxImpl.java242 codePoint += hexToInt(curChar) * codePointMultiplier;
283 private static final int hexToInt(char c) throws ParseException { method in class:EscapeQuerySyntaxImpl
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/
H A DQueryParser.jj1107 codePoint += hexToInt(curChar) * codePointMultiplier;
1145 private static final int hexToInt(char c) throws ParseException {
H A DQueryParser.java1083 codePoint += hexToInt(curChar) * codePointMultiplier;
1121 private static final int hexToInt(char c) throws ParseException { method in class:QueryParser

Completed in 40 milliseconds