HomeSort by relevance Sort by last modified time
    Searched refs:Skip (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/v8/src/
dateparser-inl.h 50 if (in.Skip(':')) {
51 if (in.Skip(':')) {
59 in.Skip('.');
61 } else if (in.Skip('.') && time.IsExpecting(n)) {
76 in.Skip('-'); // Ignore suffix '-' for year, month, or day.
77 // Skip trailing 'T' for ECMAScript 5 date string format but make
79 if (in.Skip('T') && !in.IsAsciiDigit()) return false;
92 in.Skip('-'); // Ignore suffix '-' for month names
104 if (in.Skip(':')) {
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 169 virtual bool Skip(int count) = 0;
zero_copy_stream_impl.cc 96 bool FileInputStream::Skip(int count) {
97 return impl_.Skip(count);
152 int FileInputStream::CopyingFileInputStream::Skip(int count) {
167 return CopyingInputStream::Skip(count);
286 bool IstreamInputStream::Skip(int count) {
287 return impl_.Skip(count);
380 bool ConcatenatingInputStream::Skip(int count) {
383 // skipped when Skip() fails.
385 if (streams_[0]->Skip(count)) return true;
388 // to skip
    [all...]
zero_copy_stream_impl.h 93 bool Skip(int count);
108 int Skip(int count);
227 bool Skip(int count);
238 // (We use the default implementation of Skip().)
314 bool Skip(int count);
340 bool Skip(int count);
zero_copy_stream_impl_lite.h 75 bool Skip(int count);
184 virtual int Skip(int count);
212 bool Skip(int count);
gzip_stream.h 87 bool Skip(int count);
zero_copy_stream_impl_lite.cc 87 bool ArrayInputStream::Skip(int count) {
189 int CopyingInputStream::Skip(int count) {
267 bool CopyingInputStreamAdaptor::Skip(int count) {
275 // First skip any bytes left over from a previous BackUp().
277 // We have more data left over than we're trying to skip. Just chop it.
285 int skipped = copying_stream_->Skip(count);
coded_stream_unittest.cc 280 // Skip this test for the 64-bit values.
443 // Skip 64-bit values.
654 // Skip
671 EXPECT_TRUE(coded_input.Skip(strlen("<To be skipped>")));
698 // Skip forward in the same buffer then peek again.
699 EXPECT_TRUE(coded_input.Skip(3));
704 // Skip to end of buffer and peek -- should get next buffer.
705 EXPECT_TRUE(coded_input.Skip(5));
727 // Skip forward in the same buffer then peek again.
728 EXPECT_TRUE(coded_input.Skip(3))
    [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.h 73 void Skip( int bytes );
132 void Skip( int bytes );
152 void Skip( int bytes );
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 29 (* Skip token for error recovery. *)
lexer.ml 6 (* Skip any whitespace. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 34 (* Skip token for error recovery. *)
lexer.ml 6 (* Skip any whitespace. *)
  /external/pcre/
pcre_scanner.h 39 // scanner.SetSkipExpression("\\s+"); // Skip any white space we encounter
81 // following input that matches the "skip" regular expression.
89 // Set the "skip" regular expression. If after consuming some data,
92 // a skip RE that matches white space and comments.
102 void Skip(const char* re); // DEPRECATED; does *not* repeat
105 // Temporarily pause "skip"ing. This
106 // Skip("Foo"); code ; DisableSkip(); code; EnableSkip()
108 // Skip("Foo"); code ; Skip(NULL); code ; Skip("Foo")
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)
  /external/webkit/Source/WebKit/win/
COMEnumVariant.h 49 virtual HRESULT STDMETHODCALLTYPE Skip(ULONG celt);
150 HRESULT STDMETHODCALLTYPE COMEnumVariant<ContainerType>::Skip(ULONG celt)
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 266 unsigned Skip = 0;
279 Skip = 0;
286 if (++Skip == 2)
290 Skip = 0;
  /external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 214 bool Skip = false;
220 Skip = true;
225 if (Skip)

Completed in 162 milliseconds

1 2 3 4