Home
last modified time | relevance | path

Searched refs:WhileMatchFilter (Results 1 – 17 of 17) sorted by relevance

/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/
H A DWhileMatchFilter.java43 public class WhileMatchFilter extends FilterBase { class
47 public WhileMatchFilter(Filter filter) { in WhileMatchFilter() method in WhileMatchFilter
103 FilterProtos.WhileMatchFilter.Builder builder = in toByteArray()
104 FilterProtos.WhileMatchFilter.newBuilder(); in toByteArray()
115 public static WhileMatchFilter parseFrom(final byte [] pbBytes) in parseFrom()
117 FilterProtos.WhileMatchFilter proto; in parseFrom()
119 proto = FilterProtos.WhileMatchFilter.parseFrom(pbBytes); in parseFrom()
124 return new WhileMatchFilter(ProtobufUtil.toFilter(proto.getFilter())); in parseFrom()
137 if (!(o instanceof WhileMatchFilter)) return false; in areSerializedFieldsEqual()
139 WhileMatchFilter other = (WhileMatchFilter)o; in areSerializedFieldsEqual()
H A DParseFilter.java436 Filter whileMatchFilter = new WhileMatchFilter(wrappedFilter); in popArguments()
/dports/databases/hbase/hbase-1.2.1/hbase-rest/src/main/java/org/apache/hadoop/hbase/rest/model/
H A DScannerModel.java71 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
244 WhileMatchFilter enumConstant
351 case WhileMatchFilter: in FilterModel()
354 new FilterModel(((WhileMatchFilter)filter).getFilter())); in FilterModel()
462 case WhileMatchFilter: in build()
463 filter = new WhileMatchFilter(filters.get(0).build()); in build()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/
H A DTestPrefixFilter.java50 prefixRowTests(new WhileMatchFilter(this.mainFilter), true); in testPrefixOnRowInsideWhileMatchRow()
H A DTestFilterList.java92 filters.add(new WhileMatchFilter(new PrefixFilter(Bytes.toBytes("yyy")))); in getFilterMPONE()
158 filters.add(new WhileMatchFilter(new PrefixFilter(Bytes.toBytes("yyy")))); in getMPALLFilter()
335 filters.add(new WhileMatchFilter(new PrefixFilter(Bytes.toBytes("yyy")))); in testSerialization()
H A DTestFilterSerialization.java318 WhileMatchFilter whileMatchFilter = in testWhileMatchFilter()
319 new WhileMatchFilter( in testWhileMatchFilter()
H A DTestFilter.java500 WhileMatchFilter filter = new WhileMatchFilter(new PageFilter(pageSize)); in testWhileMatchFilterWithFilterRowWithReverseScan()
527 WhileMatchFilter filter = new WhileMatchFilter(new PrefixFilter( in testWhileMatchFilterWithFilterRowKeyWithReverseScan()
563 WhileMatchFilter filter = new WhileMatchFilter(new PageFilter(pageSize)); in testWhileMatchFilterWithFilterRow()
641 WhileMatchFilter filter = new WhileMatchFilter(new PrefixFilter(Bytes.toBytes(prefix))); in testWhileMatchFilterWithFilterRowKey()
669 WhileMatchFilter filter = new WhileMatchFilter( in testWhileMatchFilterWithFilterKeyValue()
H A DTestParseFilter.java386 WhileMatchFilter whileMatchFilter = in testWhileFilter()
387 doTestFilter(filterString, WhileMatchFilter.class); in testWhileFilter()
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/test/java/org/apache/hadoop/hbase/client/
H A DTestOperation.java62 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
153 private static WhileMatchFilter WHILE_FILTER =
154 new WhileMatchFilter(L_TS_FILTER);
/dports/databases/hbase/hbase-1.2.1/hbase-protocol/src/main/protobuf/
H A DFilter.proto154 message WhileMatchFilter { message
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/
H A DTestScanner.java57 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
217 newFilter = new WhileMatchFilter(new InclusiveStopFilter(stopRow)); in testFilters()
/dports/databases/hbase/hbase-1.2.1/hbase-protocol/src/main/java/org/apache/hadoop/hbase/protobuf/generated/
H A DFilterProtos.java15005 public static final class WhileMatchFilter extends class in FilterProtos
15015 private static final WhileMatchFilter defaultInstance;
15016 public static WhileMatchFilter getDefaultInstance() { in getDefaultInstance()
15020 public WhileMatchFilter getDefaultInstanceForType() { in getDefaultInstanceForType()
15030 private WhileMatchFilter( in WhileMatchFilter() method in FilterProtos.WhileMatchFilter
15090 public static com.google.protobuf.Parser<WhileMatchFilter> PARSER =
15091 new com.google.protobuf.AbstractParser<WhileMatchFilter>() {
15092 public WhileMatchFilter parsePartialFrom(
15096 return new WhileMatchFilter(input, extensionRegistry);
15187 …buf.generated.FilterProtos.WhileMatchFilter other = (org.apache.hadoop.hbase.protobuf.generated.Fi… in equals()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/
H A DHbaseObjectWritableFor96Migration.java84 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
213 addToMap(WhileMatchFilter.class, code++); in addToMap()
/dports/databases/hbase/hbase-1.2.1/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/
H A DPerformanceEvaluation.java51 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
995 scan.setFilter(new WhileMatchFilter(new PageFilter(120))); in testRow()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/
H A DPerformanceEvaluation.java78 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
1212 list.addFilter(new WhileMatchFilter(new PageFilter(120))); in testRow()
/dports/databases/hbase/hbase-1.2.1/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/
H A DThriftServerRunner.java82 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
1562 Filter f = new WhileMatchFilter( in scannerOpenWithPrefix()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/client/
H A DTestFromClientSide.java83 import org.apache.hadoop.hbase.filter.WhileMatchFilter;
611 f = new WhileMatchFilter(f);