Searched refs:span (Results 26 - 50 of 58) sorted by relevance

123

/openjdk10/jdk/src/java.desktop/share/native/libawt/java2d/loops/
H A DTransformHelper.c443 SurfaceDataBounds span; local
459 while (Region_NextIteration(&clipInfo, &span)) {
463 dy1 = span.y1;
464 dy2 = span.y2;
475 if (dx1 < span.x1) dx1 = span.x1;
476 if (dx2 > span.x2) dx2 = span.x2;
558 SurfaceDataBounds span; local
577 while (Region_NextIteration(pClipInfo, &span)) {
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DBlockView.java199 * size is exactly specified, false if the span is not specified
222 * of the layout (the offset and span for each children) are
226 * @param targetSpan the total span given to the view, which
232 * @param spans the span of each child view; this is a return
243 // check for percentage span
247 // bound the span to the percentage specified
254 // assign the offset and span for the child
330 float span = getPreferredSpan(View.Y_AXIS);
333 float a = (((int)span) != 0) ? (above * v.getAlignment(View.Y_AXIS)) / span
[all...]
H A DTableView.java82 * Fetches the span (width) of the given column.
101 * Fetch the span of multiple rows. This includes
110 int span = getOffset(Y_AXIS, index1) - getOffset(Y_AXIS, index0) +
112 return span;
118 * Fetches the span (height) of the given row.
356 * Layout the columns to fit within the given target span.
358 * @param targetSpan the given span for total of all the table
362 * maximum requested span
367 * @return the offset from the origin and the span for each column
384 * give axis. Table cells that span multipl
1014 updatePercentagesAndAdjustmentWeights(int span) argument
1081 setSpan(int span) argument
1228 setSpan(int span) argument
[all...]
H A DCSS.java1009 v.span = (v.span < 0) ? 0 : v.span;
2463 * Returns the length (span) to use.
2474 * Returns the length (span) to use. If the value represents
2482 return span * currentValue;
2484 return LengthUnit.getValue(span, units, isW3CLengthUnits);
2501 lv.span = absolute;
2514 lv.span =
2521 lv.span
2574 float span; field in class:CSS.LengthValue
3502 setSpan(int span) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DObjectInputStream.java2377 * Converts specified span of bytes into float values.
2385 * Converts specified span of bytes into double values.
2821 /** loopback stream (for data reads that span data blocks) */
2927 * reads may span data blocks separated by a TC_RESET.
3312 int span = Math.min(endoff - off, MAX_BLOCK_SIZE);
3313 in.readFully(buf, 0, span);
3314 stop = off + span;
3333 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1);
3334 in.readFully(buf, 0, span << 1);
3335 stop = off + span;
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DUnicodeSet.java47 * contains(c), containsNone(...), span(...), spanBack(...) etc.
1130 // Optimize contains() and span() and similar functions.
1137 // all strings are irrelevant for span() etc. because
1151 * @param spanCondition The span condition
1152 * @return the length of the span
1155 public int span(CharSequence s, SpanCondition spanCondition) { method in class:UnicodeSet
1156 return span(s, 0, spanCondition);
1161 * If the start index is less than 0, span will start from 0.
1162 * If the start index is greater than the string length, span returns the string length.
1165 * @param start The start index that the span begin
1170 public int span(CharSequence s, int start, SpanCondition spanCondition) { method in class:UnicodeSet
[all...]
H A DUnicodeSetStringSpan.java42 * Implement span() etc. for a set with strings.
49 * Which span() variant will be used? The object is either built for one variant and used once,
75 /** Set for span(). Same as parent but without strings. */
79 * Set for span(not contained).
87 /** The lengths of span(), spanBack() etc. for each string. */
96 /** Set up for all variants of span()? */
103 * Constructs for all variants of span(), or only for any one variant.
111 // (We do not want to create multiple Iterator objects in each span().)
123 // Determine if the strings even need to be taken into account at all for span() etc.
125 // span(longes
366 public int span(CharSequence s, int start, SpanCondition spanCondition) { method in class:UnicodeSetStringSpan
[all...]
H A DBMPSet.java40 * Helper class for frozen UnicodeSets, implements contains() and span() optimized for BMP code points.
144 * @param outCount If not null: Receives the number of code points in the span.
145 * @return the limit (exclusive end) of the span
151 public final int span(CharSequence s, int start, SpanCondition spanCondition, method in class:BMPSet
158 // span
197 // span not
244 * Symmetrical with span().
248 * @return The string index which starts the span (i.e. inclusive).
254 // span
294 // span no
[all...]
/openjdk10/jdk/src/demo/share/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextTests.java253 int span = Math.min(32, len);
263 span = Math.max(1, Math.min(16, len / 3));
267 span = Math.max(1, Math.min(16, len / 4));
281 if (pos + span > src.length()) {
282 pos = 0; // we know all strings are longer than span
284 s += src.substring(pos, pos+span);
285 pos += span;
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java727 int span[] = new int[4];
728 while (si.nextSpan(span)) {
730 span[0], span[1], span[2], span[3]);
872 int span[] = new int[4];
873 while (si.nextSpan(span)) {
875 span[0], span[
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DUtilities.java367 * best represents the given span in the view coordinate
403 * best represents the given span in the view coordinate
434 * best represents the given span in the view coordinate
543 float span = x - x0;
545 if (span < width) {
551 if (span >= nextWidth) {
552 if (span - nextWidth < width - span) {
583 * within the given span. This tries to find a word boundary.
643 * within the given span
[all...]
H A DFlowView.java84 * Fetch the constraining span to flow against for
89 * span inside of the insets along the flow axis
94 * @return the constraining span to flow against for
104 * flow span will start at. This is called by the
112 * flow span will start at
176 * Lays out the children. If the span along the flow
502 * layout span of the row. This is called by the layout method.
504 * the createView method until the available span has been
506 * method returned null. If the remaining span was exhausted,
508 * to the row to try and make it fit into the given span
[all...]
H A DParagraphView.java338 * Fetches the constraining span to flow against for
341 * @return the constraining span for the given view at
358 * flow span will start at.
390 * of layout to determine the desired span of the children. The
606 * origin and 1.0 indicates alignment to the full span
641 * given span, if the view can be broken; if the view
717 float span = v.getMinimumSpan(axis);
725 min = Math.max(min, Math.max(span, glue));
729 glue += span;
932 * @param targetSpan the total span give
[all...]
H A DTableView.java58 * are vertical boxes. The cells are allowed to span multiple
61 * gridbag layout), where table cells can request to span more
62 * than one grid cell. The default horizontal span of table cells
64 * the requested span of the cell (i.e. table cells can have independent
115 * Fetches the span (width) of the given column.
131 * Fetches the span (height) of the given row.
290 * Lays out the columns to fit within the given target span.
293 * @param targetSpan the given span for total of all the table
297 * maximum requested span
323 * @param targetSpan the total span give
[all...]
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DconcurrentMarkSweepGeneration.cpp287 new ReferenceProcessor(_span, // span
453 // Adjust my span to cover old (cms) gen
493 // Now expand the span and allocate the collection support structures
1533 // Temporarily widen the span of the weak reference processing to
3233 MemRegion span = MemRegion(aligned_start + nth_task*chunk_size,
3243 HeapWord* finger = span.end();
3247 span = span.intersection(sp->used_region());
3248 if (!span.is_empty()) { // Non-null task
3250 assert(!span
[all...]
H A DcompactibleFreeListSpace.cpp2166 MemRegion span) : _sp(sp), _span(span),
2261 const CompactibleFreeListSpace* sp, MemRegion span,
2263 _collector(collector), _sp(sp), _span(span),
2273 MemRegion span = _collector->_span; local
2288 VerifyAllBlksClosure cl(this, span);
2296 VerifyAllOopsClosure cl(_collector, this, span, past_remark,
2870 MemRegion span = _old_gen->reserved(); local
2872 if (span.contains(low)) {
2874 // we can use block_offset_careful() on span boundarie
2165 VerifyAllBlksClosure(const CompactibleFreeListSpace* sp, MemRegion span) argument
2260 VerifyAllOopsClosure(const CMSCollector* collector, const CompactibleFreeListSpace* sp, MemRegion span, bool past_remark, CMSBitMap* bit_map) argument
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DPackageTreeWriter.java175 Content span = HtmlTree.SPAN(HtmlStyle.packageHierarchyLabel,
177 div.addContent(span);
H A DTreeWriter.java148 Content span = HtmlTree.SPAN(HtmlStyle.packageHierarchyLabel,
150 contentTree.addContent(span);
H A DAbstractIndexWriter.java326 Content span = HtmlTree.SPAN(HtmlStyle.memberNameLink,
328 Content dt = HtmlTree.DT(span);
365 Content span = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, getDeprecatedPhrase(element));
369 div.addContent(span);
378 div.addContent(span);
H A DAnnotationTypeWriterImpl.java293 Content span = HtmlTree.SPAN(HtmlStyle.memberNameLabel, annotationName);
294 span.addContent(parameterLinks);
295 pre.addContent(span);
H A DModuleWriterImpl.java653 Content span;
656 span = HtmlTree.SPAN(type.tableTabs().tabId(),
660 span = HtmlTree.SPAN(type.tableTabs().tabId(),
664 span.addContent(tabSpan);
665 tabbedCaption.addContent(span);
H A DClassWriterImpl.java310 Content span = HtmlTree.SPAN(HtmlStyle.typeNameLabel, className);
311 span.addContent(parameterLinks);
312 pre.addContent(span);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJProgressBar.java519 long span = model.getMaximum() - model.getMinimum();
521 double pc = (currentValue - model.getMinimum()) / span;
/openjdk10/jdk/src/java.desktop/windows/native/libawt/java2d/windows/
H A DGDIWindowSurfaceData.cpp1035 SurfaceDataBounds span; local
1091 while (Region_NextIteration(&clipInfo, &span)) {
1092 pRect->left = span.x1 - leftInset;
1093 pRect->top = span.y1 - topInset;
1094 pRect->right = span.x2 - leftInset;
1095 pRect->bottom = span.y2 - topInset;
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_64.s152 # or qwords that span cache line boundaries will still be loaded
242 # the hardware handle it. The two dwords within qwords that span

Completed in 398 milliseconds

123