Searched refs:result (Results 326 - 350 of 1970) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCHandler.java77 * @param result
78 * The parsing result of the child state.
88 protected abstract void onChildCompleted( Object result, int cookie, boolean needAttCheck ) throws SAXException; argument
131 public void revertToParentFromEnterElement( Object result, int cookie, argument
135 _parent.onChildCompleted(result,cookie,true);
138 public void revertToParentFromLeaveElement( Object result, int cookie, argument
148 _parent.onChildCompleted(result,cookie,true);
151 public void revertToParentFromEnterAttribute( Object result, int cookie, argument
155 _parent.onChildCompleted(result,cookie,true);
158 public void revertToParentFromLeaveAttribute( Object result, in argument
165 revertToParentFromText( Object result, int cookie, String text ) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DExecutableMemberDocImpl.java186 Parameter result[] = new Parameter[params.length()];
190 result[i++] = new ParameterImpl(env, param);
192 return result;
229 StringBuilder result = new StringBuilder();
230 result.append("(");
233 result.append(TypeMaker.getTypeString(env, t, full));
236 result.append(", ");
240 int len = result.length();
241 result.replace(len - 2, len, "...");
243 result
[all...]
/openjdk7/langtools/test/com/sun/javadoc/DocRootSlash/
H A DDocRootSlash.java115 String result;
117 result = "FAILED";
119 result = "succeeded";
123 + " for bug " + BUGID + " (" + BUGNAME + ") " + result + "\n"
132 result = "FAILED";
134 result = "succeeded";
138 + " for bug " + BUGID + " (" + BUGNAME + ") " + result + "\n"
222 String result;
227 result = "succeeded";
237 result
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractPoller.java167 private Object result = null; field in class:AbstractPoller.Request
182 void release(Object result) { argument
185 this.result = result;
191 * Await completion of the request. The return value is the result of
203 return result;
209 * Enqueues request to poller thread and waits for result
224 // wait for result
225 Object result = req.awaitResult();
227 if (result instanceo
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLOutputFactoryImpl.java78 public javax.xml.stream.XMLEventWriter createXMLEventWriter(javax.xml.transform.Result result) throws javax.xml.stream.XMLStreamException { argument
80 if (result instanceof StAXResult && ((StAXResult)result).getXMLEventWriter() != null)
81 return ((StAXResult)result).getXMLEventWriter();
83 return new XMLEventWriterImpl(createXMLStreamWriter(result));
90 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(javax.xml.transform.Result result) throws javax.xml.stream.XMLStreamException { argument
92 if (result instanceof StreamResult) {
93 return createXMLStreamWriter((StreamResult) result, null);
94 } else if (result instanceof DOMResult) {
95 return new XMLDOMWriterImpl((DOMResult) result);
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DValueType.java141 String result = addExceptionDescription("Value");
143 result = "Custom " + result;
146 result = result + " [IDLEntity]";
148 return result;
196 boolean result = false;
212 result = true;
219 return result;
411 boolean result
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dutf8.cpp34 jchar result; local
37 result = ch;
50 result = (high_five << 6) + low_six;
63 result = (((high_four << 6) + mid_six) << 6) + low_six;
71 *value = ptr[0]; /* default bad result; */
75 *value = result;
78 // assert(UNICODE::utf8_size(result) == length, "checking reverse computation");
90 jchar result; local
91 char* next_ch = next(str, &result);
92 *value = result;
205 int result = 0; local
217 u_char* result = NEW_RESOURCE_ARRAY(u_char, utf8_len + 1); local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DParamTaglet.java63 HashMap<String,String> result = new HashMap<String,String>();
68 result.put(name, String.valueOf(i));
70 return result;
194 TagletOutput result = writer.getOutputInstance();
197 result.appendOutput(
205 result.appendOutput(getInheritedTagletOutput (isNonTypeParams, holder,
208 return result;
218 TagletOutput result = writer.getOutputInstance();
232 result.appendOutput(
243 return result;
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationInvocationHandler.java69 Object result = memberValues.get(member);
71 if (result == null)
74 if (result instanceof ExceptionProxy)
75 throw ((ExceptionProxy) result).generateException();
77 if (result.getClass().isArray() && Array.getLength(result) != 0)
78 result = cloneArray(result);
80 return result;
132 StringBuffer result
[all...]
/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/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp49 LIR_Opr res = result();
236 bool LIRGenerator::strength_reduce_multiply(LIR_Opr left, int c, LIR_Opr result, LIR_Opr tmp) { argument
241 __ sub(left, tmp, result);
246 __ add(left, tmp, result);
306 LIR_Address* array_addr = emit_array_address(array.result(), index.result(), x->elt_type(), obj_store);
310 __ cmp(lir_cond_belowEqual, length.result(), index.result());
311 __ branch(lir_cond_belowEqual, T_INT, new RangeCheckStub(range_check_info, index.result()));
313 array_range_check(array.result(), inde
504 LIR_Opr result = rlock_result(x); local
521 LIR_Opr result = rlock_result(x); local
564 LIR_Opr result = rlock_result(x); local
801 LIR_Opr result = rlock_result(x); local
1027 LIR_Opr result = rlock_result(x); local
1052 LIR_Opr result = rlock_result(x); local
1086 LIR_Opr result = rlock_result(x); local
1136 LIR_Opr result = rlock_result(x); local
1298 volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java1083 * @return result of adding second and fractional second field
1089 BigDecimal result = BigDecimal.valueOf((long) second);
1091 return result.add(fractionalSecond);
1093 return result;
1450 int result = DatatypeConstants.INDETERMINATE;
1477 result = internalCompare(P, MinQ);
1478 if (result == DatatypeConstants.LESSER) {
1479 return result;
1484 result = internalCompare(P, MaxQ);
1485 if (result
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DOperationFactory.java45 * <li>maskErrorAction( Operation op ) executes op and returns the result. If op throws an
46 * exception, the result is null.
58 * applies the Operation to each token, and returns an array of the result</li>
61 * <li>compose( Operation op1, Operation op2 ) is the operation that applies op2 to the result of applying
251 Class<?> result =
253 return result ;
355 int result = Integer.parseInt( getString( value ) ) ;
356 if ((result >= min) && (result <= max))
357 return new Integer( result ) ;
[all...]
/openjdk7/hotspot/test/runtime/6626217/
H A DLoader2.java16 byte result[] = new byte[fi.available()];
17 fi.read(result);
21 Class clazz = defineClass(name, result, 0, result.length);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHelper.java32 * specific source and result types.</p>
38 public void validate(Source source, Result result) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DObjectPool.java115 Object result = freeStack.remove(freeStack.size() - 1);
116 return result;
150 Object result = freeStack.remove(freeStack.size() - 1);
151 return result;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DIteratorPool.java77 DTMIterator result = (DTMIterator)m_freeStack.remove(m_freeStack.size() - 1);
78 return result;
106 DTMIterator result = (DTMIterator)m_freeStack.remove(m_freeStack.size() - 1);
107 return result;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DCodecFactoryImpl.java94 Codec result = null;
103 result = codecs[enc.minor_version];
107 if( result == null ) {
111 return result;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DGenericIdentifiable.java82 int result = 17 ;
84 result = 37*result + data[ctr] ;
85 return result ;
H A DObjectAdapterIdBase.java58 int result = 17 ;
62 result = 37*result + str.hashCode() ;
64 return result ;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DIndentingPrintWriter.java44 StringBuffer result = new StringBuffer() ;
52 result.append( data[pos] );
58 result.append( token ) ;
62 // System.out.println( "Printing result " + result + " to file" ) ;
63 print( result ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DDebugInfoReadStream.java65 ObjectValue result = new ObjectValue(id);
67 objectPool.add(result);
68 result.readObject(this);
69 return result;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicVtblAccess.java50 Object result = typeToVtblMap.get(type);
51 if (result == nullAddress) {
54 if (result != null) {
55 return (Address)result;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindInCodeCachePanel.java56 StringBuffer result; field in class:FindInCodeCachePanel.Visitor
64 result = new StringBuffer();
77 reportResult(result, blob);
91 updateProgressBar(result);
93 result = null;
191 private void reportResult(StringBuffer result, CodeBlob blob) { argument
192 result.append("<a href='blob:");
193 result.append(blob.contentBegin().toString());
194 result.append("'>");
195 result
209 updateProgressBar(final StringBuffer result) argument
[all...]
H A DSAEditorPane.java51 StringBuffer result = new StringBuffer();
75 result.append(separator);
77 result.append(line);
85 return result.toString();

Completed in 72 milliseconds

<<11121314151617181920>>