Searched refs:obj (Results 1 - 25 of 98) sorted by relevance

1234

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DSetOnce.java40 private volatile T obj = null; field in class:SetOnce
59 public SetOnce(T obj) { argument
60 this.obj = obj;
65 public final void set(T obj) { argument
67 this.obj = obj;
75 return obj;
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/util/
H A DStringUtils.java22 public static String toString(Object obj) { argument
24 if (obj != null) {
25 return obj.toString();
/lucene-3.6.0/lucene/site/build/site/skin/
H A Dmenu.js28 function SwitchMenu(obj)
31 var el = document.getElementById(obj);
32 var title = document.getElementById(obj+'Title');
34 if(obj.indexOf("_selected_")==0&&el.style.display == ""){
48 }//end - function SwitchMenu(obj)
H A DgetMenu.js29 function SwitchMenu(obj, thePath)
34 var el = document.getElementById(obj);
35 var title = document.getElementById(obj+'Title');
45 }//end - function SwitchMenu(obj)
/lucene-3.6.0/lucene/site/src/documentation/skins/common/scripts/
H A Dmenu.js28 function SwitchMenu(obj)
31 var el = document.getElementById(obj);
32 var title = document.getElementById(obj+'Title');
34 if(obj.indexOf("_selected_")==0&&el.style.display == ""){
48 }//end - function SwitchMenu(obj)
H A DgetMenu.js29 function SwitchMenu(obj, thePath)
34 var el = document.getElementById(obj);
35 var title = document.getElementById(obj+'Title');
45 }//end - function SwitchMenu(obj)
/lucene-3.6.0/solr/core/src/java/org/apache/solr/response/
H A DRawResponseWriter.java73 Object obj = response.getValues().get( CONTENT );
74 if( obj != null && (obj instanceof ContentStream ) ) {
75 return ((ContentStream)obj).getContentType();
82 Object obj = response.getValues().get( CONTENT );
83 if( obj != null && (obj instanceof ContentStream ) ) {
85 ContentStream content = (ContentStream)obj;
100 Object obj = response.getValues().get( CONTENT );
101 if( obj !
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/aggregator/
H A DCountingAggregator.java45 public boolean equals(Object obj) { argument
46 if (obj == null || obj.getClass() != this.getClass()) {
49 CountingAggregator that = (CountingAggregator) obj;
H A DScoringAggregator.java42 public boolean equals(Object obj) { argument
43 if (obj == null || obj.getClass() != this.getClass()) {
46 ScoringAggregator that = (ScoringAggregator) obj;
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/
H A DCartesianPoint.java69 public boolean equals(Object obj) { argument
70 if (this == obj)
72 if (obj == null)
74 if (getClass() != obj.getClass())
76 CartesianPoint other = (CartesianPoint) obj;
/lucene-3.6.0/lucene/contrib/analyzers/smartcn/src/java/org/apache/lucene/analysis/cn/smart/hhmm/
H A DPathNode.java59 public boolean equals(Object obj) { argument
60 if (this == obj)
62 if (obj == null)
64 if (getClass() != obj.getClass())
66 PathNode other = (PathNode) obj;
H A DSegToken.java98 public boolean equals(Object obj) { argument
99 if (this == obj)
101 if (obj == null)
103 if (getClass() != obj.getClass())
105 SegToken other = (SegToken) obj;
H A DSegTokenPair.java71 public boolean equals(Object obj) { argument
72 if (this == obj)
74 if (obj == null)
76 if (getClass() != obj.getClass())
78 SegTokenPair other = (SegTokenPair) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DKeywordAttributeImpl.java51 public boolean equals(Object obj) { argument
52 if (this == obj)
54 if (getClass() != obj.getClass())
56 final KeywordAttributeImpl other = (KeywordAttributeImpl) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/payloads/
H A DAveragePayloadFunction.java57 public boolean equals(Object obj) { argument
58 if (this == obj)
60 if (obj == null)
62 if (getClass() != obj.getClass())
H A DMaxPayloadFunction.java60 public boolean equals(Object obj) { argument
61 if (this == obj)
63 if (obj == null)
65 if (getClass() != obj.getClass())
H A DMinPayloadFunction.java58 public boolean equals(Object obj) { argument
59 if (this == obj)
61 if (obj == null)
63 if (getClass() != obj.getClass())
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DPrefixQuery.java71 public boolean equals(Object obj) { argument
72 if (this == obj)
74 if (!super.equals(obj))
76 if (getClass() != obj.getClass())
78 PrefixQuery other = (PrefixQuery) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanTermQuery.java65 public boolean equals(Object obj) { argument
66 if (this == obj)
68 if (!super.equals(obj))
70 if (getClass() != obj.getClass())
72 SpanTermQuery other = (SpanTermQuery) obj;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/aggregator/association/
H A DAssociationFloatSumAggregator.java57 public boolean equals(Object obj) { argument
58 if (obj == null || obj.getClass() != this.getClass()) {
61 AssociationFloatSumAggregator that = (AssociationFloatSumAggregator) obj;
H A DAssociationIntSumAggregator.java57 public boolean equals(Object obj) { argument
58 if (obj == null || obj.getClass() != this.getClass()) {
61 AssociationIntSumAggregator that = (AssociationIntSumAggregator) obj;
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/config/
H A DNumericConfig.java140 public boolean equals(Object obj) { argument
142 if (obj == this) return true;
144 if (obj instanceof NumericConfig) {
145 NumericConfig other = (NumericConfig) obj;
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/
H A DTermsFilter.java79 public boolean equals(Object obj) argument
81 if(this == obj)
83 if((obj == null) || (obj.getClass() != this.getClass()))
85 TermsFilter test = (TermsFilter)obj;
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/shape/
H A DLineSegment.java97 public boolean equals(Object obj) { argument
98 if (this == obj)
100 if (obj == null)
102 if (getClass() != obj.getClass())
104 LineSegment other = (LineSegment) obj;
H A DPoint2D.java123 public boolean equals(Object obj) { argument
124 if (this == obj)
126 if (obj == null)
128 if (getClass() != obj.getClass())
130 Point2D other = (Point2D) obj;

Completed in 21 milliseconds

1234