Searched refs:Skip (Results 1 - 25 of 156) sorted by last modified time

1234567

/external/webrtc/webrtc/test/
H A Drtp_file_reader.cc500 TRY_PCAP(Skip(kEthernetIIHeaderMacSkip)); // Source+destination MAC.
554 // Skip remaining fields of IP header.
557 TRY_PCAP(Skip(header_length - kMinIpHeaderLength));
627 int Skip(uint32_t length) { function in class:webrtc::test::PcapReader
/external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
H A Dltmain.sh2545 # Skip this library if it cannot be dlopened.
4573 /* Skip over the disk name in MSDOS pathnames. */
6656 # Skip directories that are in the system default run-time
6730 # Skip directories that are in the system default run-time
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
H A Dpump.py261 def Skip(lines, pos, regex): function
283 pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX)
284 pos = Skip(lines, pos, r'\(')
286 pos = Skip(lines, pos, r'\)')
293 pos = Skip(lines, pos, r'\)')
330 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
334 pos = Skip(lines, eq_token.end, r'\s*')
346 pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX)
353 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
/external/webp/src/demux/
H A Ddemux.c134 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { function
149 Skip(mem, 1);
156 Skip(mem, 2);
163 Skip(mem, 3);
170 Skip(mem, 4);
239 Skip(mem, payload_available);
265 Skip(mem, payload_available);
386 Skip(mem, RIFF_HEADER_SIZE);
475 Skip(mem, chunk_size_padded - ANIM_CHUNK_SIZE);
478 goto Skip;
[all...]
/external/v8/src/
H A Ddateparser-inl.h186 if (in_->Skip(':')) return DateToken::Symbol(':');
187 if (in_->Skip('-')) return DateToken::Symbol('-');
188 if (in_->Skip('+')) return DateToken::Symbol('+');
189 if (in_->Skip('.')) return DateToken::Symbol('.');
190 if (in_->Skip(')')) return DateToken::Symbol(')');
H A Ddateparser.h94 bool Skip(uint32_t c) { function in class:v8::internal::DateParser::BASE_EMBEDDED
H A Ddeoptimizer.h947 void Skip(int n) {
H A Dframes.cc244 // Skip top ExternalCallbackScope if we already advanced to a JS frame
664 // Skip saved double registers.
682 // Skip the words containing the register values.
747 // Skip the arguments adaptor frame and look at the real caller.
957 it.Next(); // Skip height.
989 it.Skip(Translation::NumberOfOperandsFor(opcode));
1019 it.Skip(Translation::NumberOfOperandsFor(frame_opcode));
1023 // Skip over operands to advance to the next opcode.
1024 it.Skip(Translation::NumberOfOperandsFor(frame_opcode));
1087 it.Next(); // Skip fram
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py447 event.Skip()
H A DJetDialogs.py324 event.Skip()
H A DJetSegGraph.py204 event.Skip()
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc132 int64_t FontInputStream::Skip(int64_t n) { function in class:sfntly::FontInputStream
134 int64_t skipped = stream_->Skip(n);
H A Dfont_input_stream.h86 virtual int64_t Skip(int64_t n); // n can be negative.
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc532 is->Skip((*table_header)->offset() - is->position());
/external/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc108 int64_t FileInputStream::Skip(int64_t n) { function in class:sfntly::FileInputStream
H A Dfile_input_stream.h40 virtual int64_t Skip(int64_t n);
H A Dinput_stream.h38 virtual int64_t Skip(int64_t n) = 0;
H A Dmemory_input_stream.cc102 int64_t MemoryInputStream::Skip(int64_t n) { function in class:sfntly::MemoryInputStream
H A Dmemory_input_stream.h40 virtual int64_t Skip(int64_t n);
/external/sfntly/cpp/src/test/
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]);
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);
/external/skia/
H A Dmake.bat10 rem Skip environment setup on bots.
/external/protobuf/
H A Dltmain.sh2545 # Skip this library if it cannot be dlopened.
4573 /* Skip over the disk name in MSDOS pathnames. */
6656 # Skip directories that are in the system default run-time
6730 # Skip directories that are in the system default run-time
/external/protobuf/src/google/protobuf/
H A Dextension_set_heavy.cc67 return input->Skip(length);
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc187 bool CodedInputStream::Skip(int count) { function in class:google::protobuf::io::CodedInputStream
212 // We hit the limit. Skip up to it then fail.
215 input_->Skip(bytes_until_limit);
221 return input_->Skip(count);
606 bool CodedOutputStream::Skip(int count) { function in class:google::protobuf::io::CodedOutputStream

Completed in 1848 milliseconds

1234567