Searched defs:result (Results 426 - 450 of 605) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DNet.c336 int result; local
345 arg = (void *)&result;
346 arglen = sizeof(result);
380 return (jint)result;
387 int result; local
H A DSctpNet.c497 int result; local
537 int result; local
552 arg = (void *)&result;
553 arglen = sizeof(result);
565 return result;
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXWindow.c439 static Boolean result = FALSE; local
449 return result;
468 result = kanaCount > 10;
470 return result;
1072 * a current single result from awt_x11inputmethod_lookupString, we'll
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c423 void *result; local
425 result = LoadLibrary(name);
426 if (result == NULL) {
438 return result;
/openjdk7/jdk/src/windows/native/java/io/
H A DWinNTFileSystem_md.c89 WCHAR *result; local
111 result = (WCHAR*)malloc(MAX_PATH * sizeof(WCHAR));
112 if (result != NULL) {
113 DWORD len = (*GetFinalPathNameByHandle_func)(h, result, MAX_PATH, 0);
116 WCHAR* newResult = (WCHAR*)realloc(result, (len+1) * sizeof(WCHAR));
118 result = newResult;
119 len = (*GetFinalPathNameByHandle_func)(h, result, len, 0);
129 if (result[0] == L'\\' && result[1] == L'\\' &&
130 result[
181 BOOL result; local
[all...]
H A Dio_util_md.c485 BOOL result = 0; local
490 result = ReadFile(h, /* File handle to read */
495 if (result == 0) {
507 BOOL result = 0; local
521 result = WriteFile(h, /* File handle to write */
527 if ((h == INVALID_HANDLE_VALUE) || (result == 0)) {
/openjdk7/jdk/src/windows/native/java/util/
H A DTimeZone_md.c519 int result; local
522 result = getWinTimeZone(winZoneName, winMapID);
524 if (result != VALUE_UNKNOWN) {
525 if (result == VALUE_GMTOFFSET) {
528 std_timezone = matchJavaTZ(java_home_dir, result,
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp913 int result = ::CombineRgn(rgnUpdate, rgnUpdate, rgnDst, RGN_AND); local
916 if (result != NULLREGION) {
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c281 int result = 0; local
290 arg = (char *)&result;
291 arglen = sizeof(result);
316 return result;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DesktopProperties.cpp104 // result.
129 // result.
149 // result.
200 BOOL result = (style != NULL && *style == _T('1')); local
202 return result;
363 * expose events, which will never be the result of changes to desktop
H A Dawt_ScrollPane.cpp433 jint result = 0; local
444 result = s->GetScrollPos(nBar);
451 return result;
/openjdk7/jdk/src/windows/transport/socket/
H A Dsocket_md.c334 int result = 0; local
341 result = ioctlsocket(fd, FIONBIO, &argp);
342 if (result == SOCKET_ERROR) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java346 * @param res The method's result type,
368 // Attribute result type, if one is given.
1077 JCExpression result = make.at(pos).
1080 return result;
1103 Type result; field in class:MemberEnter.Synthesizer
1112 return result;
1124 result = syms.errType;
1130 result = tree.type;
1132 result = synthesizeClass(tree.name, syms.unnamedPackage).type;
1139 result
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemmgr.c404 JSAMPARRAY result; local
421 result = (JSAMPARRAY) alloc_small(cinfo, pool_id,
432 result[currow++] = workspace;
437 return result;
452 JBLOCKARRAY result; local
469 result = (JBLOCKARRAY) alloc_small(cinfo, pool_id,
480 result[currow++] = workspace;
485 return result;
533 jvirt_sarray_ptr result; local
540 result
563 jvirt_barray_ptr result; local
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHangulLayoutEngine.cpp141 le_int32 result = 3; local
149 result = 2;
154 return result;
H A DLayoutEngine.cpp592 LayoutEngine *result = NULL; local
601 result = new IndicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, TRUE, gsubTable, success);
615 result = new IndicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, FALSE, gsubTable, success);
619 result = new ArabicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
624 result = new OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags & ~kTypoFlagLiga, gsubTable, success);
628 result = new HangulOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
640 result = new HanOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
646 result = new OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
653 result = new TibetanOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
657 result
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java226 * returns a non-negative result</em></td>
438 * Append a string representation of this set to result. This will be
442 private StringBuffer _toPattern(StringBuffer result, argument
456 result.setLength(result.length() - 1);
458 Utility.escapeUnprintable(result, c);
461 UTF16.append(result, c);
469 return result;
472 return _generatePattern(result, escapeUnprintable, true);
476 * Generate and append a string representation of this set to result
482 _generatePattern(StringBuffer result, boolean escapeUnprintable, boolean includeStrings) argument
[all...]
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java164 private static void check(Matcher m, String result, boolean expected) { argument
166 if (m.group().equals(result) != expected)
469 List<String> result = new ArrayList<String>();
473 result.add(m.group());
475 if (!Arrays.asList(expected).equals(result))
599 String result[] = s.split("[^fr]");
600 if (!result[0].equals("f"))
602 if (!result[1].equals("r"))
605 result = s.split("[^fr]");
606 if (!result[
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java366 char result [];
368 result = new char[ ndigits ];
369 System.arraycopy( digits, digitno, result, 0, ndigits );
370 this.digits = result;
536 // with scaling by 10^nTinyBits, the result will fit in
545 * result is easily converted to a string.
551 * in the result. The integer you get from this can
890 StringBuffer result = new StringBuffer( nDigits+8 );
891 if ( isNegative ){ result.append( '-' ); }
893 result
909 getChars(char[] result) argument
[all...]
H A DFormattedFloatingDecimal.java374 char result [];
376 result = new char[ ndigits ];
377 System.arraycopy( digits, digitno, result, 0, ndigits );
378 this.digits = result;
410 // Given the desired number of digits predict the result's exponent.
425 char [] result = new char[nDigits];
426 for (int i = 0; i < result.length; i++) result[i] = '0';
430 System.arraycopy(digits, 0, result, 0, nDigits);
431 return result;
990 getChars(char[] result) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/jgss/wrapper/
H A DNativeUtil.c395 jint result; local
399 result = JAVA_MAX;
401 result = JAVA_MAX-1;
403 result = ctime;
405 return result;
412 OM_uint32 result; local
416 result = GSS_C_INDEFINITE;
418 result = jtime;
420 return result;
454 jstring result; local
586 jbyteArray result; local
646 jobject result; local
732 int result = JNI_FALSE; // default to not equal local
[all...]
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c111 jobjectArray result; local
135 result = (*env)->NewObjectArray(env, cnt, stringClass, NULL);
138 (*env)->SetObjectArrayElement(env, result, cnt, js);
141 return result;
151 jobjectArray result; local
168 result = pcsc_multi2jstring(env, mszReaders);
170 return result;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHandlerImpl.java659 public void validate(Source source, Result result) argument
661 if (result instanceof SAXResult || result == null) {
663 final SAXResult saxResult = (SAXResult) result;
665 if (result != null) {
731 new Object [] {source.getClass().getName(), result.getClass().getName()}));
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java313 public int[] getGlyphCodes(int start, int count, int[] result) { argument
324 if (result == null) {
325 result = new int[count];
330 result[i] = userGlyphs[i + start];
333 return result;
349 public int[] getGlyphCharIndices(int start, int count, int[] result) { argument
353 if (result == null) {
354 result = new int[count];
360 result[i] = n;
364 result[
509 getGlyphPositions(int start, int count, float[] result) argument
789 getGlyphPositions(float[] result) argument
800 getGlyphTransforms(int start, int count, AffineTransform[] result) argument
1156 internalGetGlyphPositions(int start, int count, int offset, float[] result) argument
1756 getADL(ADL result) argument
1773 getGlyphPosition(int glyphID, int ix, float[] positions, float[] result) argument
1779 addDefaultGlyphAdvance(int glyphID, Point2D.Float result) argument
1813 appendGlyphOutline(int glyphID, GeneralPath result, float x, float y) argument
1915 toStringBuffer(StringBuffer result) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java50 * The result of the lambda is defined as one of the names, often the last one.
69 * A lambda has a void result if and only if its result index is -1.
86 * <li>V = void: a function result may be void if and only if its Name is of type "V"
122 final int result; field in class:LambdaForm
134 int arity, Name[] names, int result) {
137 this.result = fixResult(result, names);
150 Name[] formals, Name[] temps, Name result) {
152 formals.length, buildNames(formals, temps, result), LAST_RESUL
133 LambdaForm(String debugName, int arity, Name[] names, int result) argument
149 LambdaForm(String debugName, Name[] formals, Name[] temps, Name result) argument
155 buildNames(Name[] formals, Name[] temps, Name result) argument
192 fixResult(int result, Name[] names) argument
[all...]

Completed in 100 milliseconds

<<11121314151617181920>>