/external/dhcpcd/ |
dhcpcd-run-hooks | 21 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/ |
stacktrace.h | 12 unsigned int skip); 16 # define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/libcore/luni/src/main/java/libcore/io/ |
BufferIterator.java | 34 public abstract void skip(int byteCount); method in class:BufferIterator
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
CountingInputStream.java | 97 * @param length the number of bytes to skip
100 * @see java.io.InputStream#skip(long)
102 public long skip(final long length) throws IOException {
method in class:CountingInputStream 103 final long skip = super.skip(length);
local 104 this.count += skip;
105 return skip;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
StringBufferInputStreamTest.java | 50 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); 82 assertEquals("Skip positioned at incorrect char", 'W', sbis.read());
|
PushbackReaderTest.java | 218 * @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(2) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
PartialInputStream.java | 31 inputStream.skip(offset);
55 public long skip(long n) throws IOException {
method in class:PartialInputStream 57 return super.skip(n); //To change body of overridden methods use File | Settings | File Templates.
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_wrong_hwid.css | 26 #skip-hwid-warning { 30 #skip-hwid-warning-link {
|
/external/llvm/test/MC/AsmParser/ |
directive_space.s | 16 .skip 1
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_transform.h | 49 u32 h264bsdProcessBlock(i32 *data, u32 qp, u32 skip, u32 coeffMap);
|
/libcore/luni/src/main/java/java/io/ |
ObjectInput.java | 99 public long skip(long byteCount) throws IOException; method in interface:ObjectInput
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
inputstream_wrapper.h | 28 virtual int64_t skip(int64_t count); 31 // Call this in JNI_OnLoad to cache read/skip method IDs
|
/external/zlib/src/contrib/puff/ |
pufftest.c | 14 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, &sourcelen) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 81 * 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, 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, 104 new_block = lp_build_insert_new_block(skip->gallivm, ""); 106 /* if cond is true, goto skip->block, else goto new_block * [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 81 * 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, 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, 104 new_block = lp_build_insert_new_block(skip->gallivm, ""); 106 /* if cond is true, goto skip->block, else goto new_block * [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
RSUtils.java | 38 int stride, int skip) { 42 if (j >= stride - skip) 58 int stride, int skip) { 62 if (j >= stride - skip) 71 int stride, int skip) { 75 if (j >= stride - skip)
|
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSUtils.java | 38 int stride, int skip) { 42 if (j >= stride - skip) 58 int stride, int skip) { 62 if (j >= stride - skip) 71 int stride, int skip) { 75 if (j >= stride - skip)
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/packages/apps/Mms/src/com/android/mms/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/external/chromium_org/chrome/common/extensions/permissions/ |
permission_set_unittest.cc | 652 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.insert(APIPermission::kBrowsingData) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec2_oct.c | 172 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 > 0 [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkValidatingReadBuffer.cpp | 26 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(size) [all...] |