Searched defs:style (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/analysis/
H A DTokenStreamToDot.java119 protected void writeArc(int fromNode, int toNode, String label, String style) { argument
124 if (style != null) {
125 out.print(" style=\"" + style + "\"");
151 out.println(" node [ style=\"filled\" fillcolor=\"#e8e8f0\" shape=\"Mrecord\" fontname=\"" + FONT_NAME + "\" ]");
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DNumberFormatTransformer.java56 String style = context.replaceTokens(fld.get(FORMAT_STYLE));
57 if (style != null) {
76 String styleSmall = style.toLowerCase(Locale.ENGLISH);
107 private Number process(String val, String style, Locale locale) throws ParseException { argument
108 if (INTEGER.equals(style)) {
110 } else if (NUMBER.equals(style)) {
112 } else if (CURRENCY.equals(style)) {
114 } else if (PERCENT.equals(style)) {
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Dprototype.js4 * Prototype is freely distributable under the terms of an MIT-style license.
1143 return $(element).style.display != 'none';
1153 $(element).style.display = 'none';
1158 $(element).style.display = '';
1362 getStyle: function(element, style) {
1364 if (['float','cssFloat'].include(style))
1365 style = (typeof element.style.styleFloat != 'undefined' ? 'styleFloat' : 'cssFloat');
1366 style = style
[all...]

Completed in 22 milliseconds