Searched defs:position (Results 1 - 25 of 79) sorted by relevance

1234

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/identity/
H A DIdentityAdapter.java56 public Identity getItem(int position) { argument
57 return identityList.get(position);
61 public long getItemId(int position) { argument
66 public View getView(int position, View convertView, ViewGroup parent) { argument
71 Identity identity = getItem(position);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/
H A DMechanismAdapter.java67 public Mechanism getItem(int position) { argument
68 return mechanismList.get(position);
71 public long getItemId(int position) { argument
76 public View getView(int position, View convertView, ViewGroup parent) { argument
78 int typeIndex = getItemViewType(position);
82 Mechanism mechanism = getItem(position);
93 public int getItemViewType(int position) { argument
94 return layoutTypes.indexOf(getItem(position).getInfo().getLayoutType());
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DByteSequenceReader.java40 // The current position in the byte sequence.
70 * Relative get method. Reads the byte at the current position.
72 * @return The byte at this reader's current position.
118 * reader into the given array, starting at the current position of
120 * position of this reader is then incremented by {@code length}. In
169 * the next one to five bytes at this reader's current position,
171 * position by the number of bytes read.
174 * reader's current position.
217 * starting at the current position of this reader. The position o
411 public int position() method in class:ByteSequenceReader
428 public void position(int pos) throws IndexOutOfBoundsException method in class:ByteSequenceReader
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DByteSequenceReader.java38 /** The current position in the byte sequence. */
68 * Relative get method. Reads the byte at the current position.
70 * @return The byte at this reader's current position.
116 * reader into the given array, starting at the current position of
118 * position of this reader is then incremented by {@code length}. In
167 * the next one to five bytes at this reader's current position,
169 * position by the number of bytes read.
172 * reader's current position.
215 * starting at the current position of this reader. The position o
437 public int position() method in class:ByteSequenceReader
454 public void position(int pos) throws IndexOutOfBoundsException method in class:ByteSequenceReader
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DByteSequenceReader.java40 // The current position in the byte sequence.
70 * Relative get method. Reads the byte at the current position.
72 * @return The byte at this reader's current position.
118 * reader into the given array, starting at the current position of
120 * position of this reader is then incremented by {@code length}. In
169 * the next one to five bytes at this reader's current position,
171 * position by the number of bytes read.
174 * reader's current position.
217 * starting at the current position of this reader. The position o
411 public int position() method in class:ByteSequenceReader
428 public void position(int pos) throws IndexOutOfBoundsException method in class:ByteSequenceReader
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DByteSequenceReader.java40 // The current position in the byte sequence.
70 * Relative get method. Reads the byte at the current position.
72 * @return The byte at this reader's current position.
118 * reader into the given array, starting at the current position of
120 * position of this reader is then incremented by {@code length}. In
169 * the next one to five bytes at this reader's current position,
171 * position by the number of bytes read.
174 * reader's current position.
217 * starting at the current position of this reader. The position o
411 public int position() method in class:ByteSequenceReader
428 public void position(int pos) throws IndexOutOfBoundsException method in class:ByteSequenceReader
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DByteSequenceReader.java38 /** The current position in the byte sequence. */
68 * Relative get method. Reads the byte at the current position.
70 * @return The byte at this reader's current position.
116 * reader into the given array, starting at the current position of
118 * position of this reader is then incremented by {@code length}. In
167 * the next one to five bytes at this reader's current position,
169 * position by the number of bytes read.
172 * reader's current position.
215 * starting at the current position of this reader. The position o
437 public int position() method in class:ByteSequenceReader
454 public void position(int pos) throws IndexOutOfBoundsException method in class:ByteSequenceReader
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DStringUtils.java58 * @param position The insertion position.
62 public static String insertContent(String original, int position, String content) { argument
63 return original.substring(0, position) + content + original.substring(position);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DStringUtils.java60 * @param position The insertion position.
64 public static String insertContent(String original, int position, String content) { argument
65 return original.substring(0, position) + content + original.substring(position);
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DLogFile.java315 * starting at the first position.
327 * Returns a cursor initialised to the provided record and position in file.
331 * @param position
332 * The file position this cursor points on
337 LogFileCursor<K, V> getCursorInitialisedTo(Record<K,V> record, long position) throws ChangelogException argument
339 return new LogFileCursor<K, V>(this, record, position);
540 * pointing to the provided file position.
542 * Note: there is no check to ensure that provided record and file position are
593 * Returns the file position this cursor is pointing at.
595 * @return the position o
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/changelog/file/
H A DLogFile.java315 * starting at the first position.
327 * Returns a cursor initialised to the provided record and position in file.
331 * @param position
332 * The file position this cursor points on
337 LogFileCursor<K, V> getCursorInitialisedTo(Record<K,V> record, long position) throws ChangelogException argument
339 return new LogFileCursor<K, V>(this, record, position);
540 * pointing to the provided file position.
542 * Note: there is no check to ensure that provided record and file position are
593 * Returns the file position this cursor is pointing at.
595 * @return the position o
[all...]
/forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/rest/query/
H A DQueryResponsePresentationTest.java303 private static String extractId(List<ResourceResponse> results, int position) { argument
304 return results.get(position).getId();
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DSharedPreferencesStorage.java108 private Identity getIdentityFromPosition(IdentityModel model, int position) throws MechanismCreationException{ argument
109 JSONObject data = getMapFromPosition(position);
134 .setId(position)
135 .setMechanismUID(Integer.toString(position));
142 .setId(position)
187 private JSONObject getMapFromPosition(int position) { argument
188 String key = getTokenOrder().get(position);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/file/
H A DLogFile.java326 * starting at the first position.
338 * Returns a cursor initialized to the provided record and position in file.
342 * @param position
343 * The file position this cursor points on
348 LogFileCursor<K, V> getCursorInitialisedTo(Record<K,V> record, long position) throws ChangelogException argument
350 return new LogFileCursor<>(this, record, position);
558 * pointing to the provided file position.
560 * Note: there is no check to ensure that provided record and file position are
636 * Returns the file position this cursor is pointing at.
638 * @return the position o
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DRDN.java275 * Retrieves the attribute type at the specified position in the set
278 * @param pos The position of the attribute type to retrieve.
280 * @return The attribute type at the specified position in the set
292 * position in the set of attribute types for this RDN.
294 * @param pos The position of the attribute type for which to
298 * position in the set of attribute types for this RDN.
335 * position in the set of attribute types for this RDN.
337 * @param pos The position of the attribute type for which to
341 * position in the set of attribute types for this RDN.
924 /** Returns normalized value for attribute at provided position
925 getEqualityNormalizedValue(int position) argument
1092 normalizeAVAToByteString(int position, final ByteStringBuilder builder) argument
1157 normalizeAVAToUrlSafeString(int position, StringBuilder builder) argument
[all...]
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/rest/query/
H A DQueryResponsePresentationTest.java303 private static String extractId(List<ResourceResponse> results, int position) { argument
304 return results.get(position).getId();
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java110 * position - used to iterate over the buffer when writing to a scratch file.
112 private int position = 0; field in class:IndexOutputBuffer
161 position = 0;
250 * Return a buffer's current position value.
252 * @return The buffer's current position value.
256 return position;
261 * Set a buffer's position value to the specified position.
263 * @param position The value to set the position t
265 setPosition(int position) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java94 //position - used to iterate over the buffer when writing to a scratch file.
95 private int keys = 0, position = 0; field in class:IndexOutputBuffer
138 position = 0;
228 * Return a buffer's current position value.
230 * @return The buffer's current position value.
234 return position;
239 * Set a buffer's position value to the specified position.
241 * @param position The value to set the position t
243 setPosition(int position) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java94 //position - used to iterate over the buffer when writing to a scratch file.
95 private int keys = 0, position = 0; field in class:IndexOutputBuffer
138 position = 0;
228 * Return a buffer's current position value.
230 * @return The buffer's current position value.
234 return position;
239 * Set a buffer's position value to the specified position.
241 * @param position The value to set the position t
243 setPosition(int position) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java110 * position - used to iterate over the buffer when writing to a scratch file.
112 private int position = 0; field in class:IndexOutputBuffer
161 position = 0;
250 * Return a buffer's current position value.
252 * @return The buffer's current position value.
256 return position;
261 * Set a buffer's position value to the specified position.
263 * @param position The value to set the position t
265 setPosition(int position) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java94 //position - used to iterate over the buffer when writing to a scratch file.
95 private int keys = 0, position = 0; field in class:IndexOutputBuffer
138 position = 0;
228 * Return a buffer's current position value.
230 * @return The buffer's current position value.
234 return position;
239 * Set a buffer's position value to the specified position.
241 * @param position The value to set the position t
243 setPosition(int position) argument
[all...]
/forgerock/web-agents-v4/expat/
H A Dxmltok.h112 typedef struct position { struct
H A Dxmlparse.c616 #define position (parser->m_position) macro
888 memset(&position, 0, sizeof(POSITION));
1534 XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position);
1582 XmlUpdatePosition(encoding, positionPtr, end, &position);
1673 XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position);
1822 XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position);
1873 XmlUpdatePosition(encoding, positionPtr, eventPtr, &position);
1876 return position.lineNumber + 1;
1883 XmlUpdatePosition(encoding, positionPtr, eventPtr, &position);
1886 return position
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DOnDiskMergeImporter.java1846 return mmapBuffer == null ? size : mmapBuffer.position();
1852 size = mmapBuffer.position();
1966 return region.position();
2726 void writeInt(int position, int value); argument
2728 int readInt(int position); argument
2730 long readCompactUnsignedLong(int position); argument
2732 ByteString readByteString(int position, int length); argument
2734 int writeCompactUnsignedLong(int position, long value); argument
2736 void writeByteSequence(int position, ByteSequence data); argument
2836 private int position; field in class:OnDiskMergeImporter.BufferPool.OffHeapBuffer
2862 writeInt(final int position, final int value) argument
2868 readInt(final int position) argument
2874 writeCompactUnsignedLong(final int position, long value) argument
2888 readCompactUnsignedLong(final int position) argument
2902 writeByteSequence(int position, ByteSequence data) argument
2920 readByteString(int position, int length) argument
2984 writeInt(final int position, final int value) argument
2990 readInt(final int position) argument
2996 writeCompactUnsignedLong(final int position, long value) argument
3010 readCompactUnsignedLong(final int position) argument
3024 writeByteSequence(int position, ByteSequence data) argument
3037 readByteString(int position, int length) argument
[all...]
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...

Completed in 149 milliseconds

1234