/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
splay-tree.h | 120 void * GTY((skip)) allocate_data;
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
output.h | 500 unnamed_section_callback GTY ((skip)) callback; 501 const void *GTY ((skip)) data; 525 noswitch_section_callback GTY ((skip)) callback; 531 struct section_common GTY ((skip)) common;
|
splay-tree.h | 120 void * GTY((skip)) allocate_data;
|
/external/zlib/contrib/puff/ |
puff.c | 68 * - Add option in TEST code to skip input bytes 885 unsigned skip = 0; local [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
ReaderTest.java | 283 * @tests {@link java.io.Reader#skip(long)} 288 method = "skip", 298 // normal skip 299 mockReader.skip(length / 2); 302 // try to skip a bigger number of characters than the total 304 mockReader.skip(length); 306 // try to skip a negative number of characters throw IllegalArgumentException 308 mockReader.skip(-1); 319 simple.skip(5); 324 simple.skip(1) [all...] |
/external/skia/src/core/ |
SkPicturePlayback.cpp | 6 /* Define this to spew out a debug statement whenever we skip the remainder of 491 SkDEBUGCODE(uint32_t bytes =) fRegions[i].unflatten(buffer.skip(size)); 594 canvas.drawData(fReader.skip(length), length); 595 // skip handles padding the read out to a multiple of 4 611 const SkPoint* pts = (const SkPoint*)fReader.skip(sizeof(SkPoint) * count); 618 const SkPoint* pos = (const SkPoint*)fReader.skip(points * sizeof(SkPoint)); 626 const SkScalar* xpos = (const SkScalar*)fReader.skip(xCount * sizeof(SkScalar)); 634 const SkScalar* xpos = (const SkScalar*)fReader.skip((3 + xCount) * sizeof(SkScalar)); 670 const SkScalar* ptr = (const SkScalar*)fReader.skip(4 * sizeof(SkScalar)); 694 const SkPoint* verts = (const SkPoint*)fReader.skip( [all...] |
SkPicturePlayback.h | 102 return (const SkIRect*)fReader.skip(sizeof(SkIRect)); 118 text->fText = (const char*)fReader.skip(length);
|
/external/openssl/crypto/ |
ex_data.c | 419 goto skip; 423 skip: 466 goto skip; 470 skip: 506 goto skip; 510 skip:
|
/external/openssl/crypto/ec/ |
ec2_smpl.c | 505 size_t field_len, i, skip; local 569 skip = field_len - BN_num_bytes(x); 570 if (skip > field_len) 575 while (skip > 0) 578 skip--; 580 skip = BN_bn2bin(x, buf + i); 581 i += skip; 590 skip = field_len - BN_num_bytes(y); 591 if (skip > field_len) 596 while (skip > 0 [all...] |
/libcore/luni/src/main/java/java/io/ |
PushbackInputStream.java | 220 * the number of bytes to skip. 226 public long skip(long count) throws IOException { method in class:PushbackInputStream 239 numSkipped += in.skip(count - numSkipped);
|
CharArrayReader.java | 251 * Invocations of {@code read()} and {@code skip()} will occur from this new 272 * the number of characters to skip. 278 public long skip(long n) throws IOException {
|
StringReader.java | 200 * Invocations of {@code read()} and {@code skip()} will occur from this new 219 * Reader#skip(long) overridden method}, this method may skip negative skip 225 * the maximum number of characters to skip. Positive values skip 226 * forward; negative values skip backward. 238 public long skip(long ns) throws IOException { method in class:StringReader
|
/libcore/luni/src/test/java/tests/api/java/io/ |
FilterReaderTest.java | 77 public long skip(long count) throws IOException { method in class:FilterReaderTest.MockReader 244 * @tests java.io.FilterReader#skip() 248 notes = "Verifies skip(long).", 249 method = "skip", 253 fr.skip(10); 254 assertTrue("skip(long) has not been called.", called);
|
FileInputStreamTest.java | 288 is.skip(3000); 317 is.skip(3000); 423 * @tests FileInputStream#skip(long) 427 method = "skip", 433 is.skip(1000); 435 assertTrue("Test 1: Failed to skip to correct position.", 449 * @tests FileInputStream#skip(long) 453 notes = "Verifies that skip(long) method throws IOException if " + 455 method = "skip", 463 fis.skip(-5) [all...] |
/external/dnsmasq/src/ |
dbus.c | 116 int skip = 0; local 139 skip = 1; 164 skip = 0; 181 if (!skip)
|
/external/proguard/src/proguard/io/ |
ManifestRewriter.java | 141 public long skip(long n) throws IOException method in class:ManifestRewriter.SplitLineReader
|
/external/zlib/ |
gzguts.h | 108 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon8626
|
/frameworks/base/core/java/android/util/ |
Base64InputStream.java | 96 public long skip(long n) throws IOException { method in class:Base64InputStream
|
/frameworks/base/core/tests/coretests/src/android/content/ |
MemoryFileProviderTest.java | 59 assertEquals(1000000, in.skip(1000000));
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_rt.h | 54 int skip; member in struct:PERF_RTdata_rate
|
/libcore/luni/src/main/java/javax/crypto/ |
CipherInputStream.java | 179 public long skip(long n) throws IOException { method in class:CipherInputStream
|
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/ |
AbstractHttpInputStream.java | 61 * skip(long) is implemented using read(byte[], int, int) so subclasses 64 @Override public final long skip(long n) throws IOException { method in class:AbstractHttpInputStream
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLSocketInputStream.java | 147 * @see java.io.InputStream#skip(long) 150 public long skip(long n) throws IOException { method in class:SSLSocketInputStream
|
/libcore/support/src/test/java/tests/support/ |
Support_StringReader.java | 197 * location. Invocations of <code>read()/skip()</code> will occur from 221 * The number of characters to skip. 228 public long skip(long count) throws IOException { method in class:Support_StringReader
|
/packages/apps/Email/src/org/apache/commons/io/input/ |
NullInputStream.java | 261 * Skip a specified number of bytes.
263 * @param numberOfBytes The number of bytes to skip.
271 public long skip(long numberOfBytes) throws IOException {
method in class:NullInputStream 273 throw new IOException("Skip after end of file");
|