Home
last modified time | relevance | path

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

123456

/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dfile_io_test.cc57 is.Skip(89); in TestFileInputStream()
62 // Skip test in TestFileInputStream()
63 is.Skip(-89); in TestFileInputStream()
67 is.Skip(100); in TestFileInputStream()
70 is.Skip(-400); in TestFileInputStream()
118 is.Skip(89); in TestFontInputStreamBasic()
125 font_is2.Skip(-200); in TestFontInputStreamBasic()
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]); in TestFontInputStreamTableLoading()
H A Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50 in TestMemoryInputStream()
68 EXPECT_EQ(is.Skip(-20), -20); // position 40 in TestMemoryInputStream()
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0 in TestMemoryInputStream()
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen); in TestMemoryInputStream()
/third_party/protobuf/objectivec/DevTools/
H A Dfull_mac_build.sh35 Skip some of the core protobuf build/checks to shorten the build time.
37 Skip the invoke of Xcode to test the runtime on both iOS and OS X.
39 Skip the invoke of Xcode to test the runtime on iOS.
41 Skip the Xcode Debug configuration.
43 Skip the Xcode Release configuration.
45 Skip the invoke of Xcode to test the runtime on OS X.
47 Skip the invoke of Xcode to test the runtime on tvOS.
49 Skip the Objective C conformance tests (run on OS X).
/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc96 bool FileInputStream::Skip(int count) { return impl_.Skip(count); } in Skip() function in google::protobuf::io::FileInputStream
147 int FileInputStream::CopyingFileInputStream::Skip(int count) { in Skip() function in google::protobuf::io::FileInputStream::CopyingFileInputStream
161 return CopyingInputStream::Skip(count); in Skip()
263 bool IstreamInputStream::Skip(int count) { return impl_.Skip(count); } in Skip() function in google::protobuf::io::IstreamInputStream
340 bool ConcatenatingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::ConcatenatingInputStream
343 // skipped when Skip() fails. in Skip()
345 if (streams_[0]->Skip(count)) return true; in Skip()
H A Dzero_copy_stream_impl_lite.cc88 bool ArrayInputStream::Skip(int count) { in Skip() function in google::protobuf::io::ArrayInputStream
186 int CopyingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::CopyingInputStream
262 bool CopyingInputStreamAdaptor::Skip(int count) { in Skip() function in google::protobuf::io::CopyingInputStreamAdaptor
280 int skipped = copying_stream_->Skip(count); in Skip()
414 bool LimitingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::LimitingInputStream
417 input_->Skip(limit_); in Skip()
421 if (!input_->Skip(count)) return false; in Skip()
H A Dzero_copy_stream_impl_lite.h82 bool Skip(int count) override;
193 virtual int Skip(int count);
221 bool Skip(int count) override;
355 bool Skip(int count) override;
H A Dzero_copy_stream_impl.h95 bool Skip(int count) override;
110 int Skip(int count) override;
228 bool Skip(int count) override;
239 // (We use the default implementation of Skip().)
316 bool Skip(int count) override;
H A Dcoded_stream_unittest.cc237 bool Skip(int count) override { in TEST_F()
317 // Skip this test for the 64-bit values. in TEST_2D()
509 // Skip 64-bit values. in TEST_1D()
927 // Skip
942 EXPECT_TRUE(coded_input.Skip(strlen("<To be skipped>"))); in TEST_1D()
969 // Skip forward in the same buffer then peek again. in TEST_F()
970 EXPECT_TRUE(coded_input.Skip(3)); in TEST_F()
975 // Skip to end of buffer and peek -- should get next buffer. in TEST_F()
976 EXPECT_TRUE(coded_input.Skip(5)); in TEST_F()
998 // Skip forwar in TEST_F()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DDebugCounter.h20 /// consists of a skip and a count. Skip is the number of times shouldExecute
22 /// return true once Skip is 0. So a skip=47, count=2 ,would skip the first 47
83 // We only execute while the Skip is not smaller than Count, in shouldExecute()
84 // and the StopAfter + Skip is larger than Count. in shouldExecute()
86 if (CounterInfo.Skip < 0) in shouldExecute()
88 if (CounterInfo.Skip >= CounterInfo.Count) in shouldExecute()
92 return CounterInfo.StopAfter + CounterInfo.Skip >= CounterInfo.Count; in shouldExecute()
170 int64_t Skip = 0; member
/third_party/protobuf/objectivec/Tests/CocoaPods/
H A Drun_tests.sh23 Skip the static based pods tests.
25 Skip the framework based pods tests.
27 Skip the iOS pods tests.
29 Skip the OS X pods tests.
/third_party/protobuf/src/google/protobuf/stubs/
H A Dbytestream.cc51 Skip(fragment_size); in CopyTo()
156 void ArrayByteSource::Skip(size_t n) { in Skip() function in google::protobuf::strings::ArrayByteSource
184 void LimitByteSource::Skip(size_t n) { in Skip() function in google::protobuf::strings::LimitByteSource
186 source_->Skip(n); in Skip()
H A Dbytestream_unittest.cc57 void Skip(size_t n) { data_.remove_prefix(n); } in Skip() function in google::protobuf::strings::__anon17053::MockByteSource
77 source.Skip(1); in TEST()
91 limit_source.Skip(1); in TEST()
H A Dbytestream.h104 // source->Skip(data.length());
113 // should decrease by N each time Skip(N) is called. Available() may not
124 // The returned region is valid until the next call to Skip() or until this
134 virtual void Skip(size_t n) = 0;
302 virtual void Skip(size_t n) override;
334 virtual void Skip(size_t n) override;
/third_party/skia/third_party/externals/libwebp/src/demux/
H A Ddemux.c134 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { in Skip() function
149 Skip(mem, 1); in ReadByte()
156 Skip(mem, 2); in ReadLE16s()
163 Skip(mem, 3); in ReadLE24s()
170 Skip(mem, 4); in ReadLE32()
245 Skip(mem, payload_available); in StoreFrame()
271 Skip(mem, payload_available); in StoreFrame()
397 Skip(mem, RIFF_HEADER_SIZE); in ReadHeader()
488 Skip(mem, chunk_size_padded - ANIM_CHUNK_SIZE); in ParseVP8XChunks()
491 goto Skip; in ParseVP8XChunks()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree_reader.h33 // The class also provides `Skip()`, `Seek()` and `Read()` methods similar to
47 // invoking `Skip()` will skip the desired number of bytes, and directly
57 // sv = reader.Skip(100 - sv.length());
75 // sv = reader.Skip(4); // sv = "hi", reader.consumed() = 9
76 // sv = reader.Skip(2); // sv = "l", reader.consumed() = 12
124 absl::string_view Skip(size_t skip);
189 inline absl::string_view CordRepBtreeReader::Skip(size_t skip) { in Skip() function in absl::cord_internal::CordRepBtreeReader
193 CordRepBtreeNavigator::Position pos = navigator_.Skip(skip + edge_length); in Skip()
H A Dcord_rep_btree_navigator_test.cc182 TEST_P(CordRepBtreeNavigatorTest, Skip) { in TEST_P()
189 Position pos = nav.Skip(char_offset); in TEST_P()
202 Position pos1 = nav.Skip(length1 + char_offset); in TEST_P()
208 Position pos2 = nav.Skip(length2 - length1 + char_offset); in TEST_P()
285 // Skip towards edge holding offset in TEST_P()
286 size_t edge_offset = nav.Skip(offset).offset; in TEST_P()
/third_party/node/deps/v8/src/date/
H A Ddateparser-inl.h190 if (in_->Skip(':')) return DateToken::Symbol(':'); in Scan()
191 if (in_->Skip('-')) return DateToken::Symbol('-'); in Scan()
192 if (in_->Skip('+')) return DateToken::Symbol('+'); in Scan()
193 if (in_->Skip('.')) return DateToken::Symbol('.'); in Scan()
194 if (in_->Skip(')')) return DateToken::Symbol(')'); in Scan()
/third_party/skia/dm/
H A DDMSrcSink.h44 enum class Status : int { Ok, Fatal, Skip };
61 static Result Skip(const SkString& s) { return Result(Status::Skip, s); } in Skip() function in DM::Result
62 static Result Skip(const char* s) { return Result(Status::Skip, s); } in Skip() function in DM::Result
63 template <typename... Args> static Result Skip(const char* s, Args... args) { in Skip() function in DM::Result
64 return Result(Status::Skip, s, args...); in Skip()
69 bool isSkip() { return fStatus == Status::Skip; } in isSkip()
H A DDMSrcSink.cpp120 case skiagm::DrawResult::kSkip: return Result(Result::Status::Skip, msg); in draw()
128 case skiagm::DrawResult::kSkip: return Result(Result::Status::Skip, msg); in draw()
196 return Result::Skip("Testing non-565 to 565 is uninteresting."); in draw()
211 return Result::Skip("Could not create brd for %s.", fPath.c_str()); in draw()
216 return Result::Skip("Skip decoding non-opaque to 565."); in draw()
226 return Result::Skip("Scaling very small images is uninteresting."); in draw()
243 return Result::Skip("Divisor is larger than image dimension."); in draw()
447 return Result::Skip("Skipping uninteresting test."); in draw()
460 return Result::Skip("Tes in draw()
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
H A DTestSuite_unittest.cpp118 {{"MockTestSuiteTest", "DISABLED_Skip"}, {TestResultType::Skip, 0.0}}, in TEST_F()
156 {{"MockTestSuiteTest", "DISABLED_Skip"}, {TestResultType::Skip, 0.0}}, in TEST_F()
159 {{"MockCrashTestSuiteTest", "DISABLED_SkipAfterCrash"}, {TestResultType::Skip, 0.0}}, in TEST_F()
/third_party/rust/crates/memchr/src/memmem/
H A Dtwoway.rs528 SuffixOrdering::Skip => { in forward()
566 SuffixOrdering::Skip => { in reverse()
616 Skip,
632 SuffixKind::Minimal if candidate > current => Skip, in cmp()
635 SuffixKind::Maximal if candidate < current => Skip, in cmp()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc139 int64_t FontInputStream::Skip(int64_t n) { in Skip() function in sfntly::FontInputStream
141 int64_t skipped = stream_->Skip(n); in Skip()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DDebugCounter.cpp97 Counter.Skip = CounterVal; in push_back()
128 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip in print()
/third_party/skia/third_party/externals/tint/src/ast/
H A Dtraverse_expressions.h41 Skip, member in tint::ast::TraverseAction
97 case TraverseAction::Skip: in TraverseExpressions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DMLxExpansionPass.cpp331 unsigned Skip = 0; in ExpandFPMLxInstructions() local
342 Skip = 0; in ExpandFPMLxInstructions()
348 if (++Skip == 2) in ExpandFPMLxInstructions()
352 Skip = 0; in ExpandFPMLxInstructions()

Completed in 22 milliseconds

123456