Searched defs:pos (Results 1 - 25 of 235) sorted by relevance

12345678910

/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DAttributeSet.java104 * @param pos
108 public Attribute getAttributeAt(int pos) { argument
109 return (Attribute) attrs.elementAt(pos);
H A DPacket.java147 * @param pos
153 public Attribute getAttributeAt(int pos) { argument
154 return attrs.getAttributeAt(pos);
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DAttributeSet.java104 * @param pos
108 public Attribute getAttributeAt(int pos) { argument
109 return (Attribute) attrs.elementAt(pos);
H A DPacket.java147 * @param pos
153 public Attribute getAttributeAt(int pos) { argument
154 return attrs.getAttributeAt(pos);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DPermutationGenerator.java99 * @param pos
106 public short itemAt(int pos) { argument
107 if (pos < 0 || pos > state.length) {
110 for (; iter <= pos; ++iter) {
116 return state[pos];
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DPermutationGenerator.java99 * @param pos
106 public short itemAt(int pos) { argument
107 if (pos < 0 || pos > state.length) {
110 for (; iter <= pos; ++iter) {
116 return state[pos];
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java71 * @param pos The starting Position in the array.
79 int pos,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
105 int pos = 1;
108 int length = getNextLength(in, pos);
109 String senderIDString = new String(in, pos, length, "UTF-8");
111 pos += length +1;
114 length = getNextLength(in, pos);
115 String destinationString = new String(in, pos, length, "UTF-8");
117 pos
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
H A DModifyMsg.java97 int pos = decodeHeader(allowedPduTypes, in);
101 decodeBody_V123(in, pos);
103 decodeBody_V4(in, pos);
214 int pos = encodedMsg.length - (encodedMods.length + 1);
215 addByteArray(encodedMods, encodedMsg, pos);
233 int pos = encodedMsg.length - (encodedMods.length + 1);
234 addByteArray(encodedMods, encodedMsg, pos);
261 int pos = encodedMsg.length - bodyLength;
262 pos = addByteArray(byteModsLen, encodedMsg, pos);
273 decodeBody_V123(byte[] in, int pos) argument
295 decodeBody_V4(byte[] in, int pos) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DByteSequenceReader.java41 private int pos = 0; field in class:ByteSequenceReader
80 byte b = sequence.byteAt(pos);
81 pos++;
161 sequence.subSequence(pos, pos + length).copyTo(b, offset);
162 pos += length;
182 int newPos = pos + 1;
188 int length = (sequence.byteAt(pos) & 0x7F);
189 if (length != sequence.byteAt(pos))
193 newPos = pos
428 position(int pos) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java160 int pos = 0;
169 for (; pos < initialLength; pos++)
171 if (!subInitial[pos].matchesRDN(dn.getRDN(pos)))
176 pos++;
182 pos++;
195 for (; pos < end; pos++)
197 if (element[0].matchesRDN(dn.getRDN(pos)))
706 parseAttributePattern(String dnString, int pos, StringBuilder attributeName) argument
1100 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java161 int pos = 0;
170 for (; pos < initialLength; pos++)
172 if (!subInitial[pos].matchesRDN(dn.getRDN(pos)))
177 pos++;
183 pos++;
196 for (; pos < end; pos++)
198 if (element[0].matchesRDN(dn.getRDN(pos)))
707 parseAttributePattern(String dnString, int pos, StringBuilder attributeName) argument
1101 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DByteSequenceReader.java39 private int pos = 0; field in class:ByteSequenceReader
78 byte b = sequence.byteAt(pos);
79 pos++;
159 sequence.subSequence(pos, pos + length).copyTo(b, offset);
160 pos += length;
180 int newPos = pos + 1;
186 int length = (sequence.byteAt(pos) & 0x7F);
187 if (length != sequence.byteAt(pos))
191 newPos = pos
454 position(int pos) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java161 int pos = 0;
170 for (; pos < initialLength; pos++)
172 if (!subInitial[pos].matchesRDN(dn.getRDN(pos)))
177 pos++;
183 pos++;
196 for (; pos < end; pos++)
198 if (element[0].matchesRDN(dn.getRDN(pos)))
707 parseAttributePattern(String dnString, int pos, StringBuilder attributeName) argument
1101 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java71 * @param pos The starting Position in the array.
79 int pos,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
105 int pos = 1;
108 int length = getNextLength(in, pos);
109 String senderIDString = new String(in, pos, length, "UTF-8");
111 pos += length +1;
114 length = getNextLength(in, pos);
115 String destinationString = new String(in, pos, length, "UTF-8");
117 pos
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
H A DModifyMsg.java97 int pos = decodeHeader(allowedPduTypes, in);
101 decodeBody_V123(in, pos);
103 decodeBody_V4(in, pos);
214 int pos = encodedMsg.length - (encodedMods.length + 1);
215 addByteArray(encodedMods, encodedMsg, pos);
233 int pos = encodedMsg.length - (encodedMods.length + 1);
234 addByteArray(encodedMods, encodedMsg, pos);
261 int pos = encodedMsg.length - bodyLength;
262 pos = addByteArray(byteModsLen, encodedMsg, pos);
273 decodeBody_V123(byte[] in, int pos) argument
295 decodeBody_V4(byte[] in, int pos) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DByteSequenceReader.java41 private int pos = 0; field in class:ByteSequenceReader
80 byte b = sequence.byteAt(pos);
81 pos++;
161 sequence.subSequence(pos, pos + length).copyTo(b, offset);
162 pos += length;
182 int newPos = pos + 1;
188 int length = (sequence.byteAt(pos) & 0x7F);
189 if (length != sequence.byteAt(pos))
193 newPos = pos
428 position(int pos) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java71 * @param pos The starting Position in the array.
79 int pos,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
105 int pos = 1;
108 int length = getNextLength(in, pos);
109 String senderIDString = new String(in, pos, length, "UTF-8");
111 pos += length +1;
114 length = getNextLength(in, pos);
115 String destinationString = new String(in, pos, length, "UTF-8");
117 pos
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
H A DModifyMsg.java97 int pos = decodeHeader(allowedPduTypes, in);
101 decodeBody_V123(in, pos);
103 decodeBody_V4(in, pos);
214 int pos = encodedMsg.length - (encodedMods.length + 1);
215 addByteArray(encodedMods, encodedMsg, pos);
233 int pos = encodedMsg.length - (encodedMods.length + 1);
234 addByteArray(encodedMods, encodedMsg, pos);
261 int pos = encodedMsg.length - bodyLength;
262 pos = addByteArray(byteModsLen, encodedMsg, pos);
273 decodeBody_V123(byte[] in, int pos) argument
295 decodeBody_V4(byte[] in, int pos) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DByteSequenceReader.java41 private int pos = 0; field in class:ByteSequenceReader
80 byte b = sequence.byteAt(pos);
81 pos++;
161 sequence.subSequence(pos, pos + length).copyTo(b, offset);
162 pos += length;
182 int newPos = pos + 1;
188 int length = (sequence.byteAt(pos) & 0x7F);
189 if (length != sequence.byteAt(pos))
193 newPos = pos
428 position(int pos) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java160 int pos = 0;
169 for (; pos < initialLength; pos++)
171 if (!subInitial[pos].matchesRDN(dn.getRDN(pos)))
176 pos++;
182 pos++;
195 for (; pos < end; pos++)
197 if (element[0].matchesRDN(dn.getRDN(pos)))
706 parseAttributePattern(String dnString, int pos, StringBuilder attributeName) argument
1100 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DByteSequenceReader.java39 private int pos = 0; field in class:ByteSequenceReader
78 byte b = sequence.byteAt(pos);
79 pos++;
159 sequence.subSequence(pos, pos + length).copyTo(b, offset);
160 pos += length;
180 int newPos = pos + 1;
186 int length = (sequence.byteAt(pos) & 0x7F);
187 if (length != sequence.byteAt(pos))
191 newPos = pos
454 position(int pos) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java161 int pos = 0;
170 for (; pos < initialLength; pos++)
172 if (!subInitial[pos].matchesRDN(dn.getRDN(pos)))
177 pos++;
183 pos++;
196 for (; pos < end; pos++)
198 if (element[0].matchesRDN(dn.getRDN(pos)))
707 parseAttributePattern(String dnString, int pos, StringBuilder attributeName) argument
1101 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
[all...]
/forgerock/opendj2/ext/ant/etc/
H A Dant-bootstrap.jar ... apache.tools.ant.Project, boolean, boolean) int pos int pos String targetName String targetDescription org.apache. ...
/forgerock/opendj-b2.6/ext/ant/etc/
H A Dant-bootstrap.jar ... apache.tools.ant.Project, boolean, boolean) int pos int pos String targetName String targetDescription org.apache. ...
/forgerock/opendj2.6.2/ext/ant/etc/
H A Dant-bootstrap.jar ... apache.tools.ant.Project, boolean, boolean) int pos int pos String targetName String targetDescription org.apache. ...

Completed in 480 milliseconds

12345678910