Home
last modified time | relevance | path

Searched refs:FTRange (Results 1 – 12 of 12) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/src/compiler/parsetree/
H A Dparsenodes.h121 class FTRange; variable
6008 class FTRange : public parsenode {
6010 FTRange(
6016 ~FTRange();
6035 FTRange const*
6039 FTRange const* get_range() const { return range_; } in get_range()
6044 FTRange const *const range_;
6328 FTRange const* = NULL
6341 FTRange const *const levels_;
6459 FTRange const *distance,
[all …]
H A Dparsenode_visitor.h244 DECL_PARSENODE_VISITOR_VISIT_MEM_FNS( FTRange );
H A Dparsenode_print_xml_visitor.cpp933 void* begin_visit( FTRange const &n ) { in BEGIN_END_TAG()
941 END_TAG( FTRange ) in END_TAG() argument
H A Dparsenodes.cpp5278 FTRange const *levels in FTThesaurusID()
5439 FTRange::FTRange( in FTRange() function in zorba::FTRange
5453 FTRange::~FTRange() { in ~FTRange()
5458 void FTRange::accept( parsenode_visitor &v ) const in accept()
5469 FTRange const *distance, in FTDistance()
5565 FTRange const *range in FTTimes()
H A Dparsenode_print_dot_visitor.h223 DECL_PARSENODE_VISITOR_VISIT_MEM_FNS( FTRange );
H A Dparsenode_print_dot_visitor.cpp2091 void *ParseNodePrintDOTVisitor::begin_visit(const FTRange &n) in begin_visit()
3360 void ParseNodePrintDOTVisitor::end_visit(const FTRange&, void*) in end_visit() argument
H A Dparsenode_print_xquery_visitor.cpp1963 DEFAULT_VISIT (FTRange);
H A Dparsenode_print_xqdoc_visitor.cpp1412 XQDOC_NO_BEGIN_END_TAG (FTRange)
/dports/textproc/zorba/zorba-2.7.0/src/compiler/parser/
H A Dxquery_parser.y852 %type <node> FTRange
6030 DISTANCE FTRange FTUnit
6034 dynamic_cast<FTRange*>($2),
6256 | FTRange LEVELS
6400 OCCURS FTRange TIMES
6402 $$ = new FTTimes( LOC(@$), dynamic_cast<FTRange*>($2) );
6407 FTRange :
6410 $$ = new FTRange( LOC(@$), ft_range_mode::exactly, $2 );
6414 $$ = new FTRange( LOC(@$), ft_range_mode::at_least, $3 );
6418 $$ = new FTRange( LOC(@$), ft_range_mode::at_most, $3 );
[all …]
H A Dxquery_parser.cpp9698 dynamic_cast<FTRange*>((yysemantic_stack_[(3) - (2)].node)), in parse()
10014 …- (2)].sval)), SYMTAB((yysemantic_stack_[(4) - (3)].sval)), dynamic_cast<FTRange*>((yysemantic_sta… in parse()
10258 …(yyval.node) = new FTTimes( LOC((yyloc)), dynamic_cast<FTRange*>((yysemantic_stack_[(3) - (2)].nod… in parse()
10267 …(yyval.node) = new FTRange( LOC((yyloc)), ft_range_mode::exactly, (yysemantic_stack_[(2) - (2)].ex… in parse()
10276 …(yyval.node) = new FTRange( LOC((yyloc)), ft_range_mode::at_least, (yysemantic_stack_[(3) - (3)].e… in parse()
10285 …(yyval.node) = new FTRange( LOC((yyloc)), ft_range_mode::at_most, (yysemantic_stack_[(3) - (3)].ex… in parse()
10294 …(yyval.node) = new FTRange( LOC((yyloc)), ft_range_mode::from_to, (yysemantic_stack_[(4) - (2)].ex… in parse()
/dports/textproc/zorba/zorba-2.7.0/src/compiler/dewey/
H A Ddewey.h486 DECL_CONCRETE_VISIT (FTRange);
/dports/textproc/zorba/zorba-2.7.0/src/compiler/translator/
H A Dtranslator.cpp14122 void *begin_visit (const FTRange& v) { in begin_visit()
14130 void end_visit (const FTRange& v, void* /*visit_state*/) { in end_visit()