Lines Matching refs:MATCH_INPUT
404 (match_type_ == MATCH_INPUT ? "input" : in ComposeFstImpl()
434 if (matcher2_->Type(true) != MATCH_INPUT) { in SetMatchType()
438 match_type_ = MATCH_INPUT; in SetMatchType()
440 type1 == MATCH_OUTPUT && type2 == MATCH_INPUT) { in SetMatchType()
444 } else if (flags2 & kPreferMatch && type2 == MATCH_INPUT) { in SetMatchType()
445 match_type_ = MATCH_INPUT; in SetMatchType()
446 } else if (type1 == MATCH_OUTPUT && type2 == MATCH_INPUT) { in SetMatchType()
450 } else if (type2 == MATCH_INPUT) { in SetMatchType()
451 match_type_ = MATCH_INPUT; in SetMatchType()
454 } else if (flags2 & kPreferMatch && matcher2_->Type(true) == MATCH_INPUT) { in SetMatchType()
455 match_type_ = MATCH_INPUT; in SetMatchType()
458 } else if (matcher2_->Type(true) == MATCH_INPUT) { in SetMatchType()
459 match_type_ = MATCH_INPUT; in SetMatchType()
605 case MATCH_INPUT: { // Lookahead on fst2 in CreateBase()
607 typedef typename DefaultLookAhead<Arc, MATCH_INPUT>::FstMatcher M; in CreateBase()
608 typedef typename DefaultLookAhead<Arc, MATCH_INPUT>::ComposeFilter F; in CreateBase()