Searched refs:mode (Results 76 - 100 of 310) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DSelectBytecodesAction.java47 protected int mode() { method in class:SelectBytecodesAction
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCFileDialog.h46 // File dialog's mode
68 mode:(jint)inMode
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLBoundOperation.java79 @Nullable WSDLPart getPart(@NotNull String partName, @NotNull Mode mode); argument
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DDesAPITest.java87 public void init(String crypt, String mode, String padding) argument
97 if (mode.length() != 0)
98 cipherName.append("/" + mode);
116 if ( !mode.equals("ECB"))
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.h80 (most modes can go to the BAD or MEM mode -- not shown for clarity)
102 inflate_mode mode; /* current inflate mode */ member in struct:inflate_state
H A Dinffast.c66 state->mode == LEN
72 On return, state->mode is one of:
203 state->mode = BAD;
215 state->mode = BAD;
291 state->mode = BAD;
301 state->mode = TYPE;
306 state->mode = BAD;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java84 int mode; field in class:XScrollbar
108 final int mode = this.mode;
112 sb.notifyValue(XScrollbar.this, mode, value, isAdjusting);
280 if (pressed && (mode == AdjustmentEvent.UNIT_DECREMENT)) {
307 if (pressed && (mode == AdjustmentEvent.UNIT_INCREMENT)) {
377 * The set method for mode property.
380 public void setMode(int mode){ argument
381 this.mode = mode;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java81 * currently, only CTS mode has a non-zero value due to its special
88 * of the blocksize (this is used in feedback mode, when the number of
105 * the cipher mode
126 * Creates an instance of CipherCore with default ECB mode and
135 * The buffer should be usable for all cipher mode and padding
137 * In decryption mode, it also hold the possible padding block.
141 // set mode and padding
147 * Sets the mode of this cipher.
149 * @param mode the cipher mode
154 setMode(String mode) argument
201 getNumOfUnit(String mode, int offset, int blockSize) argument
[all...]
H A DARCFOURCipher.java114 protected void engineSetMode(String mode) throws NoSuchAlgorithmException { argument
115 if (mode.equalsIgnoreCase("ECB") == false) {
116 throw new NoSuchAlgorithmException("Unsupported mode " + mode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DSOAPSEIModel.java91 private void fillHeaders(Iterator<ParameterImpl> params, Set<QName> headers, Mode mode) { argument
94 ParameterBinding binding = (mode == Mode.IN)?param.getInBinding():param.getOutBinding();
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c173 png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
563 if (png_ptr->mode & PNG_HAVE_IHDR)
570 png_ptr->mode |= PNG_HAVE_IHDR;
639 if (!(png_ptr->mode & PNG_HAVE_IHDR))
642 else if (png_ptr->mode & PNG_HAVE_IDAT)
649 else if (png_ptr->mode & PNG_HAVE_PLTE)
652 png_ptr->mode |= PNG_HAVE_PLTE;
781 if (!(png_ptr->mode & PNG_HAVE_IHDR) || !(png_ptr->mode & PNG_HAVE_IDAT))
786 png_ptr->mode |
[all...]
H A Dpngpread.c25 /* pngpread.c - read a png file in push mode
115 * otherwise we could not be in SKIP mode. This will also happen if
301 if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
316 png_ptr->mode |= PNG_HAVE_CHUNK_HEADER;
320 if (png_ptr->mode & PNG_AFTER_IDAT)
321 png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT;
361 png_ptr->mode |= PNG_HAVE_IDAT;
366 png_ptr->mode |= PNG_HAVE_PLTE;
370 if (!(png_ptr->mode & PNG_HAVE_IHDR))
374 !(png_ptr->mode
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java161 /** When terms are parsed, the mode determines which is expected:
162 * mode = EXPR : an expression
163 * mode = TYPE : a type
164 * mode = NOPARAMS : no parameters allowed for type
165 * mode = TYPEARG : type argument
173 /** The current mode.
175 private int mode = 0; field in class:JavacParser
177 /** The mode of the term that was parsed last.
333 if ((mode & EXPR) != 0)
608 int prevmode = mode;
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSACipher.java46 * . "RSA/ECB/PKCS1Padding" (or "RSA") for PKCS#1 padding. The mode (blocktype)
47 * is selected based on the en/decryption mode and public/private key used.
65 // mode constant for public key encryption
67 // mode constant for private key decryption
69 // mode constant for private key encryption (signing)
71 // mode constant for public key decryption (verifying)
78 // current mode, one of MODE_* above. Set when init() is called
79 private int mode; field in class:RSACipher
104 protected void engineSetMode(String mode) throws NoSuchAlgorithmException { argument
105 if (mode
[all...]
/openjdk7/jdk/test/java/nio/file/attribute/PosixFileAttributeView/
H A DBasic.java44 * Use view to update permission to the given mode and check that the
47 static void testPermissions(Path file, String mode) throws IOException { argument
48 System.out.format("change mode: %s\n", mode);
49 Set<PosixFilePermission> perms = PosixFilePermissions.fromString(mode);
88 * Create file with given mode and check that the file is created with a
89 * mode that is not less secure
92 String mode)
95 Set<PosixFilePermission> requested = PosixFilePermissions.fromString(mode);
98 System.out.format("create file with mode
91 createWithPermissions(Path file, String mode) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSynchronousQueue.java93 * The (Lifo) stack is used for non-fair mode, and the (Fifo)
94 * queue for fair mode. The performance of the two is generally
105 * queues is that any operation can figure out which mode the
126 * the ones here use mode bits in nodes, leading to a number
214 * nodes (with FULFILLING bit set in mode) to reserve a spot
235 int mode; field in class:SynchronousQueue.TransferStack.SNode
236 // Note: item and mode fields don't need to be volatile
315 static SNode snode(SNode s, Object e, SNode next, int mode) { argument
317 s.mode = mode;
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipFile.java121 * <code>File</code> object in the specified mode. The mode argument
132 * @param mode the mode in which the file is to be opened
140 * @throws IllegalArgumentException if the <tt>mode</tt> argument is invalid
144 public ZipFile(File file, int mode) throws IOException { argument
145 this(file, mode, StandardCharsets.UTF_8);
166 * <code>File</code> object in the specified mode. The mode argument
174 * @param mode th
196 ZipFile(File file, int mode, Charset charset) argument
760 open(String name, int mode, long lastModified, boolean usemmap) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSACipher.java56 // mode constant for public key encryption
58 // mode constant for private key decryption
60 // mode constant for private key encryption (signing)
62 // mode constant for public key decryption (verifying)
82 // mode, one of MODE_* above
83 private int mode; field in class:P11RSACipher
115 protected void engineSetMode(String mode) throws NoSuchAlgorithmException { argument
116 if (mode.equalsIgnoreCase("ECB") == false) {
117 throw new NoSuchAlgorithmException("Unsupported mode " + mode);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DApplyTemplates.java62 Util.println("mode " + _modeName);
72 final String mode = getAttribute("mode");
79 if (mode.length() > 0) {
80 if (!XML11Char.isXML11ValidQName(mode)) {
81 ErrorMsg err = new ErrorMsg(ErrorMsg.INVALID_QNAME_ERR, mode, this);
84 _modeName = parser.getQNameIgnoreDefaultNs(mode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLBoundPortTypeImpl.java148 * @param mode {@link Mode#IN} or {@link Mode@OUT}. Must be non-null.
151 public ParameterBinding getBinding(QName operation, String part, Mode mode) { argument
157 if ((Mode.IN == mode) || (Mode.INOUT == mode))
168 * @param mode {@link Mode#IN} or {@link Mode@OUT}. Must be non-null.
171 public String getMimeType(QName operation, String part, Mode mode) { argument
173 if (Mode.IN == mode)
H A DWSDLBoundOperationImpl.java105 public WSDLPartImpl getPart(String partName, Mode mode) { argument
106 if(mode==Mode.IN){
108 }else if(mode==Mode.OUT){
114 public void addPart(WSDLPartImpl part, Mode mode){ argument
115 if(mode==Mode.IN)
117 else if(mode==Mode.OUT)
/openjdk7/jdk/src/share/bin/
H A Djava.h186 int mode, char *what, int ret);
190 int mode, char *what, int ret);
240 int mode; member in struct:__anon523
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedCollator.java543 int mode = getDecomposition();
545 if (mode == CANONICAL_DECOMPOSITION) {
547 } else if (mode == FULL_DECOMPOSITION) {
682 int mode = getDecomposition();
683 if (mode == CANONICAL_DECOMPOSITION) {
685 } else if (mode == FULL_DECOMPOSITION) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java514 protected void visitRefs(int mode, Collection<Entry> refs) { argument
518 if (mode == VRM_CLASSIC) {
525 super.visitRefs(mode, refs);
597 protected void visitRefs(int mode, Collection<Entry> refs) { argument
598 super.visitRefs(mode, refs);
600 if (mode == VRM_CLASSIC) {
603 code.visitRefs(mode, refs);
638 protected void visitRefs(int mode, Collection<Entry> refs) { argument
650 m.visitRefs(mode, refs);
658 visitInnerClassRefs(mode, ref
663 visitInnerClassRefs(int mode, Collection<Entry> refs) argument
871 visitRefs(int mode, Collection<Entry> refs) argument
985 visitRefs(int mode, Collection<Entry> refs) argument
1002 visitInnerClassRefs(Collection<InnerClass> innerClasses, int mode, Collection<Entry> refs) argument
1185 visitRefs(int mode, Collection<Entry> refs) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsDevice.java78 // the original display mode we had before entering the fullscreen
79 // mode
284 // in DirectX fullscreen mode. So avoiding these calls unless
324 * returns true unless we're not allowed to use fullscreen mode.
342 // Enter windowed mode.
344 // restore the original display mode
347 // we set the default display mode to null here
348 // because the default mode could change during
352 // entering the fullscreen mode.
358 // we used to destroy the buffers on exiting fs mode, thi
[all...]

Completed in 97 milliseconds

1234567891011>>