Searched refs:Skip (Results 1 - 25 of 223) sorted by relevance

123456789

/external/chromium_org/content/test/gpu/gpu_tests/
H A Dwebgl_conformance_expectations.py28 self.Skip('conformance/glsl/misc/large-loop-compile.html',
30 self.Skip('conformance/textures/texture-size-limit.html',
38 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html',
112 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html',
119 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html',
121 self.Skip('conformance/canvas/drawingbuffer-test.html',
134 self.Skip('conformance/ogles/GL/control_flow/control_flow_009_to_010.html',
140 self.Skip('conformance/glsl/functions/glsl-function-asin.html',
142 self.Skip('conformance/glsl/functions/glsl-function-dot.html',
144 self.Skip('conformanc
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokens.cs42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DLexerExtensions.cs39 lexer.Skip();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DLexerExtensions.cs39 lexer.Skip();
/external/chromium_org/net/base/
H A Dbig_endian_unittest.cc20 EXPECT_TRUE(reader.Skip(2));
47 EXPECT_FALSE(reader.Skip(6));
48 EXPECT_TRUE(reader.Skip(1));
52 EXPECT_TRUE(reader.Skip(2));
56 EXPECT_TRUE(reader.Skip(1));
69 EXPECT_TRUE(writer.Skip(2));
85 EXPECT_FALSE(writer.Skip(6));
86 EXPECT_TRUE(writer.Skip(1));
89 EXPECT_TRUE(writer.Skip(2));
93 EXPECT_TRUE(writer.Skip(
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
92 public static readonly T Skip = new T() field in class:Antlr.Runtime.T
/external/chromium_org/android_webview/browser/
H A Dinput_stream.h35 virtual bool Skip(int64_t n, int64_t* bytes_skipped) = 0;
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50
68 EXPECT_EQ(is.Skip(-20), -20); // position 40
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen);
H A Dfile_io_test.cc57 is.Skip(89);
62 // Skip test
63 is.Skip(-89);
67 is.Skip(100);
70 is.Skip(-400);
118 is.Skip(89);
125 font_is2.Skip(-200);
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]);
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50
68 EXPECT_EQ(is.Skip(-20), -20); // position 40
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen);
H A Dfile_io_test.cc57 is.Skip(89);
62 // Skip test
63 is.Skip(-89);
67 is.Skip(100);
70 is.Skip(-400);
118 is.Skip(89);
125 font_is2.Skip(-200);
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]);
/external/chromium_org/android_webview/browser/net/
H A Dinput_stream_reader_unittest.cc36 MOCK_METHOD2(Skip, bool(int64_t n, int64_t* bytes_skipped));
76 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
90 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
106 EXPECT_CALL(input_stream_, Skip(_, _))
110 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
114 EXPECT_CALL(input_stream_, Skip(3, NotNull()))
118 EXPECT_CALL(input_stream_, Skip(2, NotNull()))
/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs22 void Skip(UInt32 num); method in interface:SevenZip.Compression.LZ.IMatchFinder
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc97 bool FileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream
98 return impl_.Skip(count);
153 int FileInputStream::CopyingFileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
168 return CopyingInputStream::Skip(count);
287 bool IstreamInputStream::Skip(int count) { function in class:google::protobuf::io::IstreamInputStream
288 return impl_.Skip(count);
381 bool ConcatenatingInputStream::Skip(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
384 // skipped when Skip() fails.
386 if (streams_[0]->Skip(count)) return true;
445 bool LimitingInputStream::Skip(in function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl.h93 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);
H A Dzero_copy_stream_impl_lite.h75 bool Skip(int count);
184 virtual int Skip(int count);
212 bool Skip(int count);
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc96 bool FileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream
97 return impl_.Skip(count);
152 int FileInputStream::CopyingFileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
167 return CopyingInputStream::Skip(count);
286 bool IstreamInputStream::Skip(int count) { function in class:google::protobuf::io::IstreamInputStream
287 return impl_.Skip(count);
380 bool ConcatenatingInputStream::Skip(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
383 // skipped when Skip() fails.
385 if (streams_[0]->Skip(count)) return true;
444 bool LimitingInputStream::Skip(in function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl.h93 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);
H A Dzero_copy_stream_impl_lite.h75 bool Skip(int count);
184 virtual int Skip(int count);
212 bool Skip(int count);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g398 WS : (' '|'\t')+ { Skip(); }
H A DProfileGrammar.g398 WS : (' '|'\t')+ { Skip(); }
/external/chromium_org/android_webview/native/
H A Dinput_stream_impl.h36 virtual bool Skip(int64_t n, int64_t* bytes_skipped) OVERRIDE;
/external/chromium_org/base/win/
H A Denum_variant.h37 STDMETHODIMP Skip(ULONG skip_count);
/external/chromium_org/third_party/ots/src/
H A Dcvt.cc26 if (!table.Skip(length)) {
H A Dfpgm.cc22 if (!table.Skip(length)) {

Completed in 629 milliseconds

123456789