Searched refs:indent (Results 76 - 100 of 407) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/ldap/
H A DModifyDNRequestProtocolOp.java232 * @param indent The number of spaces from the margin that the lines should
235 public void toString(StringBuilder buffer, int indent) argument
237 StringBuilder indentBuf = new StringBuilder(indent);
238 for (int i=0 ; i < indent; i++)
H A DSearchResultReferenceProtocolOp.java187 * @param indent The number of spaces from the margin that the lines should
190 public void toString(StringBuilder buffer, int indent) argument
192 StringBuilder indentBuf = new StringBuilder(indent);
193 for (int i=0 ; i < indent; i++)
H A DBindRequestProtocolOp.java292 * @param indent The number of spaces from the margin that the lines should
295 public void toString(StringBuilder buffer, int indent) argument
297 StringBuilder indentBuf = new StringBuilder(indent);
298 for (int i=0 ; i < indent; i++)
339 saslCredentials.toHexPlusAscii(buffer, indent+4);
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/ldap/
H A DModifyDNRequestProtocolOp.java231 * @param indent The number of spaces from the margin that the lines should
234 public void toString(StringBuilder buffer, int indent) argument
236 StringBuilder indentBuf = new StringBuilder(indent);
237 for (int i=0 ; i < indent; i++)
H A DSearchResultReferenceProtocolOp.java186 * @param indent The number of spaces from the margin that the lines should
189 public void toString(StringBuilder buffer, int indent) argument
191 StringBuilder indentBuf = new StringBuilder(indent);
192 for (int i=0 ; i < indent; i++)
H A DBindRequestProtocolOp.java291 * @param indent The number of spaces from the margin that the lines should
294 public void toString(StringBuilder buffer, int indent) argument
296 StringBuilder indentBuf = new StringBuilder(indent);
297 for (int i=0 ; i < indent; i++)
338 saslCredentials.toHexPlusAscii(buffer, indent+4);
H A DLDAPAttribute.java329 * @param indent The number of spaces from the margin that the lines should
333 public void toString(StringBuilder buffer, int indent) argument
335 StringBuilder indentBuf = new StringBuilder(indent);
336 for (int i=0 ; i < indent; i++)
355 value.toHexPlusAscii(buffer, indent+4);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/
H A DModifyDNRequestProtocolOp.java224 * @param indent The number of spaces from the margin that the lines should
227 public void toString(StringBuilder buffer, int indent) argument
229 StringBuilder indentBuf = new StringBuilder(indent);
230 for (int i=0 ; i < indent; i++)
H A DBindRequestProtocolOp.java277 * @param indent The number of spaces from the margin that the lines should
280 public void toString(StringBuilder buffer, int indent) argument
282 StringBuilder indentBuf = new StringBuilder(indent);
283 for (int i=0 ; i < indent; i++)
309 buffer.append(saslCredentials.toHexPlusAsciiString(indent+4));
H A DLDAPAttribute.java330 * @param indent The number of spaces from the margin that the lines should
334 public void toString(StringBuilder buffer, int indent) argument
336 StringBuilder indentBuf = new StringBuilder(indent);
337 for (int i=0 ; i < indent; i++)
356 buffer.append(value.toHexPlusAsciiString(indent+4));
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DBindRequestProtocolOp.java292 * @param indent The number of spaces from the margin that the lines should
295 public void toString(StringBuilder buffer, int indent) argument
297 StringBuilder indentBuf = new StringBuilder(indent);
298 for (int i=0 ; i < indent; i++)
339 saslCredentials.toHexPlusAscii(buffer, indent+4);
H A DAddResponseProtocolOp.java290 * @param indent The number of spaces from the margin that the lines should
293 public void toString(StringBuilder buffer, int indent) argument
295 StringBuilder indentBuf = new StringBuilder(indent);
296 for (int i=0 ; i < indent; i++)
H A DCompareResponseProtocolOp.java291 * @param indent The number of spaces from the margin that the lines should
294 public void toString(StringBuilder buffer, int indent) argument
296 StringBuilder indentBuf = new StringBuilder(indent);
297 for (int i=0 ; i < indent; i++)
H A DDeleteResponseProtocolOp.java294 * @param indent The number of spaces from the margin that the lines should
297 public void toString(StringBuilder buffer, int indent) argument
299 StringBuilder indentBuf = new StringBuilder(indent);
300 for (int i=0 ; i < indent; i++)
H A DModifyDNResponseProtocolOp.java290 * @param indent The number of spaces from the margin that the lines should
293 public void toString(StringBuilder buffer, int indent) argument
295 StringBuilder indentBuf = new StringBuilder(indent);
296 for (int i=0 ; i < indent; i++)
H A DModifyResponseProtocolOp.java288 * @param indent The number of spaces from the margin that the lines should
291 public void toString(StringBuilder buffer, int indent) argument
293 StringBuilder indentBuf = new StringBuilder(indent);
294 for (int i=0 ; i < indent; i++)
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DBindRequestProtocolOp.java291 * @param indent The number of spaces from the margin that the lines should
294 public void toString(StringBuilder buffer, int indent) argument
296 StringBuilder indentBuf = new StringBuilder(indent);
297 for (int i=0 ; i < indent; i++)
338 saslCredentials.toHexPlusAscii(buffer, indent+4);
H A DLDAPAttribute.java329 * @param indent The number of spaces from the margin that the lines should
333 public void toString(StringBuilder buffer, int indent) argument
335 StringBuilder indentBuf = new StringBuilder(indent);
336 for (int i=0 ; i < indent; i++)
355 value.toHexPlusAscii(buffer, indent+4);
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DBindRequestProtocolOp.java292 * @param indent The number of spaces from the margin that the lines should
295 public void toString(StringBuilder buffer, int indent) argument
297 StringBuilder indentBuf = new StringBuilder(indent);
298 for (int i=0 ; i < indent; i++)
339 saslCredentials.toHexPlusAscii(buffer, indent+4);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java278 int indent;
280 indent = 5;
283 compareRequest.toString(buffer, indent);
285 StringBuilder indentBuf = new StringBuilder(indent);
286 for (i=0 ; i < indent; i++)
308 assertionValue.toHexPlusAscii(key, indent+4);
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java277 int indent;
279 indent = 5;
282 compareRequest.toString(buffer, indent);
284 StringBuilder indentBuf = new StringBuilder(indent);
285 for (i=0 ; i < indent; i++)
307 assertionValue.toHexPlusAscii(key, indent+4);
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java278 int indent;
280 indent = 5;
283 compareRequest.toString(buffer, indent);
285 StringBuilder indentBuf = new StringBuilder(indent);
286 for (i=0 ; i < indent; i++)
308 assertionValue.toHexPlusAscii(key, indent+4);
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java277 int indent;
279 indent = 5;
282 compareRequest.toString(buffer, indent);
284 StringBuilder indentBuf = new StringBuilder(indent);
285 for (i=0 ; i < indent; i++)
307 assertionValue.toHexPlusAscii(key, indent+4);
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java278 int indent;
280 indent = 5;
283 compareRequest.toString(buffer, indent);
285 StringBuilder indentBuf = new StringBuilder(indent);
286 for (i=0 ; i < indent; i++)
308 assertionValue.toHexPlusAscii(key, indent+4);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/protocols/ldap/
H A DTestCompareRequestProtocolOp.java250 int indent = 5;
254 compareRequest.toString(buffer, indent);
256 StringBuilder indentBuf = new StringBuilder(indent);
257 for (int i = 0 ; i < indent; i++)
267 key.append(assertionValue.toHexPlusAsciiString(indent+4));

Completed in 115 milliseconds

1234567891011>>