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

123456789

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRABlockActionSheet.h28 * The offset parameter passed to the block gives the index of the button that was clicked.
30 @property (nonatomic, copy) void (^callback)(NSInteger offset); variable
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DRelativeInheritedDefaultBehaviorProvider.java38 /** The type of managed object expected at the relative offset. */
42 * The relative offset (where 1 = parent, 2 = grandparent) of the
45 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
60 * @param offset
65 * If the offset is less than 0.
68 int offset) {
71 // offset is 0).
72 if (offset < 0) {
73 throw new IllegalArgumentException("Negative offset");
77 this.offset
67 RelativeInheritedDefaultBehaviorProvider(AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/openam/openam-time-travel/src/main/java/org/forgerock/openam/temper/
H A DTimeTravelTimeService.java24 * The time service that permits time travel. This implementation has an offset that can be set from services exposed
25 * by {@link TimeTravelRouteProvider}, and the implementation then adds that offset (which could in theory be negative)
46 public static void setOffset(long offset) { argument
47 OFFSET = offset;
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java42 // The type of managed object expected at the relative offset.
45 // The relative offset (where 1 = parent, 2 = grandparent) of the
47 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
64 * @param offset
69 * If the offset is less than 0.
72 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
76 // offset is 0).
77 if (offset < 0) {
78 throw new IllegalArgumentException("Negative offset");
82 this.offset
71 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java57 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
69 if (offset + newText.length() > maxSize)
71 int newOffset = offset + newText.length() - maxSize;
77 fb.insertString(offset, newText, attr);
83 fb.insertString(offset, newText, attr);
91 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
97 fb.remove(offset, length);
100 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java54 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
59 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
60 trimPosition(fb, text, offset, previousLength);
66 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
70 String text = fb.getDocument().getText(offset, length);
74 fb.remove(offset, length);
78 // index value is relative to offset
81 fb.remove(offset, index);
85 fb.remove(offset + index + 1, length - index -1);
94 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
118 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java43 // The type of managed object expected at the relative offset.
46 // The relative offset (where 1 = parent, 2 = grandparent) of the
48 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
65 * @param offset
70 * If the offset is less than 0.
73 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
77 // offset is 0).
78 if (offset < 0) {
79 throw new IllegalArgumentException("Negative offset");
83 this.offset
72 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java56 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
68 if (offset + newText.length() > maxSize)
70 int newOffset = offset + newText.length() - maxSize;
76 fb.insertString(offset, newText, attr);
82 fb.insertString(offset, newText, attr);
90 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
96 fb.remove(offset, length);
99 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java53 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
58 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
59 trimPosition(fb, text, offset, previousLength);
65 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
69 String text = fb.getDocument().getText(offset, length);
73 fb.remove(offset, length);
77 // index value is relative to offset
80 fb.remove(offset, index);
84 fb.remove(offset + index + 1, length - index -1);
93 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
117 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java43 // The type of managed object expected at the relative offset.
46 // The relative offset (where 1 = parent, 2 = grandparent) of the
48 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
65 * @param offset
70 * If the offset is less than 0.
73 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
77 // offset is 0).
78 if (offset < 0) {
79 throw new IllegalArgumentException("Negative offset");
83 this.offset
72 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java57 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
69 if (offset + newText.length() > maxSize)
71 int newOffset = offset + newText.length() - maxSize;
77 fb.insertString(offset, newText, attr);
83 fb.insertString(offset, newText, attr);
91 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
97 fb.remove(offset, length);
100 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java54 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
59 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
60 trimPosition(fb, text, offset, previousLength);
66 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
70 String text = fb.getDocument().getText(offset, length);
74 fb.remove(offset, length);
78 // index value is relative to offset
81 fb.remove(offset, index);
85 fb.remove(offset + index + 1, length - index -1);
94 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
118 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java56 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
68 if (offset + newText.length() > maxSize)
70 int newOffset = offset + newText.length() - maxSize;
76 fb.insertString(offset, newText, attr);
82 fb.insertString(offset, newText, attr);
90 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
96 fb.remove(offset, length);
99 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java53 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
58 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
59 trimPosition(fb, text, offset, previousLength);
65 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
69 String text = fb.getDocument().getText(offset, length);
73 fb.remove(offset, length);
77 // index value is relative to offset
80 fb.remove(offset, index);
84 fb.remove(offset + index + 1, length - index -1);
93 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
117 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java42 // The type of managed object expected at the relative offset.
45 // The relative offset (where 1 = parent, 2 = grandparent) of the
47 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
64 * @param offset
69 * If the offset is less than 0.
72 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
76 // offset is 0).
77 if (offset < 0) {
78 throw new IllegalArgumentException("Negative offset");
82 this.offset
71 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java57 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
69 if (offset + newText.length() > maxSize)
71 int newOffset = offset + newText.length() - maxSize;
77 fb.insertString(offset, newText, attr);
83 fb.insertString(offset, newText, attr);
91 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
97 fb.remove(offset, length);
100 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java54 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
59 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
60 trimPosition(fb, text, offset, previousLength);
66 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
70 String text = fb.getDocument().getText(offset, length);
74 fb.remove(offset, length);
78 // index value is relative to offset
81 fb.remove(offset, index);
85 fb.remove(offset + index + 1, length - index -1);
94 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
118 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java43 // The type of managed object expected at the relative offset.
46 // The relative offset (where 1 = parent, 2 = grandparent) of the
48 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
65 * @param offset
70 * If the offset is less than 0.
73 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
77 // offset is 0).
78 if (offset < 0) {
79 throw new IllegalArgumentException("Negative offset");
83 this.offset
72 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DPermutationGenerator.java122 static private long bytesToLong(byte[] bytes, int offset) { argument
123 int bound = offset + Math.min(bytes.length - offset, 8);
125 for (int i = offset; i < bound; ++i) {
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/components/
H A DNumericLimitedSizeDocumentFilter.java55 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
67 if (offset + newText.length() > maxSize)
69 int newOffset = offset + newText.length() - maxSize;
75 fb.insertString(offset, newText, attr);
81 fb.insertString(offset, newText, attr);
87 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
93 fb.remove(offset, length);
96 insertString(fb, offset, text, attr);
H A DTimeDocumentFilter.java52 public void insertString(DocumentFilter.FilterBypass fb, int offset, argument
57 fb.insertString(offset, text.replaceAll("[^0-9]", ""), attr);
58 trimPosition(fb, text, offset, previousLength);
62 public void remove(DocumentFilter.FilterBypass fb, int offset, argument
66 String text = fb.getDocument().getText(offset, length);
70 fb.remove(offset, length);
74 // index value is relative to offset
77 fb.remove(offset, index);
81 fb.remove(offset + index + 1, length - index -1);
88 public void replace(DocumentFilter.FilterBypass fb, int offset, argument
112 trimPosition(DocumentFilter.FilterBypass fb, String newText, int offset, int previousLength) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DRelativeInheritedDefaultBehaviorProvider.java43 /** The type of managed object expected at the relative offset. */
47 * The relative offset (where 1 = parent, 2 = grandparent) of the
50 private final int offset; field in class:RelativeInheritedDefaultBehaviorProvider
67 * @param offset
72 * If the offset is less than 0.
75 AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset)
79 // offset is 0).
80 if (offset < 0) {
81 throw new IllegalArgumentException("Negative offset");
85 this.offset
74 RelativeInheritedDefaultBehaviorProvider( AbstractManagedObjectDefinition<?, ?> d, String propertyName, int offset) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/security/util/
H A DDerInputBuffer.java50 DerInputBuffer(byte[] buf, int offset, int len) { argument
51 super(buf, offset, len);
/forgerock/openam/openam-shared/src/main/java/com/iplanet/security/util/
H A DDerInputBuffer.java50 DerInputBuffer(byte[] buf, int offset, int len) { argument
51 super(buf, offset, len);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DPermutationGenerator.java122 static private long bytesToLong(byte[] bytes, int offset) { argument
123 int bound = offset + Math.min(bytes.length - offset, 8);
125 for (int i = offset; i < bound; ++i) {

Completed in 138 milliseconds

123456789