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

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-ref.h 75 VEC(ipa_ref_ptr,heap) * GTY((skip)) refering;
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-ref.h 75 VEC(ipa_ref_ptr,heap) * GTY((skip)) refering;
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-ref.h 75 VEC(ipa_ref_ptr,heap) * GTY((skip)) refering;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileInputStreamTest.java 174 is.skip(3000);
187 is.skip(3000);
326 * @tests java.io.FileInputStream#skip(long)
331 is.skip(1000);
334 assertTrue("Failed to skip to correct position", new String(buf1, 0,
383 * @tests java.io.FileInputStream#skip(long)
388 fis.skip(-5);
389 fail("IOException must be thrown if number of bytes to skip <0");
424 fis.skip(100);
LineNumberReaderTest.java 72 lnr.skip(80);
205 * @tests java.io.LineNumberReader#skip(long)
210 lnr.skip(80);
213 assertTrue("Failed to skip to correct position", text
PushbackInputStreamTest.java 157 * @tests java.io.PushbackInputStream#skip(long)
160 // Test for method long java.io.PushbackInputStream.skip(long)
162 pis.skip(50);
167 pis.skip(25);
  /external/skia/legacy/src/core/
SkPicturePlayback.cpp 13 /* Define this to spew out a debug statement whenever we skip the remainder of
470 SkDEBUGCODE(uint32_t bytes =) fRegions[i].unflatten(buffer.skip(size));
592 canvas.drawData(fReader.skip(length), length);
593 // skip handles padding the read out to a multiple of 4
609 const SkPoint* pts = (const SkPoint*)fReader.skip(sizeof(SkPoint) * count);
616 const SkPoint* pos = (const SkPoint*)fReader.skip(points * sizeof(SkPoint));
623 const SkPoint* pos = (const SkPoint*)fReader.skip(points * sizeof(SkPoint));
635 const SkScalar* xpos = (const SkScalar*)fReader.skip(xCount * sizeof(SkScalar));
643 const SkScalar* xpos = (const SkScalar*)fReader.skip((3 + xCount) * sizeof(SkScalar));
673 const SkScalar* ptr = (const SkScalar*)fReader.skip(4 * sizeof(SkScalar))
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_headers.h 256 skip(false) {}
264 skip(false) {}
271 bool skip; member in struct:net::BalsaHeaders::HeaderLineDescription
367 } while (idx_ < header_lines_size && header_lines[idx_].skip == true);
369 // if there are only 'skip == true' elements between the end() iterator
385 } while (idx_ < header_lines_size && header_lines[idx_].skip == true);
387 // if there are only 'skip == true' elements between the rbegin() iterator
622 header_lines_[it.idx_].skip = true;
794 if (line.skip) {
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 583 skip(); method
586 skip(); method
590 skip(); method
616 skip(); method
623 skip(); method
633 skip(); method
674 skip(); method
725 skip(); method
728 skip(); method
750 skip(); method
794 skip(); method
798 skip(); method
809 skip(); method
815 skip(); method
821 skip(); method
823 skip(); method
839 skip(); method
853 skip(); method
895 skip(); method
899 skip(); method
904 skip(); method
917 skip(); method
920 skip(); method
934 skip(); method
940 skip(); method
946 skip(); method
954 skip(); method
1049 skip(); method
1068 skip(); method
1085 skip(); method
1094 skip(); method
1573 private void skip() throws IOException, XmlPullParserException { method in class:KXmlParser
    [all...]
  /external/openssl/crypto/
ex_data.c 419 goto skip;
423 skip:
466 goto skip;
470 skip:
506 goto skip;
510 skip:
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
20 bne .L${opcode}_debugger @ Yes - skip optimization
  /dalvik/vm/mterp/mips/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
28 bnez a1, .L${opcode}_debugger # Yes - skip optimization
  /dalvik/vm/mterp/x86/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
22 jnz .L${opcode}_debugger # Yes - skip optimization
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedInputStreamTest.java 139 is.skip(10);
150 is.skip(10);
OldFileInputStreamTest.java 155 is.skip(3000);
174 is.skip(1000);
176 assertTrue("Test 1: Failed to skip to correct position.",
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java 72 zis1.skip(10);
80 zis1.skip(10); // But RI here, only!
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRLexer.h 62 - (void) skip;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRLexer.h 62 - (void) skip;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRLexer.h 62 - (void) skip;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRLexer.h 62 - (void) skip;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 11 <tt>next_token</tt> to catch RecognitionErrors and skip ahead in the input until
  /external/apache-harmony/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
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.h 129 // allows you to skip chapter-stops by specifying a positive value for |skip|.
136 // NOTE: Both |offset| and |skip| must be non-negative. The return value from
138 // is out of bounds or if we skip too far (run out of chapter-stops) this
140 int FindChapterStop(int offset, bool forward, int skip) const;
  /external/dnsmasq/src/
dbus.c 116 int skip = 0; local
139 skip = 1;
164 skip = 0;
181 if (!skip)
  /external/libvpx/libvpx/vp8/encoder/
block.h 110 int skip; member in struct:macroblock

Completed in 619 milliseconds

1 2 3 4 5 6 78 91011>>