Searched refs:result (Results 151 - 175 of 1970) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/windows/native/java/util/
H A DWindowsPreferences.c38 jintArray result; local
44 result = (*env)->NewIntArray(env,2);
45 (*env)->SetIntArrayRegion(env, result, 0, 2, tmp);
46 return result;
61 jintArray result; local
70 result = (*env)->NewIntArray(env,3);
71 (*env)->SetIntArrayRegion(env, result, 0, 3, tmp);
72 return result;
78 int result; local
80 result
95 jbyteArray result; local
159 jintArray result; local
183 jbyteArray result; local
200 jbyteArray result; local
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DAclEdit.java56 String[] result = permsString.split("/");
57 for (String s : result) {
73 String[] result = flagsString.split("/");
74 for (String s : result) {
106 String[] result = s.split(":");
109 if (result.length < 3)
113 int remaining = result.length;
117 if (result[index].equalsIgnoreCase("user") ||
118 result[index].equalsIgnoreCase("group"))
122 isGroup = result[inde
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAnyNodeCounter.java54 int result;
66 result = 0;
69 ++result;
84 return formatNumbers(result);
100 int result;
107 else result = (int) _value;
111 result = 0;
116 result++;
128 return formatNumbers(result);
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosKey.java248 int result = 17;
250 return result;
252 result = 37 * result + Arrays.hashCode(getEncoded());
253 result = 37 * result + getKeyType();
255 result = 37 * result + principal.hashCode();
257 return result * 37 + versionNum;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DStringUtil.java55 int result = 0 ;
58 result++ ;
60 return result ;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dvm_version_x86.hpp33 // cpuid result register layouts. These are all unions of a uint32_t
366 uint32_t result = _cpuid_info.std_cpuid1_eax.bits.family; local
367 result += _cpuid_info.std_cpuid1_eax.bits.ext_family;
368 return result;
372 uint32_t result = _cpuid_info.std_cpuid1_eax.bits.model; local
373 result |= _cpuid_info.std_cpuid1_eax.bits.ext_model << 4;
374 return result;
378 uint32_t result = _cpuid_info.std_cpuid1_eax.bits.stepping; local
379 return result;
383 uint result local
388 uint32_t result = 0; local
500 uint result = 1; local
515 uint result = 1; local
526 intx result = 0; local
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DInvertSelector.java43 List<Figure> result = new ArrayList<Figure>();
47 result.add(f);
51 return result;
H A DPredecessorSelector.java43 List<Figure> result = new ArrayList<Figure>();
53 result.add(f);
57 return result;
H A DSuccessorSelector.java43 List<Figure> result = new ArrayList<Figure>();
53 result.add(f);
57 return result;
/openjdk7/hotspot/test/compiler/7141637/
H A DSpreadNullArg.java43 int result = 42;
48 result = (int) mh_spreadInvoker.invokeExact(mh_spread_target, (Object[]) null);
55 if (result != 42) throw new Error("Expected NullPointerException was not thrown");
/openjdk7/jdk/src/solaris/native/java/util/
H A DFileSystemPreferences.c42 int result; local
43 result = chmod(fname, permission);
44 if (result != 0)
45 result = errno;
47 return (jint) result;
58 * The result is a cookie that can be used later to unlock the file.
59 * On failure the result is zero.
66 int result[2]; local
85 result[1] = errno;
90 result[
[all...]
/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c55 DWORD result; local
59 result = GetModuleFileName(jvm, jvmPath, bufferSize);
60 if (result == 0)
62 if (result == bufferSize) { // didn't fit
89 jstring result = NULL; local
107 result = (*env)->NewObject(env, JNU_ClassString(env),
110 return result;
121 char *result = NULL; local
127 result = (char*) malloc(len);
128 if (result !
[all...]
/openjdk7/jdk/test/java/nio/file/Path/
H A DUriImportExport.java47 Path result = Paths.get(uri);
48 log.println(" --> " + result);
49 if (!result.equals(path.toAbsolutePath())) {
50 log.println("FAIL: Expected " + path + ", got " + result);
69 Path result = Paths.get(uri);
70 log.println(" --> " + result);
71 if (!result.equals(path.toAbsolutePath())) {
72 log.println("FAIL: Expected " + path + ", got " + result);
86 URI result = path.toUri();
87 log.println(" --> " + result);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodType.java73 StringBuffer result = new StringBuffer("method{");
77 result.append(_argsType.elementAt(i));
78 if (i != (count-1)) result.append(',');
82 result.append("void");
84 result.append('}');
85 return result.toString();
117 boolean result = false;
122 result = len == temp.argsCount();
123 for (int i = 0; i < len && result; i++) {
126 result
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DFVDCodeBaseImpl.java94 String result = Util.getCodebase(vhandler.getClassFromType(x));
95 if (result == null)
98 return result;
106 String result[] = new String[x.length];
109 result[i] = implementation(x[i]);
111 return result;
117 FullValueDescription result = (FullValueDescription)fvds.get(x);
119 if (result == null) {
127 result = ValueUtility.translate(_orb(),
132 result
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectKeyTemplateBase.java125 int result = 17 ;
126 result = 37*result + magic ;
127 result = 37*result + scid ;
128 result = 37*result + serverid ;
129 result = 37*result + version.hashCode() ;
130 result
[all...]
H A DObjectIdImpl.java51 int result = 17 ;
53 result = 37*result + id[ctr] ;
54 return result ;
/openjdk7/hotspot/test/compiler/6646020/
H A DTester.java138 String result = "[\n";
139 result += "Tester_Class_0.var_1 = "; result += Tester.Printer.print(var_1);
140 result += "";
141 result += "\n]";
142 return result;
349 String result = "[\n";
350 result += "Tester_Class_1.var_1 = "; result += Tester.Printer.print(var_1);
351 result
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java954 Item result = get(key);
955 if (result == null) {
957 result = new Item(index++, key);
958 put(result);
960 return result.index;
974 Item result = get(key2);
975 if (result == null) {
977 result = new Item(index++, key2);
978 put(result);
980 return result;
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DBidiUtils.java160 int[] result = new int[values.length];
162 result[values[i]] = i;
165 return result;
192 int[] result = new int[limit-start];
193 for (int i=0; i < result.length; i++) {
194 result[i] = i + start;
197 // now we'll sort result[], with the following comparison:
198 // result[i] lessthan result[j] iff values[result[
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DCompletionHandler.java29 * A handler for consuming the result of an asynchronous I/O operation.
32 * handler to be specified to consume the result of an asynchronous operation.
39 * @param <V> The result type of the I/O operation
50 * @param result
51 * The result of the I/O operation.
55 void completed(V result, A attachment); argument
/openjdk7/jdk/src/share/classes/java/security/
H A DDigestInputStream.java161 int result = in.read(b, off, len);
162 if (on && result != -1) {
163 digest.update(b, off, result);
165 return result;
/openjdk7/jdk/src/share/classes/javax/management/
H A DClassAttributeValueExp.java106 Object result = getValue(name);
107 if (result instanceof String) {
108 return new StringValueExp((String)result);
110 throw new BadAttributeValueExpException(result);
138 this MBean to be omitted from the query result. */
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.inline.hpp68 HeapWord* result = _mutator_alloc_region.attempt_allocation(word_size, local
70 if (result == NULL) {
71 result = attempt_allocation_slow(word_size, gc_count_before_ret);
74 if (result != NULL) {
75 dirty_young_block(result, word_size);
77 return result;
85 HeapWord* result = _survivor_gc_alloc_region.attempt_allocation(word_size, local
87 if (result == NULL) {
89 result = _survivor_gc_alloc_region.attempt_allocation_locked(word_size,
92 if (result !
102 HeapWord* result = _old_gc_alloc_region.attempt_allocation(word_size, local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.inline.hpp62 bool result = ((HeapWord*)p) >= young_gen()->reserved().start(); local
63 assert(result == young_gen()->is_in_reserved(p),
64 err_msg("incorrect test - result=%d, p=" PTR_FORMAT, result, (void*)p));
65 return result;

Completed in 67 milliseconds

1234567891011>>