HomeSort by relevance Sort by last modified time
    Searched refs:SkipUntil (Results 1 - 18 of 18) sorted by null

  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-skip_until.hpp 219 class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, identity_one_worker>,
220 class Value = rxu::value_type_t<SkipUntil>,
221 class Result = observable<Value, SkipUntil>>
224 return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
236 class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, rxu::decay_t<Coordination>>,
237 class Value = rxu::value_type_t<SkipUntil>,
238 class Result = observable<Value, SkipUntil>>
240 return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
247 class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<TriggerObservable>, identity_one_worker>,
248 class Value = rxu::value_type_t<SkipUntil>,
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 227 SkipUntil(tok::r_square, StopAtSemi);
265 SkipUntil(tok::r_square, StopAtSemi);
277 SkipUntil(tok::r_square, StopAtSemi);
307 SkipUntil(tok::r_square, StopAtSemi);
333 SkipUntil(tok::r_square, StopAtSemi);
452 SkipUntil(tok::r_brace, StopBeforeMatch);
ParseStmt.cpp 197 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
390 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
407 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
687 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
705 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
    [all...]
ParseOpenMP.cpp 184 P.SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
210 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
248 SkipUntil(tok::comma, tok::colon, tok::annot_pragma_openmp_end,
266 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
565 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
658 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
692 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
812 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
818 SkipUntil(tok::annot_pragma_openmp_end);
835 SkipUntil(tok::annot_pragma_openmp_end)
    [all...]
Parser.cpp 244 /// SkipUntil - Read tokens until we get to the specified token, then consume
250 /// If SkipUntil finds the specified token, it returns true, otherwise it
252 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
305 SkipUntil(tok::r_paren, StopAtCodeCompletion);
307 SkipUntil(tok::r_paren);
313 SkipUntil(tok::r_square, StopAtCodeCompletion);
315 SkipUntil(tok::r_square);
321 SkipUntil(tok::r_brace, StopAtCodeCompletion);
323 SkipUntil(tok::r_brace);
911 SkipUntil(tok::semi); // FIXME: better skip
    [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp 111 SkipUntil(tok::semi);
136 SkipUntil(tok::r_brace);
149 SkipUntil(tok::r_brace, StopBeforeMatch);
275 SkipUntil(tok::semi);
286 SkipUntil(tok::semi);
454 SkipUntil(tok::semi);
475 SkipUntil(tok::semi);
514 SkipUntil(tok::semi);
527 SkipUntil(tok::semi);
558 SkipUntil(tok::semi)
    [all...]
ParseObjc.cpp 87 SkipUntil(tok::semi);
91 SkipUntil(tok::semi);
142 SkipUntil(tok::semi);
548 SkipUntil(tok::greater, tok::at, StopBeforeMatch);
555 SkipUntil({tok::greater, tok::greaterequal, tok::at, tok::minus,
637 SkipUntil(tok::at, StopAtSemi | StopBeforeMatch);
695 SkipUntil(tok::semi);
710 SkipUntil(tok::r_brace, tok::at, StopAtSemi);
905 SkipUntil(tok::r_paren, StopAtSemi);
    [all...]
ParseTemplate.cpp 120 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
135 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
239 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
309 SkipUntil(tok::semi);
379 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
394 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
652 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
707 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
    [all...]
ParseTentative.cpp 163 if (!SkipUntil(tok::r_paren))
187 if (!SkipUntil(tok::r_square))
194 if (!SkipUntil(tok::r_paren))
300 if (!SkipUntil(tok::r_paren, StopAtSemi))
351 P.SkipUntil(tok::r_paren, tok::semi, StopBeforeMatch);
449 SkipUntil(tok::r_paren, StopAtSemi);
596 bool IsAttribute = SkipUntil(tok::r_square);
663 if (!SkipUntil(tok::r_paren)) {
    [all...]
ParseDecl.cpp 134 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
138 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
189 SkipUntil(tok::r_paren, StopAtSemi);
192 SkipUntil(tok::r_paren, StopAtSemi);
312 SkipUntil(tok::r_paren, StopAtSemi);
395 SkipUntil(tok::r_paren);
727 SkipUntil(tok::comma, tok::r_paren,
756 SkipUntil(tok::comma, tok::r_paren,
777 SkipUntil(tok::comma, tok::r_paren,
806 SkipUntil(tok::comma, tok::r_paren
    [all...]
ParseExprCXX.cpp 723 SkipUntil(tok::r_square, StopAtSemi);
724 SkipUntil(tok::l_brace, StopAtSemi);
725 SkipUntil(tok::r_brace, StopAtSemi);
    [all...]
ParseStmtAsm.cpp 697 SkipUntil(tok::r_paren, StopAtSemi);
703 SkipUntil(tok::r_paren, StopAtSemi);
826 SkipUntil(tok::r_paren, StopAtSemi);
840 SkipUntil(tok::r_paren, StopAtSemi);
847 SkipUntil(tok::r_paren, StopAtSemi);
857 SkipUntil(tok::r_paren, StopAtSemi);
ParseCXXInlineMethods.cpp 62 SkipUntil(tok::semi);
95 SkipUntil(tok::semi);
98 SkipUntil(tok::semi);
668 /// NOTE: This is a specialized version of Parser::SkipUntil.
    [all...]
  /build/kati/
strutil.cc 61 static int SkipUntil(const char* s,
93 i = s + SkipUntil(in->data() + s, len - s, ranges, 4,
442 e += SkipUntil(s.data() + e, s.size() - e, ranges, 6,
534 size_t i = SkipUntil(s->c_str(), s->size(), ranges, 10, NeedsShellEscape);
552 i += SkipUntil(s->c_str() + i, s->size() - i, ranges, 10, NeedsShellEscape);
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 270 def SkipUntil(lines, pos, regex, token_type):
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')
355 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')
  /external/googletest/googletest/scripts/
pump.py 270 def SkipUntil(lines, pos, regex, token_type):
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')
355 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')
  /external/clang/include/clang/Parse/
Parser.h 862 /// \brief Control flags for SkipUntil functions.
876 /// SkipUntil - Read tokens until we get to the specified token, then consume
882 /// If SkipUntil finds the specified token, it returns true, otherwise it
884 bool SkipUntil(tok::TokenKind T,
886 return SkipUntil(llvm::makeArrayRef(T), Flags);
888 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2,
891 return SkipUntil(TokArray, Flags);
893 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
896 return SkipUntil(TokArray, Flags);
898 bool SkipUntil(ArrayRef<tok::TokenKind> Toks
    [all...]

Completed in 539 milliseconds