Searched defs:valueBytes (Results 1 - 16 of 16) sorted by relevance

/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DLDIFWriter.java788 * @param valueBytes The value to append to the buffer. It must not be
792 ByteSequence valueBytes)
794 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
805 * @param valueBytes The value to append to the buffer. It must not be
811 ByteSequence valueBytes, boolean isURL, boolean isBase64)
813 ensureNotNull(buffer, valueBytes);
818 if ((valueBytes == null) || (valueBytes.length() == 0))
838 buffer.append(valueBytes.toString());
843 buffer.append(valueBytes
791 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
810 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java2282 * @param valueBytes The binary representation of the attribute value for
2288 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
2291 if ((valueBytes == null) || ((length = valueBytes.length()) == 0))
2299 switch (valueBytes.byteAt(0))
2309 if ((length > 1) && (valueBytes.byteAt(length-1) == 0x20))
2318 for (int i = 0; i < valueBytes.length(); i++)
2320 b = valueBytes.byteAt(i);
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DLDIFWriter.java788 * @param valueBytes The value to append to the buffer. It must not be
792 ByteSequence valueBytes)
794 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
805 * @param valueBytes The value to append to the buffer. It must not be
811 ByteSequence valueBytes, boolean isURL, boolean isBase64)
813 ensureNotNull(buffer, valueBytes);
818 if ((valueBytes == null) || (valueBytes.length() == 0))
838 buffer.append(valueBytes.toString());
843 buffer.append(valueBytes
791 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
810 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java2282 * @param valueBytes The binary representation of the attribute value for
2288 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
2291 if ((valueBytes == null) || ((length = valueBytes.length()) == 0))
2299 switch (valueBytes.byteAt(0))
2309 if ((length > 1) && (valueBytes.byteAt(length-1) == 0x20))
2318 for (int i = 0; i < valueBytes.length(); i++)
2320 b = valueBytes.byteAt(i);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DLDIFWriter.java788 * @param valueBytes The value to append to the buffer. It must not be
792 ByteSequence valueBytes)
794 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
805 * @param valueBytes The value to append to the buffer. It must not be
811 ByteSequence valueBytes, boolean isURL, boolean isBase64)
813 ensureNotNull(buffer, valueBytes);
818 if ((valueBytes == null) || (valueBytes.length() == 0))
838 buffer.append(valueBytes.toString());
843 buffer.append(valueBytes
791 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
810 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java2320 * @param valueBytes The binary representation of the attribute value for
2326 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
2329 if ((valueBytes == null) || ((length = valueBytes.length()) == 0))
2337 switch (valueBytes.byteAt(0))
2347 if ((length > 1) && (valueBytes.byteAt(length-1) == 0x20))
2356 for (int i = 0; i < valueBytes.length(); i++)
2358 b = valueBytes.byteAt(i);
/forgerock/opendj2/src/server/org/opends/server/util/
H A DLDIFWriter.java728 * @param valueBytes The value to append to the buffer. It must not be
732 ByteSequence valueBytes)
734 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
745 * @param valueBytes The value to append to the buffer. It must not be
751 ByteSequence valueBytes, boolean isURL, boolean isBase64)
753 ensureNotNull(buffer, valueBytes);
758 final boolean valueIsEmpty = valueBytes == null || valueBytes.length() == 0;
764 buffer.append(valueBytes.toString());
772 buffer.append(valueBytes
731 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
750 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java2260 * @param valueBytes The binary representation of the attribute value for
2266 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
2269 if ((valueBytes == null) || ((length = valueBytes.length()) == 0))
2277 switch (valueBytes.byteAt(0))
2287 if ((length > 1) && (valueBytes.byteAt(length-1) == 0x20))
2296 for (int i = 0; i < valueBytes.length(); i++)
2298 b = valueBytes.byteAt(i);
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DLDIFWriter.java728 * @param valueBytes The value to append to the buffer. It must not be
732 ByteSequence valueBytes)
734 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
745 * @param valueBytes The value to append to the buffer. It must not be
751 ByteSequence valueBytes, boolean isURL, boolean isBase64)
753 ensureNotNull(buffer, valueBytes);
758 final boolean valueIsEmpty = valueBytes == null || valueBytes.length() == 0;
764 buffer.append(valueBytes.toString());
772 buffer.append(valueBytes
731 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
750 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java2260 * @param valueBytes The binary representation of the attribute value for
2266 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
2269 if ((valueBytes == null) || ((length = valueBytes.length()) == 0))
2277 switch (valueBytes.byteAt(0))
2287 if ((length > 1) && (valueBytes.byteAt(length-1) == 0x20))
2296 for (int i = 0; i < valueBytes.length(); i++)
2298 b = valueBytes.byteAt(i);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DLDIFWriter.java721 * @param valueBytes The value to append to the buffer. It must not be
725 ByteSequence valueBytes)
727 appendLDIFSeparatorAndValue(buffer, valueBytes, false, false);
738 * @param valueBytes The value to append to the buffer. It must not be
744 ByteSequence valueBytes, boolean isURL, boolean isBase64)
746 ifNull(buffer, valueBytes);
751 final boolean valueIsEmpty = valueBytes == null || valueBytes.length() == 0;
757 buffer.append(valueBytes.toString());
765 buffer.append(valueBytes
724 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes) argument
743 appendLDIFSeparatorAndValue(StringBuilder buffer, ByteSequence valueBytes, boolean isURL, boolean isBase64) argument
[all...]
H A DStaticUtils.java1158 * @param valueBytes The binary representation of the attribute value for
1164 public static boolean needsBase64Encoding(ByteSequence valueBytes) argument
1167 if (valueBytes == null || ((length = valueBytes.length()) == 0))
1175 switch (valueBytes.byteAt(0))
1185 if (length > 1 && valueBytes.byteAt(length - 1) == 0x20)
1194 for (int i = 0; i < valueBytes.length(); i++)
1196 b = valueBytes.byteAt(i);
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...

Completed in 84 milliseconds