Searched defs:spaces (Results 1 - 25 of 65) sorted by relevance

123

/external/e2fsprogs/lib/ext2fs/
H A Dprogress.c18 static char spaces[80], backspaces[80]; variable
43 memset(spaces, ' ', sizeof(spaces)-1);
44 spaces[sizeof(spaces)-1] = 0;
92 fprintf(stdout, "%.*s", (2*progress->log_max)+1, spaces);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java31 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
36 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
59 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
H A DStringUtil.java30 * Pad the specified String with spaces to the right to the specified width. If the length
35 * @return a String of at least width characters, padded on the right with spaces as necessary
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
43 * Pad the specified String with spaces to the left to the specified width. If the length
48 * @return a String of at least width characters, padded on the left with spaces as necessary
52 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
82 private static String spaces(int numSpaces) { method in class:StringUtil
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializationHandler.java85 * Set the number of spaces to indent for each indentation level.
86 * @param spaces the number of spaces to indent for each indentation level.
88 public void setIndentAmount(int spaces); argument
/external/clang/tools/diagtool/
H A DDiagTool.cpp58 unsigned spaces = (maxName + 3) - (it->size()); local
59 for (unsigned i = 0; i < spaces; ++i)
/external/google-breakpad/src/common/linux/
H A Dlinux_libc_support.cc229 const char spaces[] = " \t\f\n\r\t\v"; local
230 for (size_t i = 0; i < sizeof(spaces); i++) {
231 if (ch == spaces[i])
/external/valgrind/callgrind/
H A Dcallstack.c276 const HChar spaces[][41] = { local
287 VG_(printf)("%s> %s(0x%x, 0x%x, ...) [%s / %#lx]\n", spaces[s%4]+40-s, bb->fn->name,
/external/boringssl/src/crypto/asn1/
H A Dtasn_prn.c408 static char spaces[] = " "; local
409 const int nspaces = sizeof(spaces) - 1;
418 if (BIO_write(out, spaces, nspaces) != nspaces)
422 if (BIO_write(out, spaces, indent) != indent)
/external/icu/icu4c/source/test/thaitest/
H A Dthaitest.cpp23 * spaces inserted where the word breaks are. It computes a copy of
24 * the text without spaces and uses a word instance of a Thai BreakIterator
33 * This class is a break iterator that counts words and spaces.
88 // spaces - pointer to a UChar array for the text with spaces
89 // spaceCount - the number of characters in the spaces array
90 // noSpaces - pointer to a UChar array for the text without spaces
93 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose);
96 // returns the number of breaks that are in the spaces array
101 // array but aren't in the spaces arra
159 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose) argument
214 compareWordBreaks(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount) argument
366 crunchSpaces(const UChar *spaces, int32_t count, int32_t &nonSpaceCount) argument
465 const UChar *spaces, *noSpaces; local
[all...]
/external/iproute2/tc/
H A Dtc_class.c190 char spaces[100] = {0}; local
216 sprintf(spaces, "%-*s", add_spaces, "");
217 strcat(buf, spaces);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth); local
286 for (unsigned i = 0; i < spaces; i++)
345 unsigned spaces = update_branch_depth(inst->RGB.Opcode != RC_OPCODE_NOP ? local
348 for (unsigned i = 0; i < spaces; i++)
385 for (unsigned i = 0; i < spaces; i++)
424 for (unsigned i = 0; i < spaces; i++)
454 for (unsigned i = 0; i < spaces; i++)
/external/squashfs-tools/squashfs-tools/
H A Dprogressbar.c96 int max_digits, used, hashes, spaces; local
105 spaces = columns - used - hashes;
132 while(spaces --)
/external/bison/src/
H A DAnnotationList.c577 AnnotationList__debug (AnnotationList const *self, size_t nitems, int spaces) argument
585 for (j = 0; j < spaces; ++j)
601 for (j = 0; j < spaces+2; ++j)
/external/dng_sdk/source/
H A Ddng_exif.cpp2859 int32 spaces = 4; local
2864 while (spaces-- > 0)
2871 spaces = 9 - (int32) strlen (name);
H A Ddng_ifd.cpp1362 int32 spaces = 4; local
1367 while (spaces-- > 0)
1374 spaces = 9 - (int32) strlen (name);

Completed in 559 milliseconds

123