Searched refs:skip (Results 1 - 25 of 685) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DLexerExtensions.cs37 public static void skip( Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DLexerExtensions.cs37 public static void skip( this Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DSkippingCipher.java11 * @param numberOfBytes the number of bytes to skip (positive forward, negative backwards).
15 long skip(long numberOfBytes); method in interface:SkippingCipher
18 * Reset the cipher and then skip forward to a given position.
/external/dagger2/util/
H A Dpublish-snapshot-on-commit.sh9 mvn clean source:jar deploy --settings="util/settings.xml" -DskipTests=true -Dinvoker.skip=true -Dmaven.javadoc.skip=true
H A Dmvn-deploy.sh20 -Dgpg.skip=false -Dgpg.keyname=${key} \
/external/libmojo/mojo/common/
H A Ddata_pipe_file_utils.cc21 uint32_t skip) {
25 if (file.Seek(base::File::FROM_BEGIN, skip) != skip) {
26 LOG(ERROR) << "Seek of " << skip << " in " << source.value() << " failed";
71 uint32_t skip,
76 base::Passed(&destination), skip),
19 BlockingCopyFromFile(const base::FilePath& source, ScopedDataPipeProducerHandle destination, uint32_t skip) argument
69 CopyFromFile(const base::FilePath& source, ScopedDataPipeProducerHandle destination, uint32_t skip, base::TaskRunner* task_runner, const base::Callback<void(bool)>& callback) argument
/external/vboot_reference/scripts/image_signing/
H A Dunpack_firmwarefd.sh59 dd if="${src_fd}" of="firmware.gbb" skip="${gbb_offset}" bs=1 \
62 dd if="${src_fd}" of="firmwareA.data" skip="${fwA_offset}" bs=1 \
64 dd if="${src_fd}" of="firmwareA.vblock" skip="${fwA_vblock_offset}" bs=1 \
66 dd if="${src_fd}" of="firmwareB.data" skip="${fwB_offset}" bs=1 \
68 dd if="${src_fd}" of="firmwareB.vblock" skip="${fwB_vblock_offset}" bs=1 \
/external/chromium-trace/catapult/telemetry/telemetry/value/
H A Dskip_unittest.py11 from telemetry.value import skip namespace
27 v = skip.SkipValue(self.pages[0], 'page skipped for testing reason',
37 v = skip.SkipValue(self.pages[0], 'page skipped for testing reason')
46 v = skip.SkipValue(self.pages[0], 'page skipped for testing reason')
52 'type': 'skip',
53 'name': 'skip',
58 self.assertTrue(isinstance(v, skip.SkipValue))
/external/curl/tests/
H A Dconvsrctest.pl196 my(@path,$path,$skip);
207 $skip = 1;
210 unless $skip;
225 unless $skip;
226 $skip --
236 unless $skip;
/external/ltp/testcases/network/stress/ns-tools/
H A Dfind_portbundle88 skip=1
98 if [ $skip -eq 1 ]; then
102 skip=0
/external/okhttp/.buildscript/
H A Ddeploy_snapshot.sh24 mvn clean source:jar javadoc:jar deploy --settings=".buildscript/settings.xml" -Dmaven.test.skip=true
/external/v8/src/snapshot/
H A Dstartup-serializer.cc28 WhereToPoint where_to_point, int skip) {
53 if (SerializeHotObject(obj, how_to_code, where_to_point, skip)) return;
60 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
65 if (SerializeBackReference(obj, how_to_code, where_to_point, skip)) return;
67 FlushSkip(skip);
147 int skip = 0; local
151 skip += kPointerSize;
155 FlushSkip(skip);
159 skip);
162 skip
27 SerializeObject(HeapObject* obj, HowToCode how_to_code, WhereToPoint where_to_point, int skip) argument
[all...]
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
H A Ddirective_space.s16 .skip 1
/external/syslinux/gpxe/src/include/gpxe/
H A Darc4.h19 void arc4_skip ( const void *key, size_t keylen, size_t skip,
/external/zlib/src/contrib/puff/
H A Dpufftest.c14 of input to skip before inflating (e.g. to skip a zlib or gzip header), and
91 unsigned skip = 0; local
105 skip = (unsigned)atoi(arg + 1);
128 if (skip >= len) {
129 fprintf(stderr, "skip request of %d leaves no input\n", skip);
134 /* test inflate data with offset skip */
135 len -= skip;
137 ret = puff(NIL, &destlen, source + skip,
[all...]
/external/syslinux/gpxe/src/arch/i386/core/
H A Daout_loader.c18 unsigned long skip; /* padding to be skipped to current segment */ member in struct:aout_state
49 astate.skip = 0;
73 if (astate.skip) {
74 if (astate.skip >= len - offset) {
75 astate.skip -= len - offset;
78 offset += astate.skip;
79 astate.skip = 0;
103 astate.skip = 4096;
108 /* skip and curaddr may be wrong, but I couldn't find
111 astate.skip
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.c81 * Begin a "skip" block. Inside this block we can test a condition and
82 * skip to the end of the block if the condition is false.
85 lp_build_flow_skip_begin(struct lp_build_skip_context *skip, argument
88 skip->gallivm = gallivm;
90 skip->block = lp_build_insert_new_block(gallivm, "skip");
96 * skip block if the condition is true.
99 lp_build_flow_skip_cond_break(struct lp_build_skip_context *skip, argument
104 new_block = lp_build_insert_new_block(skip->gallivm, "");
106 /* if cond is true, goto skip
114 lp_build_flow_skip_end(struct lp_build_skip_context *skip) argument
[all...]
/external/ltp/testcases/kernel/syscalls/madvise/
H A Dmadvise02.c71 int skip; member in struct:tcase
95 tc->skip = 0;
102 tc->skip = 1;
105 * skip EINVAL test for MADV_MERGEABLE. */
107 tc->skip = 1;
115 tc->skip = 1;
156 if (tc->skip == 1) {
/external/skia/src/core/
H A DSkValidatingReadBuffer.cpp25 fReader.skip(fReader.available());
42 const void* SkValidatingReadBuffer::skip(size_t size) { function in class:SkValidatingReadBuffer
51 fReader.skip(size);
55 // All the methods in this file funnel down into either readInt(), readScalar() or skip(),
56 // followed by a memcpy. So we've got all our validation in readInt(), readScalar() and skip();
57 // if they fail they'll return a zero value or skip nothing, respectively, and set fError to
104 // skip over the string + '\0' and then pad to a multiple of 4
106 this->skip(alignedSize);
116 const void* ptr = this->skip(sizeof(SkColor4f));
134 (void)this->skip(siz
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
H A Dstory_run.py6 from telemetry.value import skip namespace
41 return any(isinstance(v, skip.SkipValue) for v in self.values)
/external/guice/util/
H A Dpublish-snapshot-on-commit.sh14 mvn clean deploy --settings="$HOME/travis/settings.xml" -DskipTests=true -Dmaven.javadoc.skip=true
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
H A DAbstractJacocoMojo.java55 * @parameter property="jacoco.skip" default-value="false"
57 private boolean skip; field in class:AbstractJacocoMojo
61 if (skip) {
63 "Skipping JaCoCo execution because property jacoco.skip is set.");
/external/guava/guava-tests/test/com/google/common/io/
H A DCountingInputStreamTest.java53 assertEquals(10, counter.skip(10));
58 assertEquals(20, counter.skip(30));
60 assertEquals(0, counter.skip(20));
84 assertEquals(10, counter.skip(100));
/external/llvm/test/MC/AsmParser/
H A Ddirective_space.s16 .skip 1
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSeekableInputStream.java32 * {@link java.io.InputStream#skip(long) InputStream.skip}.
41 public long skip(long n) throws IOException { method in class:SeekableInputStream

Completed in 789 milliseconds

1234567891011>>