Searched defs:skip (Results 76 - 100 of 106) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java126 public long skip(long n) throws IOException { method in class:PackageReader.LimitedBuffer
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java129 buffer.bufPtr += ID_SIZE; // skip the id, we already checked it
663 buffer.bufPtr += ID_SIZE; // skip the id, we already checked it
847 int skip,
853 // Now skip the thumbnail data
854 buffer.skipData(skip);
1460 // skip the tag
1469 // skip the id
844 JFIFThumbUncompressed(JPEGBuffer buffer, int width, int height, int skip, String name) argument
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DCipherHelper.java1484 public final long skip(long n) throws IOException { method in class:CipherHelper.WrapTokenInputStream
1489 temp = (int) is.skip(temp);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java404 // start at index 1 to skip potential negative sign for year.
2766 skip(fch);
2808 skip(':');
2842 private void skip(char ch) throws IllegalArgumentException { method in class:XMLGregorianCalendarImpl.Parser
2872 // skip leading negative, if it exists
3012 //skip leading zero.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXPointerElementHandler.java177 boolean skip = false; field in class:XPointerElementHandler
204 skip = false;
220 skip = false;
561 if(!skip){
579 skip = true;
665 skip = false;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java833 public long skip(long n) throws IOException { method in class:PNGFilterInputStream
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java181 int resultPos = arity + 1; // skip '_'
338 if (i == arity) continue; // skip '_'
885 // names array has MH in slot 0; skip it.
903 LambdaForm permuteArguments(int skip, int[] reorder, char[] types) { argument
909 assert(skip+outArgs == arity);
910 assert(permutedTypesMatch(reorder, types, names, skip));
912 // skip trivial first part of reordering:
915 System.arraycopy(names, 0, names2, 0, skip+pos);
918 System.arraycopy(names, skip+outArgs, names2, skip
962 permutedTypesMatch(int[] reorder, char[] types, Name[] names, int skip) argument
[all...]
H A DMethodHandleNatives.java51 int matchFlags, Class<?> caller, int skip, MemberName[] results);
50 getMembers(Class<?> defc, String matchName, String matchSig, int matchFlags, Class<?> caller, int skip, MemberName[] results) argument
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java104 * {@link #hasNextInt}) first skip any input that matches the delimiter
110 * <p> The {@link #findInLine}, {@link #findWithinHorizon}, and {@link #skip}
951 if (!skipped) { // Enforcing only one skip of leading delims
960 // The delims were whole and the matcher should skip them
1330 * {@link #findWithinHorizon}, and {@link #skip} methods will make a
1572 * the line to skip if no line separators are present.
1737 * This method will skip input if an anchored match of the specified
1749 * <p>Note that it is possible to skip something without risking a
1751 * match nothing, e.g., <code>sc.skip("[ \t]*")</code>.
1753 * @param pattern a string specifying the pattern to skip ove
1758 public Scanner skip(Pattern pattern) { method in class:Scanner
1791 public Scanner skip(String pattern) { method in class:Scanner
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp554 int skip = 1; local
559 skip = 2;
577 nametail = basename; // completely skip directory prefix
585 nametail += star_pos + skip; // skip prefix and pid format
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java682 stream.skip(3);
1121 // should we skip external entities?
2908 public long skip(long n) method in class:XMLEntityManager.RewindableInputStream
2919 return fInputStream.skip(n);
2938 return fInputStream.skip(n) + bytesLeft;
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectInputStream.java1819 * method of obj; otherwise, attempts to skip over externalizable data.
1868 * Reads (or attempts to skip, if obj is null or is tagged with a
2330 public long skip(long n) throws IOException { method in class:ObjectInputStream.PeekInputStream
2340 return skipped + skip(n);
2626 public long skip(long len) throws IOException { method in class:ObjectInputStream.BlockDataInputStream
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp323 // skip is delta from current bcp/bci for target, branch_pc is pre-branch bcp
326 #define DO_BACKEDGE_CHECKS(skip, branch_pc) \
327 if ((skip) <= 0) { \
831 // the result all we need to do is skip across the bytecode
1381 int skip = (STACK_INT(-2) comparison STACK_INT(-1)) \
1384 UPDATE_PC_AND_TOS(skip, -2); \
1385 DO_BACKEDGE_CHECKS(skip, branch_pc); \
1389 int skip = (STACK_INT(-1) comparison 0) \
1392 UPDATE_PC_AND_TOS(skip, -1); \
1393 DO_BACKEDGE_CHECKS(skip, branch_p
1443 int32_t skip; local
1460 int32_t skip = Bytes::get_Java_u4((address) lpc); /* default amount */ local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp1179 uint skip = region_was_visited_before ? 1 : 0; local
1183 if (skip == 0) {
1187 --skip; // skip this nontrivial input
H A Doutput.cpp198 bool skip = false; local
205 else if ( CompileZapFirst > CompiledZap_count() ) skip = true;
210 else if ( CompileZapLast < CompiledZap_count() ) skip = true;
216 if ( skip ) return;
581 // entry has been taken care of and caller should skip it).
723 ShouldNotReachHere(); // Caller should skip 2nd halves
851 // Do not skip safepoints with a NULL method, they need monitor info
1688 // (skip empty blocks)
1944 // If the node cannot be scheduled this cycle, skip it
2186 // attempt to add this instruction to the bundle, we will skip
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp1463 Label skip; \
1466 __ brx(Assembler::equal, false, Assembler::pt, skip); \
1470 __ bind(skip); \
1601 Label skip; local
1604 __ brx(Assembler::equal, false, Assembler::pt, skip);
1607 __ bind(skip);
1984 Label skip; local
1985 __ brx(Assembler::greaterEqual, false, Assembler::pt, skip);
1988 __ bind(skip);
H A Dc1_LIRAssembler_sparc.cpp590 Label skip; local
591 __ br(Assembler::overflowSet, true, Assembler::pn, skip);
593 __ bind(skip);
1752 Label skip; local
1755 __ br(acond, false, Assembler::pt, skip);
1758 __ brx(acond, false, Assembler::pt, skip); // checks icc on 32bit and xcc on 64bit
1780 __ bind(skip);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp801 int skip, objArrayOop results) {
809 int rfill = 0, rlimit = results->length(), rskip = skip;
989 str += strlen(str) + 1; // skip name and null
1126 // int matchFlags, Class<?> caller, int skip, MemberName[] results);
1129 int mflags, jclass caller_jh, jint skip, jobjectArray results_jh)) {
1160 caller(), skip, results());
1239 // int matchFlags, Class<?> caller, int skip, MemberName[] results);
798 find_MemberNames(klassOop k, Symbol* name, Symbol* sig, int mflags, klassOop caller, int skip, objArrayOop results) argument
1127 JVM_ENTRY(jint, MHN_getMembers(JNIEnv *env, jobject igcls, jclass clazz_jh, jstring name_jh, jstring sig_jh, int mflags, jclass caller_jh, jint skip, jobjectArray results_jh)) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java187 private void skip(boolean stopAtImport, boolean stopAtMemberDecl, boolean stopAtIdentifier, boolean stopAtStatement) { method in class:JavacParser
317 /** If next input token matches given token, skip it, otherwise report
1587 //todo: skip to anchor on error(?)
1672 skip(false, true, true, true);
2282 skip(checkForImports, false, false, false);
2504 skip(false, true, true, false);
2567 skip(false, true, false, false);
2576 skip(false, true, true, false);
2708 skip(false, true, false, false);
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c460 skip(CrwClassImage *ci, unsigned count) function
1151 skip(ci, header - (pos+1));
1155 skip(ci, (high+1-low) * 4);
1159 skip(ci, header - (pos+1));
1162 skip(ci, npairs * 8);
1166 skip(ci, instr_len-1);
1258 skip(ci, header - (pos+1));
1263 skip(ci, (high+1-low) * 4);
1278 skip(ci, header - (pos+1));
1282 skip(c
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java1072 // skip ext and comment
1158 locoff += LOCHDR + LOCNAM(buf) + LOCEXT(buf); // skip header
1251 x.printStackTrace(); // skip any in-accurate entry
1262 x.printStackTrace(); // skip any wrong entry
1510 public long skip(long n) throws IOException { method in class:ZipFileSystem.EntryInputStream
2200 break; // fields, just skip
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c226 /* Optionally skip data and then check the CRC. Depending on whether we
232 png_crc_finish(png_structp png_ptr, png_uint_32 skip) argument
237 for (i = (png_size_t)skip; i > istop; i -= istop)
1178 png_uint_32 skip = 0; local
1210 skip = length - (png_uint_32)65535L;
1220 if (png_crc_finish(png_ptr, skip))
1315 png_uint_32 skip = 0; local
1355 skip = length - (png_uint_32)65535L;
1370 if (png_crc_finish(png_ptr, skip))
2154 png_uint_32 skip local
2554 png_uint_32 skip = 0; local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c699 /* In case of drawing we could just skip curves which are completely
708 /* In case of filling we could skip curves which are above,
1186 /* In case of drawing we could just skip curves which are completely
1195 /* In case of filling we could skip curves which are above,
1468 jboolean skip = JNI_FALSE; local
1524 if (subpathStarted & !skip) {
1551 skip = JNI_FALSE;
1555 skip = JNI_TRUE;
1578 if (skip) {
1582 skip
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java1704 * receiving a 407 is normal and we just skip the stale check
2491 // clean up, particularly, skip the content part
2626 // skip HttpOnly cookies
3081 /* skip() calls read() in order to ensure that entire response gets
3082 * cached. same implementation as InputStream.skip */
3088 public long skip (long n) throws IOException { method in class:HttpURLConnection.HttpInputStream
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1523 boolean skip = false;
1905 private int skip() { method in class:Pattern
2263 int ch = skip();
2765 ch = skip();
3070 skip();

Completed in 220 milliseconds

12345