Searched refs:offset (Results 1 - 25 of 28) sorted by relevance

12

/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/path/
H A DPathDocument.java80 public void insertString(int offset, String str, AttributeSet a) argument
88 // If offset is in the middle of a token element, move it to the end
89 Element element = getCharacterElement(offset);
91 offset = element.getStartOffset();
94 super.insertString(offset, str, a);
98 int start = offset;
108 int end = offset + insLength;
151 public void remove(int offset, int length) throws BadLocationException { argument
155 Element element = getCharacterElement(offset);
158 if (sOffset != offset) {
218 findToken(String text, int offset) argument
232 isPartOfToken(int offset) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/
H A DHostMaskFormatter.java49 public void replace(FilterBypass fb, int offset, int length, argument
53 super.replace(fb, offset, length, text, attr);
66 String newText = getReplaceString(curText, offset, length, text);
75 fb.replace(offset, length, text, attr);
82 private String getReplaceString(String orig, int offset, int len, argument
84 return (orig.substring(0, offset) + text +
85 orig.substring(offset + len));
H A DPortFormatter.java49 public void insertString(FilterBypass fb, int offset, argument
51 replace(fb, offset, 0, text, attr);
54 public void replace(FilterBypass fb, int offset, int length, argument
58 super.replace(fb, offset, length, text, attr);
71 String nText = getReplaceString(cText, offset, length, text);
81 fb.replace(offset, length, text, attr);
88 private String getReplaceString(String orig, int offset, int len, argument
90 return (orig.substring(0, offset) + text +
91 orig.substring(offset + len));
H A DIPMaskFormatter.java55 public void remove(FilterBypass fb, int offset, int length) argument
59 String remText = curText.substring(offset, offset + length);
67 fb.remove(offset, length);
71 public void insertString(FilterBypass fb, int offset, argument
73 replace(fb, offset, 0, text, attr);
77 public void replace(FilterBypass fb, int offset, int length, argument
81 fb.replace(offset, length, text, attr);
91 clearSpace(fb, offset, length, text);
94 String newText = getReplaceString(curText, offset, lengt
133 getReplaceString(String orig, int offset, int len, String text) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DThrowableUtil.java61 int offset = 2;
64 throwableStack.length + threadStack.length - offset];
68 System.arraycopy(threadStack, offset, stack, throwableStack.length,
69 threadStack.length - offset);
H A DBase64Util.java297 public static void encode(byte[] buffer, int offset, int len, argument
301 new ByteArrayInputStream(buffer, offset, len);
315 public static String encode(byte[] buffer, int offset, int len) { argument
318 encode(buffer, offset, len, out);
H A DArrayUtil.java41 int offset = 0;
43 System.arraycopy(array, 0, dest, offset, array.length);
44 offset += array.length;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/time/
H A DCenturyTableModel.java75 int offset = cal.get(Calendar.YEAR) % 100 + 10;
81 row[c].add(Calendar.YEAR, 10 * (r * row.length + c) - offset);
105 int offset = cal.get(Calendar.YEAR) % 100;
106 cal.add(Calendar.YEAR, -offset);
126 int offset = cal.get(Calendar.YEAR) % 10;
127 cal.add(Calendar.YEAR, -offset);
H A DMillenniumTableModel.java79 int offset = cal.get(Calendar.YEAR) % 1000 + 100;
85 row[c].add(Calendar.YEAR, 100 * (r * row.length + c) - offset);
109 int offset = cal.get(Calendar.YEAR) % 1000;
110 cal.add(Calendar.YEAR, -offset);
131 int offset = cal.get(Calendar.YEAR) % 100;
132 cal.add(Calendar.YEAR, -offset);
H A DSunIcon.java163 float offset = (diameter - innerDiam) / 2f;
168 innerRad + offset, innerRad + offset, innerRad,
169 innerRad + offset, innerRad / 2f + offset, fractions, colors,
174 Ellipse2D.Float orb = new Ellipse2D.Float(offset, offset, innerDiam,
182 float yStart = offset + yMargin;
183 float yEnd = offset + innerDiam * .5f;
189 float xStart = offset
[all...]
H A DDecadeTableModel.java73 int offset = cal.get(Calendar.YEAR) % 10 + 1;
79 row[c].add(Calendar.YEAR, r * row.length + c - offset);
103 int offset = cal.get(Calendar.YEAR) % 10;
104 cal.add(Calendar.YEAR, -offset);
H A DYearTableModel.java72 int offset = cal.get(Calendar.MONTH);
78 row[c].add(Calendar.MONTH, r * row.length + c - offset);
H A DAnalogClock.java117 * TimeModel#getTimeOffset offset} from the system clock.
358 int offset = Math.round(outerMargin);
359 g.translate(offset, offset);
420 // Angle (degree) offset from moon, percent distance between arcs
479 g.translate(-offset, -offset);
481 Shape shape = AffineTransform.getTranslateInstance(offset, offset).
593 float offset
[all...]
H A DCalendarTable.java358 private void incSelection(final int offset) { argument
369 int pos = vRow * nCols + vCol + offset;
H A DCalendarBrowser.java165 * Sets the {@link #getTimeModel time model}'s time offset to fall on the
251 private void addIfTableVisible(final int offset) { argument
253 add(offset);
/solaris-userland-s11u3/components/visual-panels/time/src/java/vpanels/app/time/com/oracle/solaris/vp/panels/time/client/swing/
H A DTimeModel.java92 public void setOffset(long offset) { argument
93 offset_ = offset;
/solaris-userland-s11u3/components/open-fabrics/libsif/include/sif/
H A Dsif_user.h252 /* mmap offset encoding */
287 static inline void mmap_get_cmd(uint64_t offset, enum sif_mmap_cmd *cmdp, argument
290 *cmdp = (offset >> 44) & 0xff;
291 *idxp = (offset >> 13) & 0x7fffffff;
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/timezone/
H A DTimeZonePanel.java100 * Need an object to encapsulate a timezone offset.
105 public Offset(int offset) { argument
106 offset_ = offset;
163 private Offset makeOffset(int offset, Map<Integer, Offset>map) { argument
164 Offset result = map.get(offset);
166 map.put(offset, result = new Offset(offset));
191 return Finder.getString("timezone.label.offset");
195 return Finder.getString("timezone.offset.select");
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreConfig.java182 int offset = 0;
192 offset += s.length();
193 if (offset < max)
194 plus = lit.charAt(offset) == '+';
195 offset++;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/layout/
H A DAbstractTableLayout.java590 * Returns a two-element array consisting of the offset and size of a
606 int offset = 0;
618 offset = (aSize - pSize);
622 offset = (aSize - pSize) / 2;
628 return new int[] {offset, size};
/solaris-userland-s11u3/components/samba/Solaris/include/samfs/
H A Dstat.h114 uint_t offset; member in struct:sam_copy_s
212 ulong_t offset; member in struct:sam_copy_s
317 u_longlong_t offset; member in struct:sam_section
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/tree/
H A DTreeTable.java445 int offset = rowData.get(0).getRow();
446 return rowData.get(vRow - offset);
/solaris-userland-s11u3/components/zlib/
H A Dllib-lz90 z_off_t gzseek(gzFile file, z_off_t offset, int whence);
/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dmod_sed.c492 int offset = (int) (long) cmd->info; local
494 (sed_expr_config *) (((char *) cfg) + offset);
/solaris-userland-s11u3/components/openstack/horizon/files/branding/css/
H A Dsolaris1.css1933 outline-offset: -2px; }
2517 .col-xs-offset-0 {
2520 .col-xs-offset-1 {
2523 .col-xs-offset-2 {
2526 .col-xs-offset-3 {
2529 .col-xs-offset-4 {
2532 .col-xs-offset-5 {
2535 .col-xs-offset-6 {
2538 .col-xs-offset-7 {
2541 .col-xs-offset
[all...]

Completed in 185 milliseconds

12