Searched refs:skip (Results 1 - 25 of 550) 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/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
H A Ddatavis.asm26 .skip 4
27 .skip 4, 1
31 .skip 4
32 .skip 4, 1
37 .skip 4
38 .skip 4, 1
/external/dhcpcd/
H A Ddhcpcd-run-hooks21 for skip in ${skip_hooks}; do
23 */"${skip}") continue 2;;
24 */[0-9][0-9]"-${skip}") continue 2;;
25 */[0-9][0-9]"-${skip}.sh") continue 2;;
/external/kernel-headers/original/linux/
H A Dstacktrace.h12 unsigned int skip);
16 # define save_stack_trace(trace, task, all, skip) do { } while (0)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DStringBufferInputStreamTest.java50 sbis.skip(6);
69 long s = sbis.skip(6);
70 assertEquals("Unable to skip correct umber of chars", 6, s);
76 * @tests java.io.StringBufferInputStream#skip(long)
79 // Test for method long java.io.StringBufferInputStream.skip(long)
80 long s = sbis.skip(6);
81 assertEquals("Unable to skip correct umber of chars", 6, s);
H A DPushbackReaderTest.java218 * @tests java.io.PushbackReader#skip(long)
244 numSkipped = pReader2.skip(3);
247 numSkipped += pReader2.skip(10);
248 numSkipped += pReader2.skip(10);
249 numSkipped += pReader2.skip(10);
250 numSkipped += pReader2.skip(10);
251 numSkipped += pReader2.skip(10);
252 numSkipped += pReader2.skip(10);
253 assertEquals("Did not skip correct number of characters",
256 numSkipped += pReader.skip(
[all...]
H A DLineNumberInputStreamTest.java76 lnis.skip(4);
114 lnis.skip(4);
123 lnis.skip(100);
141 * @tests java.io.LineNumberInputStream#skip(long)
144 lnis.skip(4);
H A DStringReaderTest.java59 sr.skip(5);
61 sr.skip(5);
127 sr.skip(5);
129 sr.skip(5);
138 * @tests java.io.StringReader#skip(long)
141 // Test for method long java.io.StringReader.skip(long)
143 sr.skip(5);
146 assertTrue("Failed to skip properly", new String(buf, 0, 2)
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_wrong_hwid.css26 #skip-hwid-warning {
30 #skip-hwid-warning-link {
/external/llvm/test/MC/AsmParser/
H A Ddirective_space.s16 .skip 1
/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/chromium_org/third_party/mesa/src/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/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/chromium_org/chrome/common/extensions/permissions/
H A Dpermission_set_unittest.cc652 APIPermissionSet skip; local
656 skip.insert(APIPermission::kActiveTab);
657 skip.insert(APIPermission::kAdView);
658 skip.insert(APIPermission::kAlarms);
659 skip.insert(APIPermission::kAlwaysOnTopWindows);
660 skip.insert(APIPermission::kAppCurrentWindowInternal);
661 skip.insert(APIPermission::kAppRuntime);
662 skip.insert(APIPermission::kAppWindow);
663 skip.insert(APIPermission::kAudio);
664 skip
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
H A Dec2_oct.c172 size_t field_len, i, skip; local
236 skip = field_len - BN_num_bytes(x);
237 if (skip > field_len)
242 while (skip > 0)
245 skip--;
247 skip = BN_bn2bin(x, buf + i);
248 i += skip;
257 skip = field_len - BN_num_bytes(y);
258 if (skip > field_len)
263 while (skip >
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkValidatingReadBuffer.cpp26 fReader.skip(fReader.available());
43 const void* SkValidatingReadBuffer::skip(size_t size) { function in class:SkValidatingReadBuffer
48 fReader.skip(size);
53 // All the methods in this file funnel down into either readInt(), readScalar() or skip(),
54 // followed by a memcpy. So we've got all our validation in readInt(), readScalar() and skip();
55 // if they fail they'll return a zero value or skip nothing, respectively, and set fError to
98 // skip over the string + '\0' and then pad to a multiple of 4
100 this->skip(alignedSize);
113 const void* ptr = this->skip(SkAlign4(*length));
134 (void)this->skip(siz
[all...]
/external/openssl/crypto/ec/
H A Dec2_oct.c172 size_t field_len, i, skip; local
236 skip = field_len - BN_num_bytes(x);
237 if (skip > field_len)
242 while (skip > 0)
245 skip--;
247 skip = BN_bn2bin(x, buf + i);
248 i += skip;
257 skip = field_len - BN_num_bytes(y);
258 if (skip > field_len)
263 while (skip >
[all...]
/external/skia/src/core/
H A DSkValidatingReadBuffer.cpp26 fReader.skip(fReader.available());
43 const void* SkValidatingReadBuffer::skip(size_t size) { function in class:SkValidatingReadBuffer
48 fReader.skip(size);
53 // All the methods in this file funnel down into either readInt(), readScalar() or skip(),
54 // followed by a memcpy. So we've got all our validation in readInt(), readScalar() and skip();
55 // if they fail they'll return a zero value or skip nothing, respectively, and set fError to
98 // skip over the string + '\0' and then pad to a multiple of 4
100 this->skip(alignedSize);
113 const void* ptr = this->skip(SkAlign4(*length));
134 (void)this->skip(siz
[all...]
/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/chromium_org/extensions/common/
H A Dfile_util.cc25 size_t skip = file_path.find_first_not_of("/\\"); local
26 if (skip != file_path.npos)
27 file_path = file_path.substr(skip);
/external/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java102 @Override public long skip(long n) throws IOException { method in class:MultiInputStream
106 long result = in.skip(n);
113 return 1 + in.skip(n - 1);
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dgetonescriptspan.cc254 // skip to just beyond first '<'
289 int skip = 0; local
293 while (skip < len) {
295 // int oldskip = skip;
296 skip += ScanToLetterOrSpecial(src + skip, len - skip);
299 // oldskip, src[oldskip], skip, src[skip]);
302 if (skip >
375 int skip = SkipToFrontOfSpan(next_byte_, byte_length_, &spanscript); local
[all...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DInflaterInputStreamTest.java251 assertEquals(4, in.skip(4));
346 * @tests java.util.zip.InflaterInputStream#skip(long)
354 iis.skip(-3);
362 iis.skip(Integer.MIN_VALUE);
370 assertEquals("Incorrect Number Of Bytes Skipped.", 3, iis.skip(3));
375 assertEquals("Incorrect Number Of Bytes Skipped.", 0, iis.skip(0));
379 assertEquals("Incorrect Number Of Bytes Skipped.", 2, iis.skip(4));
385 * @tests java.util.zip.InflaterInputStream#skip(long)
392 // testing for negative input to skip
398 long skip;
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DVDMXParser.cpp51 bool skip(size_t numBytes) function in class:Buffer
129 if (!buf.skip(4) || !buf.readU16(&numRatios))
146 if (!buf.skip(1)
174 if (!buf.readU16(&numRecords) || !buf.skip(sizeof(uint16_t)))
196 if (!buf.skip(2 * sizeof(int16_t)))

Completed in 915 milliseconds

1234567891011>>