Searched defs:append (Results 101 - 108 of 108) sorted by relevance

12345

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java54 void append(String s) { method in class:HTMLGenerator.Formatter
55 buf.append(s);
58 void append(int s) { method in class:HTMLGenerator.Formatter
59 buf.append(s);
62 void append(char s) { method in class:HTMLGenerator.Formatter
63 buf.append(s);
66 void append(StringBuffer s) { method in class:HTMLGenerator.Formatter
67 buf.append(s);
70 void append(Formatter s) { method in class:HTMLGenerator.Formatter
71 buf.append(
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp107 void append(Node* value, int mode) { function in class:StringConcat
109 _mode.append(mode);
297 result->append(other->argument(y), other->mode(y));
300 result->append(argx, mode(x));
779 // Null check of the return of append which can simply be eliminated
783 // NULL check of the return value of the append
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java757 java.io.ByteArrayOutputStream append = new ByteArrayOutputStream(); field in class:Package.File
828 if (((append.size() | len) << 2) < 0) {
829 prepend.add(append.toByteArray());
830 append.reset();
832 append.write(bytes, off, len);
836 if (prepend == null || append == null) return 0;
841 len += append.size();
845 if (prepend == null || append == null) return;
850 append.writeTo(out);
860 InputStream in = new ByteArrayInputStream(append
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp1144 void LIR_List::append(LIR_InsertionBuffer* buffer) { function in class:LIR_List
1174 append(new LIR_Op1(lir_move, LIR_OprFact::oopConst(o), reg, T_OBJECT, lir_patch_normal, info));
1179 append(new LIR_Op1(
1190 append(new LIR_Op1(
1200 append(new LIR_Op1(
1211 append(new LIR_Op1(
1218 append(new LIR_Op1(
1229 append(new LIR_Op1(
1240 append(new LIR_Op1(
1251 append(ne
2026 void LIR_InsertionBuffer::append(int index, LIR_Op* op) { function in class:LIR_InsertionBuffer
[all...]
H A Dc1_LIR.hpp1885 void append(LIR_Op* op) { function in class:LIR_List
1895 _operations.append(op);
1920 void append(LIR_InsertionBuffer* buffer);
1935 append(new LIR_OpJavaCall(lir_optvirtual_call, method, receiver, result, dest, arguments, info));
1939 append(new LIR_OpJavaCall(lir_static_call, method, LIR_OprFact::illegalOpr, result, dest, arguments, info));
1943 append(new LIR_OpJavaCall(lir_icvirtual_call, method, receiver, result, dest, arguments, info));
1947 append(new LIR_OpJavaCall(lir_virtual_call, method, receiver, result, vtable_offset, arguments, info));
1951 append(new LIR_OpJavaCall(lir_dynamic_call, method, receiver, result, dest, arguments, info));
1954 void get_thread(LIR_Opr result) { append(new LIR_Op0(lir_get_thread, result)); }
1955 void word_align() { append(ne
2245 void append(LIR_Opr& opr, OprMode mode) { function in class:LIR_OpVisitState
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1282 sb.append("\\Q");
1286 sb.append(s.substring(current, slashEIndex));
1288 sb.append("\\E\\\\E\\Q");
1290 sb.append(s.substring(current, s.length()));
1291 sb.append("\\E");
1376 newPattern.append("(?:").append(ea).append(")");
1400 charClass.append("[");
1406 charClass.append((cha
2203 private void append(int ch, int len) { method in class:Pattern
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp486 // Scan the directory and append any jar or zip files found to path.
3346 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) { argument
3354 if (append) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java948 fBuffer.append(fNormalizedStr.ch, fNormalizedStr.offset, fNormalizedStr.length);
951 fBuffer.append(data);
1223 /** Whether need to append characters to fBuffer */
1586 fBuffer.append(text.ch, text.offset, text.length);
1928 // any type has mixed content, so we don't need to append buffer
1955 // if the element has a fixed value constraint, we need to append
1960 // if the type is simple, we need to append
1964 // if the type is simple content complex type, we need to append
2258 // Same for append buffer. Simple types and elements with fixed
3300 ret.append(", ");
3480 public void append(ValueStoreBase newVal) { method in class:XMLSchemaValidator.ValueStoreBase
[all...]

Completed in 86 milliseconds

12345