HomeSort by relevance Sort by last modified time
    Searched defs:skip (Results 176 - 200 of 1537) sorted by null

1 2 3 4 5 6 78 91011>>

  /toolchain/binutils/binutils-2.27/zlib/examples/
zran.c 252 int ret, skip; local
290 /* skip uncompressed bytes until offset reached, then satisfy request */
293 skip = 1; /* while skipping to offset */
296 if (offset == 0 && skip) { /* at offset now */
299 skip = 0; /* only do this once */
301 if (offset > WINSIZE) { /* skip WINSIZE bytes */
306 else if (offset != 0) { /* last skip */
340 } while (skip);
343 ret = skip ? 0 : len - strm.avail_out;
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZipField.java 146 void skip(@Nonnull ByteBuffer bytes) throws IOException { method in class:ZipField
148 throw new IOException("Cannot skip field " + name + " because only "
165 throw new IOException("Cannot skip field " + name + " because only "
  /build/soong/androidmk/cmd/androidmk/
android.go 61 // skip functions
62 "LOCAL_ADDITIONAL_DEPENDENCIES": skip, // TODO: check for only .mk files?
63 "LOCAL_CPP_EXTENSION": skip,
64 "LOCAL_MODULE_SUFFIX": skip, // TODO
65 "LOCAL_PATH": skip, // Nothing to do, except maybe avoid the "./" in paths?
66 "LOCAL_PRELINK_MODULE": skip, // Already phased out
67 "LOCAL_BUILT_MODULE_STEM": skip,
68 "LOCAL_USE_AAPT2": skip, // Always enabled in Soong
69 "LOCAL_JAR_EXCLUDE_FILES": skip, // Soong never excludes files from jars
648 func skip(ctx variableAssignmentContext) error func
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 116 skip(parser);
160 skip(parser);
243 private void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FeedParser
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 116 skip(parser);
160 skip(parser);
243 private void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FeedParser
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 116 skip(parser);
160 skip(parser);
243 private void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FeedParser
  /device/google/marlin/dataservices/datatop/src/
datatop_interface.h 56 #define SKIP 1
70 .skip = 0
113 /* Skip on subsequent polls */
114 char skip; member in struct:dtop_data_point
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzguts.h 185 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon4487
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
gzguts.h 191 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon4542
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
spark.py 344 def skip(self, (lhs, rhs), pos=0): member in class:GenericParser
362 kitems.append((rule, self.skip(rule, pos+1)))
400 ppos = self.skip(prule)
  /external/ImageMagick/MagickCore/
paint.c 145 skip,
261 skip=x >= x1 ? MagickTrue : MagickFalse;
262 if (skip == MagickFalse)
271 if (skip == MagickFalse)
300 skip=MagickFalse;
143 skip, local
    [all...]
  /external/ImageMagick/coders/
tga.c 175 skip;
415 skip=MagickFalse;
437 skip=flag != 0;
447 skip=MagickFalse;
450 if (skip == MagickFalse)
172 skip; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java 113 /** Instruct the lexer to skip creating a token for current lexer rule
119 public void skip() { method in class:Lexer
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 243 public long skip(long numberOfBytes) method in class:SICBlockCipher
258 return skip(position);
  /external/curl/lib/
parsedate.c 258 static void skip(const char **date) function
260 /* skip everything that aren't letters or digits */
348 skip(&date);
  /external/curl/src/
tool_urlglob.c 157 case '\\': /* escaped character, skip '\' */
324 static bool peek_ipv6(const char *str, size_t *skip)
345 *skip = i;
370 /* skip over IPv6 literals and [] */
371 size_t skip = 0; local
372 if(!peek_ipv6(pattern, &skip) && (pattern[1] == ']'))
373 skip = 2;
374 if(skip) {
375 memcpy(buf, pattern, skip);
376 buf += skip;
    [all...]
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockMethodAdvice.java 66 int skip = 0; local
70 next = stack[stack.length - current - ++skip];
73 int top = stack.length - current - skip;
74 StackTraceElement[] cleared = new StackTraceElement[stack.length - skip];
76 System.arraycopy(stack, top + skip, cleared, top, current);
  /external/droiddriver/src/io/appium/droiddriver/helpers/
BaseDroidDriverTest.java 46 // fail and the messages will not help, so skip them.
103 protected void skip() { method in class:BaseDroidDriverTest
177 skip(); method
208 * Overrides to fail fast when the test is annotated as FlakyTest and we should skip remaining
  /external/eigen/unsupported/Eigen/CXX11/src/util/
CXX11Meta.h 112 template<int n, typename a> struct skip { typedef decltype(h_skip<n>::helper(a())) type; }; struct in namespace:Eigen::internal
114 template<int start, int count, typename a> struct slice : take<count, typename skip<start, a>::type> {};
  /external/f2fs-tools/fsck/
dump.c 274 u32 skip = 0; local
279 skip = idx = ADDRS_PER_BLOCK;
283 skip = idx * ADDRS_PER_BLOCK;
286 skip = 0;
292 *ofs += skip;
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeaderParser.java 116 skip(); method
121 skip(); method
125 skip(); method
129 skip(); method
309 skip(); method
315 private void skip() { method in class:GifHeaderParser
  /external/golang-protobuf/proto/
decode.go 314 // Skip the next item in the buffer. Its wire type is decoded and presented as an argument.
320 err := o.skip(t, tag, wire)
343 // Skip the next item in the buffer. Its wire type is decoded and presented as an argument.
344 func (o *Buffer) skip(t reflect.Type, tag, wire int) error { func
369 err = o.skip(t, ftag, fwire)
375 err = fmt.Errorf("proto: can't skip unknown wire type %d for %s", wire, t)
495 if err = o.skip(st, tag, wire); err == nil {
868 // TODO: Should we silently skip this instead?
  /external/guava/guava-tests/test/com/google/common/io/
CharSequenceReaderTest.java 59 // reset, skip, mark, then read the rest
61 assertEquals(5, reader.skip(5));
113 reader.skip(-1);
154 reader.skip(10);
230 // skip fully
232 assertEquals(expected.length(), reader.skip(Long.MAX_VALUE));
235 // skip 5 and read the rest
238 assertEquals(5, reader.skip(5));
251 assertEquals(0, reader.skip(10));
CharStreamsTest.java 57 public long skip(long n) { method in class:CharStreamsTest.NonSkippingReader
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CompatibilityTest.java 49 boolean skip; field in class:CompatibilityTest.FileHolder
65 this.skip = skipFile(this.icuVersion, this.className);
69 for (int skip = 0; skip < SKIP_CASES.length; skip++) {
70 if (icuVersion.equals(SKIP_CASES[skip][0]) && className.equals(SKIP_CASES[skip][1])) {
86 if (holder.skip) {

Completed in 634 milliseconds

1 2 3 4 5 6 78 91011>>