Searched defs:title (Results 1 - 11 of 11) sorted by relevance

/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DDemoHTMLParser.java32 public DocData parse(DocData docData, String name, Date date, String title, Reader reader, DateFormat dateFormat) throws IOException, InterruptedException { argument
35 // title
36 if (title==null) {
37 title = p.getTitle();
66 docData.setTitle(title);
H A DHTMLParser.java32 * The provided name,title,date are used for the result, unless when they're null,
37 * @param title title of the result doc data. If null, attempt to set by parsed data.
44 public DocData parse(DocData docData, String name, Date date, String title, Reader reader, DateFormat dateFormat) throws IOException, InterruptedException; argument
H A DDocData.java30 private String title; field in class:DocData
38 title = null;
71 return title;
102 public void setTitle(String title) { argument
103 this.title = title;
H A DEnwikiContentSource.java59 private String title; field in class:EnwikiContentSource.Parser
130 // title does not start with Image:
131 if (body != null && (keepImages || !title.startsWith("Image:"))) {
133 tmpTuple[TITLE] = title.replace('\t', ' ');
162 title = contents.toString();
228 title = null;
264 ELEMENTS.put("title", Integer.valueOf(TITLE));
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/utils/
H A DExtractWikipedia.java68 public void create(String id, String title, String time, String body) { argument
78 contents.append(title);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLineFileDocs.java112 final Field title; field in class:LineFileDocs.DocState
120 title = new Field("title", "", Field.Store.NO, Field.Index.NOT_ANALYZED_NO_NORMS);
121 doc.add(title);
171 final String title = line.substring(0, spot);
172 docState.title.setValue(title);
173 docState.titleTokenized.setValue(title);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLineFileDocs.java112 final Field title; field in class:LineFileDocs.DocState
120 title = new Field("title", "", Field.Store.NO, Field.Index.NOT_ANALYZED_NO_NORMS);
121 doc.add(title);
171 final String title = line.substring(0, spot);
172 docState.title.setValue(title);
173 docState.titleTokenized.setValue(title);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/quality/utils/
H A DQualityQueriesFinder.java74 private static String formatQueryAsTrecTopic (int qnum, String title, String description, String narrative) { argument
78 "<title> " + (title==null?"":title) + newline + newline +
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/quality/
H A DQualityStats.java136 public void log(String title, int paddLines, PrintWriter logger, String prefix) { argument
140 if (title!=null && title.trim().length()>0) {
141 logger.println(title);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/demohtml/
H A DHTMLParser.java11 StringBuffer title = new StringBuffer(SUMMARY_LENGTH); field in class:HTMLParser
54 return title.toString().trim();
122 title.append(text);
125 if (!titleComplete && !(title.length() == 0)) { // finished title
149 title.append(" ");
231 inTitle = tagName.equalsIgnoreCase("<title"); // keep track if in <TITLE>
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Dprototype.js1516 title: function(element) {
1517 var node = element.getAttributeNode('title');

Completed in 74 milliseconds