Searched refs:data (Results 1 - 11 of 11) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/analysis/data/
H A DIgnorantAnalyzerFactory.java25 package org.opensolaris.opengrok.analysis.data;
32 * text data, but ignores them.
H A DImageAnalyzerFactory.java25 package org.opensolaris.opengrok.analysis.data;
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DKeywordsFormat.java113 String data = text
124 return data;
134 String data = text
145 return data;
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DAccuRevHistoryParser.java144 String data[] = line.split("; ");
148 user = data[3].replaceFirst("user: ", "");
154 date = df.parse(data[2]);
167 String data[] = line.split("\\s+");
168 entry.setRevision(data[2]);
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DPageConfig.java109 * Add the given data to the <head> section of the html page to
112 * @param data data to add. It is copied as is, so remember to escape
115 public void addHeaderData(String data) { argument
116 if (data == null || data.length() == 0) {
122 headLines.append(data);
126 * Get addition data, which should be added as is to the <head>
129 * @return an empty string if nothing to add, the data otherwise.
136 * Get all data require
[all...]
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/tools/
H A DJDiff.java84 BufferedReader data = new BufferedReader(new FileReader(name));
87 while ((s = data.readLine()) != null)
/opengrok-sun/tools/smf/
H A Dindexer.sh46 DATA_ROOT=${ROOT}/stage${stage}/data; export DATA_ROOT
/opengrok-sun/web/
H A Djquery-1.4.4.min.js16 (function(E,B){function ka(a,b,d){if(d===B&&a.nodeType===1){d=a.getAttribute("data-"+b);if(typeof d==="string"){try{d=d==="true"?true:d==="false"?false:d==="null"?null:!c.isNaN(d)?parseFloat(d):Ja.test(d)?c.parseJSON(d):d}catch(e){}c.data(a,b,d)}else d=B}return d}function U(){return false}function ca(){return true}function la(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ka(a){var b,d,e,f,h,l,k,o,x,r,A,C=[];f=[];h=c.data(this,this.nodeType?"events":"__events__");if(typeof h==="function")h=
18 h.preType==="mouseleave"){a.type=h.preType;e=c(a.relatedTarget).closest(h.selector)[0]}if(!e||e!==l)C.push({elem:l,handleObj:h,level:r.level})}}}o=0;for(x=C.length;o<x;o++){f=C[o];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;a.handleObj=f.handleObj;A=f.handleObj.origHandler.apply(f.elem,arguments);if(A===false||a.isPropagationStopped()){d=f.level;if(A===false)b=false;if(a.isImmediatePropagationStopped())break}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(La,
19 "`").replace(Ma,"&")}function ma(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Na.test(b))return c.filter(b,e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function na(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,
20 e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var l in e[h])c.event.add(this,h,e[h][l],e[h][l].data)}}})}function Oa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function oa(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?Pa:Qa,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,
42 "none"});a=function(r){var A=t.createElement("div");r="on"+r;var C=r in A;if(!C){A.setAttribute(r,"return;");C=typeof A[r]==="function"}return C};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();var ra={},Ja=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?ra:a;var e=a.nodeType,f=e?a[c.expando]:null,h=
44 else if(d)delete f[e];else for(var l in a)delete a[l]}},acceptData:function(a){if(a.nodeName){var b=c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java111 private String data; field in class:SearchEngine
232 data = RuntimeEnvironment.getInstance().getDataRootPath();
354 } else if (Genre.XREFABLE == genre && data != null && summarizer != null) {
358 r = new TagFilter(new BufferedReader(new InputStreamReader(new GZIPInputStream(new FileInputStream(data + "/xref" + filename + ".gz")))));
360 r = new TagFilter(new BufferedReader(new FileReader(data + "/xref" + filename)));
/opengrok-sun/src/org/opensolaris/opengrok/analysis/
H A DAnalyzerGuru.java48 import org.opensolaris.opengrok.analysis.data.IgnorantAnalyzerFactory;
49 import org.opensolaris.opengrok.analysis.data.ImageAnalyzerFactory;
217 * @param in Input stream containing data to be analyzed
221 * data in the input stream.
234 * @param in The data to generate the index for
305 * @param in The input stream containing the data
338 * Get the genre of a bulk of data
340 * @param in A stream containing the data
408 * be determined by the file extension, try to look at the data in the
414 * @param in The input stream containing the data
[all...]
/opengrok-sun/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 883 milliseconds