Home
last modified time | relevance | path

Searched refs:TypedValueCompareIterator (Results 1 – 7 of 7) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/src/runtime/booleans/
H A DBooleanImpl.h257 class TypedValueCompareIterator : public NaryBaseIterator<TypedValueCompareIterator<ATC>,
265 SERIALIZABLE_TEMPLATE_CLASS(TypedValueCompareIterator);
267 TypedValueCompareIterator,
268 NaryBaseIterator<TypedValueCompareIterator<ATC>, PlanIteratorState>);
272 TypedValueCompareIterator( in TypedValueCompareIterator() function
278 NaryBaseIterator<TypedValueCompareIterator<ATC>, PlanIteratorState>(sctx, loc, children), in TypedValueCompareIterator()
285 ~TypedValueCompareIterator () {} in ~TypedValueCompareIterator()
H A DBooleanImpl.cpp54 SERIALIZABLE_TEMPLATE_INSTANCE(TypedValueCompareIterator, in SERIALIZABLE_CLASS_VERSIONS()
58 SERIALIZABLE_TEMPLATE_INSTANCE(TypedValueCompareIterator, in SERIALIZABLE_CLASS_VERSIONS()
62 SERIALIZABLE_TEMPLATE_INSTANCE(TypedValueCompareIterator, in SERIALIZABLE_CLASS_VERSIONS()
66 SERIALIZABLE_TEMPLATE_INSTANCE(TypedValueCompareIterator, in SERIALIZABLE_CLASS_VERSIONS()
70 SERIALIZABLE_TEMPLATE_INSTANCE(TypedValueCompareIterator, in SERIALIZABLE_CLASS_VERSIONS()
1072 bool TypedValueCompareIterator<ATC>::nextImpl( in nextImpl()
1143 template class TypedValueCompareIterator<store::XS_DOUBLE>; variable
1144 template class TypedValueCompareIterator<store::XS_FLOAT>; variable
1145 template class TypedValueCompareIterator<store::XS_DECIMAL>; variable
1146 template class TypedValueCompareIterator<store::XS_INTEGER>; variable
[all …]
/dports/textproc/zorba/zorba-2.7.0/src/runtime/visitors/
H A Dprinter_visitor_impl.h213 void beginVisit ( const TypedValueCompareIterator<store::XS_DECIMAL>& a);
214 void beginVisit ( const TypedValueCompareIterator<store::XS_INTEGER>& a);
215 void beginVisit ( const TypedValueCompareIterator<store::XS_DOUBLE>& a);
216 void beginVisit ( const TypedValueCompareIterator<store::XS_FLOAT>& a);
217 void beginVisit ( const TypedValueCompareIterator<store::XS_STRING>& a);
218 void endVisit ( const TypedValueCompareIterator<store::XS_DECIMAL>& a);
219 void endVisit ( const TypedValueCompareIterator<store::XS_INTEGER>& a);
220 void endVisit ( const TypedValueCompareIterator<store::XS_DOUBLE>& a);
221 void endVisit ( const TypedValueCompareIterator<store::XS_FLOAT>& a);
222 void endVisit ( const TypedValueCompareIterator<store::XS_STRING>& a);
H A Dplaniter_visitor_impl_code.h175 virtual void beginVisit ( const TypedValueCompareIterator<store::XS_DOUBLE>& ) = 0;
176 virtual void endVisit ( const TypedValueCompareIterator<store::XS_DOUBLE>& ) = 0;
177 virtual void beginVisit ( const TypedValueCompareIterator<store::XS_FLOAT>& ) = 0;
178 virtual void endVisit ( const TypedValueCompareIterator<store::XS_FLOAT>& ) = 0;
179 virtual void beginVisit ( const TypedValueCompareIterator<store::XS_DECIMAL>& ) = 0;
180 virtual void endVisit ( const TypedValueCompareIterator<store::XS_DECIMAL>& ) = 0;
181 virtual void beginVisit ( const TypedValueCompareIterator<store::XS_INTEGER>& ) = 0;
182 virtual void endVisit ( const TypedValueCompareIterator<store::XS_INTEGER>& ) = 0;
183 virtual void beginVisit ( const TypedValueCompareIterator<store::XS_STRING>& ) = 0;
184 virtual void endVisit ( const TypedValueCompareIterator<store::XS_STRING>& ) = 0;
H A Dplaniter_visitor_impl_include.h99 template < store::SchemaTypeCode > class TypedValueCompareIterator; variable
H A Dprinter_visitor_impl.cpp1213 void PrinterVisitor::beginVisit(const TypedValueCompareIterator<store::XS_##xqt>& a){\
1219 void PrinterVisitor::endVisit(const TypedValueCompareIterator<store::XS_##xqt>& a){\
/dports/textproc/zorba/zorba-2.7.0/src/functions/
H A Dfunc_booleans_impl.cpp286 return new TypedValueCompareIterator<t> (sctx, loc, argv, CC); in createIterator()