Searched defs:offset (Results 1 - 14 of 14) sorted by relevance

/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/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 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...]
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));
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
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);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/time/
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);
H A DCalendarTable.java358 private void incSelection(final int offset) { argument
369 int pos = vRow * nCols + vCol + offset;
/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/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/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/
H A DRadLoginManager.java218 public ConnectionInfo peek(int offset) { argument
219 return depChain.get(offset);
/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/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/open-fabrics/libsif/include/psifapi/
H A Dpsif_hw_data_be.h1889 * If this bit is set, the va in the key is used as an offset to the base
1955 * struct is always located at offset 0x800 within an image
1964 The length is defined in bytes and starts at offset 0x0A00 into the image. */
2108 /* Owned by host real offset modulo sz */
2585 u32 offset; member in struct:psif_epsc_csr_flash_access
2600 /* Buffer offset in bytes */
2601 u32 offset; member in struct:psif_epsc_csr_trace_acquire
2831 u32 offset; member in union:psif_epsc_update_set_or_offset
3098 /* Register offset or port number */

Completed in 199 milliseconds