Searched refs:boundary (Results 1 - 25 of 33) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/native/libawt/awt/image/cvutils/
H A Dimg_util.h111 #define paddedwidth(number, boundary) \
112 (((number) + ((boundary) - 1)) & (~((boundary) - 1)))
/openjdk10/jdk/test/java/text/BreakIterator/
H A DBug4932583.java39 int boundary = iterator.next();
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DContentTypeImpl.java39 private String boundary; field in class:ContentTypeImpl
116 if (boundary == null) {
118 boundary = internalContentType.getParameter("boundary");
120 return boundary;
123 public void setBoundary(String boundary) { argument
124 this.boundary = boundary;
H A DMimeCodec.java91 String boundary = ctImpl.getBoundary();
93 boolean hasAttachments = (boundary != null);
96 writeln("--"+boundary, out);
109 writeln("--"+boundary, out);
123 writeAsAscii("--"+boundary, out);
126 // TODO not returing correct multipart/related type(no boundary)
152 String boundary = "uuid:" + UUID.randomUUID().toString();
153 String boundaryParameter = "boundary=\"" + boundary + "\"";
159 impl.setBoundary(boundary);
[all...]
H A DMtomCodec.java117 //Note - this case of boundary = null or root content ID = null should never happen
120 //a null boundary, the content type of the Packet will be reset
125 String boundary = "uuid:" + uuid;
129 String boundaryParameter = "boundary=\"" + boundary +"\"";
141 ctImpl.setBoundary(boundary);
154 String boundary = ctImpl.getBoundary();
165 writeln("--"+boundary, out);
171 XMLStreamWriterFactory.create(out, encoding), mtomAttachments, boundary, mtomFeature);
184 out, boundary);
212 private final String boundary; field in class:MtomCodec.ByteArrayBuffer
248 writeNonMtomAttachments(AttachmentSet attachments, OutputStream out, String boundary) argument
338 private final String boundary; field in class:MtomCodec.MtomStreamWriterImpl
[all...]
H A DMimeMultipartParser.java80 // String boundary = ct.getParameter("boundary");
81 String boundary = contentType.getBoundary();
82 if (boundary == null || boundary.equals("")) {
83 throw new WebServiceException("MIME boundary parameter not found" + contentType);
86 ? new MIMEMessage(in, boundary, feature.getConfig())
87 : new MIMEMessage(in, boundary);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimePullMultipart.java45 private String boundary = null; field in class:MimePullMultipart
61 boundary = contType.getParameter("boundary");
80 mm = new MIMEMessage(in, boundary, config);
H A DMimeMultipart.java125 * A unique boundary string is generated and this string is
126 * setup as the "boundary" parameter for the
137 * A unique boundary string is generated and this string is
138 * setup as the "boundary" parameter for the
147 * Compute a boundary string.
149 String boundary = UniqueValue.getUniqueBoundaryValue();
151 contentType.setParameter("boundary", boundary);
164 * "boundary" parameter from the content type of this DataSource,
166 * boundary an
[all...]
H A DBMMimeMultipart.java91 private String boundary = null; field in class:BMMimeMultipart
101 * A unique boundary string is generated and this string is
102 * setup as the "boundary" parameter for the
114 * A unique boundary string is generated and this string is
115 * setup as the "boundary" parameter for the
125 * Compute a boundary string.
126 String boundary = UniqueValue.getUniqueBoundaryValue();
128 contentType.setParameter("boundary", boundary);
144 * "boundary" paramete
[all...]
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DblockOffsetTable.cpp255 // Calculate the last card boundary preceding end of blk
259 // blk starts at or crosses a boundary
265 HeapWord* boundary = _array->address_for_index(start_index); local
266 assert(boundary <= blk_start, "blk should start at or after boundary");
267 if (blk_start != boundary) {
268 // blk starts strictly after boundary
269 // adjust card boundary and start_index forward to next card
270 boundary += BOTConstants::N_words;
274 assert(boundary <
431 HeapWord* boundary = _array->address_for_index(suff_index); local
763 HeapWord* boundary = _array->address_for_index(start_index); local
[all...]
H A DgenOopClosures.hpp151 FilteringClosure(HeapWord* boundary, ExtendedOopClosure* cl) : argument
152 ExtendedOopClosure(cl->ref_processor()), _boundary(boundary),
H A Dspace.hpp185 HeapWord* boundary,
258 // pointing below boundary.
286 HeapWord* boundary) :
287 _sp(sp), _cl(cl), _precision(precision), _boundary(boundary),
426 // be updated whenever an allocation crosses a boundary. This function
427 // returns the first such boundary.
429 // boundary is never crossed.)
623 HeapWord* boundary,
698 HeapWord* boundary) :
699 DirtyCardToOopClosure(sp, cl, precision, boundary) {}
284 DirtyCardToOopClosure(Space* sp, ExtendedOopClosure* cl, CardTableModRefBS::PrecisionStyle precision, HeapWord* boundary) argument
696 FilteringDCTOC(Space* sp, ExtendedOopClosure* cl, CardTableModRefBS::PrecisionStyle precision, HeapWord* boundary) argument
725 ContiguousSpaceDCTOC(ContiguousSpace* sp, ExtendedOopClosure* cl, CardTableModRefBS::PrecisionStyle precision, HeapWord* boundary) argument
[all...]
H A DcardTableRS.cpp246 // fast forward through potential continuous whole-word range of clean cards beginning at a word-boundary
391 "clean card crosses boundary" PTR_FORMAT,
399 "Error: boundary " PTR_FORMAT " should be at or below begin " PTR_FORMAT,
415 VerifyCTSpaceClosure(CardTableRS* ct, HeapWord* boundary) : argument
416 _ct(ct), _boundary(boundary) {}
451 HeapWord* boundary = addr_for(cur_entry); local
453 HeapWord* boundary_block = s->block_start(boundary);
454 HeapWord* begin = boundary; // Until proven otherwise.
456 if (boundary_block < boundary) {
462 "else boundary woul
[all...]
H A Dspace.cpp184 HeapWord* boundary,
186 return new DirtyCardToOopClosure(this, cl, precision, boundary);
221 // We have a boundary outside of which we don't want to look
227 // No boundary, simply walk the heap with the oop closure.
264 HeapWord* boundary,
266 return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
182 new_dcto_cl(ExtendedOopClosure* cl, CardTableModRefBS::PrecisionStyle precision, HeapWord* boundary, bool parallel) argument
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DBreakIterator.java66 * word, line, sentence, and character boundary analysis respectively.
69 * for each unit boundary analysis you wish to perform.
72 * Line boundary analysis determines where a text string can be
79 * Sentence boundary analysis allows selection with correct interpretation
84 * Word boundary analysis is used by search and replace functions, as
92 * Character boundary analysis allows users to interact with characters
94 * string. Character boundary analysis provides correct navigation
117 * BreakIterator boundary = BreakIterator.getWordInstance();
118 * boundary.setText(stringToExamine);
119 * printEachForward(boundary, stringToExamin
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEMessage.java68 * @param boundary the separator for parts(pass it without --)
70 public MIMEMessage(InputStream in, String boundary) { argument
71 this(in, boundary, new MIMEConfig());
79 * @param boundary the separator for parts(pass it without --)
82 public MIMEMessage(InputStream in, String boundary, MIMEConfig config) { argument
85 MIMEParser parser = new MIMEParser(in, boundary, config);
H A DMIMEParser.java60 // after boundary. But the mail implementation checks for it.
61 // We will only check for these many whitespace characters after boundary
80 * terminating boundary line (or EOF).
93 MIMEParser(InputStream in, String boundary, MIMEConfig config) { argument
95 this.bndbytes = getBytes("--"+boundary);
101 // \r\n + boundary + "--\r\n" + lots of LWSP
208 int start = match(buf, 0, len); // matches boundary
210 // No boundary is found
215 throw new MIMEParsingException("Reached EOF, but there is no closing MIME boundary.");
219 // Found boundary
[all...]
/openjdk10/jdk/test/sun/net/www/http/HttpClient/
H A DB6726695.java37 private String boundary = "----------------7774563516523621"; field in class:B6726695
74 http.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
92 http.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
115 http.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java72 private boolean boundary; field in class:FigureWidget
77 boundary = b;
81 return boundary;
210 if (boundary) {
226 if (boundary) {
233 if (boundary) {
240 if (boundary) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/
H A DReentrantNodeIterator.java103 private static <StateT> EconomicMap<FixedNode, StateT> apply(NodeIteratorClosure<StateT> closure, FixedNode start, StateT initialState, LoopBeginNode boundary) { argument
112 if (boundary != null && current instanceof LoopExitNode && ((LoopExitNode) current).loopBegin() == boundary) {
/openjdk10/hotspot/src/share/vm/utilities/
H A DbitMap.cpp239 idx_t boundary = MIN2(bit_index(beg_full_word), end);
240 set_range_within_word(beg, boundary);
241 set_range_within_word(boundary, end);
258 idx_t boundary = MIN2(bit_index(beg_full_word), end);
259 clear_range_within_word(beg, boundary);
260 clear_range_within_word(boundary, end);
348 idx_t boundary = MIN2(bit_index(beg_full_word), end);
349 par_put_range_within_word(beg, boundary, value);
350 par_put_range_within_word(boundary, end, value);
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DparNewGeneration.hpp176 void set_young_old_boundary(HeapWord *boundary) { argument
177 _young_old_boundary = boundary;
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1BlockOffsetTable.cpp214 // If the fist object's end q is at the card boundary. Start refining
216 // set to 0). If the object crosses the boundary -- start from the next card.
219 // Calculate a consistent next boundary. If "n" is not at the boundary
220 // already, step to the boundary.
236 // [q, n) is the block that crosses the boundary.
303 // The offset can be 0 if the block starts on a boundary. That
306 HeapWord* boundary = _bot->address_for_index(start_index); local
307 assert((_bot->offset_array(orig_index) == 0 && blk_start == boundary) ||
312 "boundary
[all...]
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXIconWindow.java519 static int paddedwidth(int number, int boundary) argument
521 return (((number) + ((boundary) - 1)) & (~((boundary) - 1)));
/openjdk10/jdk/test/sanity/client/lib/Extensions/src/org/jemmy2ext/
H A DJemmyExt.java255 Rectangle boundary = new Rectangle(operator.getLocationOnScreen(),
257 return rob.createScreenCapture(boundary);

Completed in 292 milliseconds

12