Searched refs:spaces (Results 1 - 25 of 121) sorted by relevance

12345

/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/vixl/tools/
H A Dprinter.py83 # Append spaces to hide the previous test name.
84 spaces = __last_name_length__ - name_length
85 if spaces > 0:
86 sys.stdout.write(' ' * spaces)
/external/chromium_org/third_party/icu/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/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/clang/test/Preprocessor/
H A Dtraditional-cpp.c33 bracket(| spaces |)
34 /* CHECK: {{^}}>>>| spaces |<<<{{$}}
46 /* Deliberately check a leading newline with spaces on that line. */
69 bracket2(spaces)
71 * CHECK-NOT: {{^}}>>> spaces <<<{{$}}
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dvpx-astyle.sh3 astyle --style=java --indent=spaces=2 --indent-switches\
/external/libvpx/libvpx/tools/
H A Dvpx-astyle.sh3 astyle --style=java --indent=spaces=2 --indent-switches\
/external/proguard/bin/
H A Dproguard.bat6 REM Note: when passing file names containing spaces to this script,
H A Dproguardgui.bat6 REM Note: when passing file names containing spaces to this script,
H A Dretrace.bat6 REM Note: when passing file names containing spaces to this script,
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DTextHtmlFunction.java205 int spaces = 0;
222 // Ignore spaces after full stops.
224 spaces++;
229 spaces = 0;
262 if (spaces > 2) {
266 spaces = 0;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DCAVLCReader.java166 int spaces;
168 spaces = 8 - pos.length();
172 for (int i = 0; i < spaces; i++)
176 spaces = 100 - traceBuilder.length() - debugBits.length();
177 for (int i = 0; i < spaces; i++)
/external/chromium_org/content/test/plugin/
H A Dplugin_windowless_test.cc220 NPCoordinateSpace spaces[] = { NPCoordinateSpacePlugin, local
225 for (unsigned int i = 0; i < arraysize(spaces); ++i) {
226 for (unsigned int j = 0; j < arraysize(spaces); ++j) {
228 if (!(browser->convertpoint(id(), 0, 0, spaces[i], &x, &y, spaces[j])) ||
229 !(browser->convertpoint(id(), x, y, spaces[j], &round_trip_x,
230 &round_trip_y, spaces[i]))) {
/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/bison/src/
H A DAnnotationList.h125 * stderr. \c spaces spaces were printed before each line of the text.
128 int spaces);
/external/clang/tools/diagtool/
H A DDiagTool.cpp58 unsigned spaces = (maxName + 3) - (it->size()); local
59 for (unsigned i = 0; i < spaces; ++i)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
H A Dhybi00.py182 spaces = re.subn(" ", "", key_value)[1]
183 if spaces == 0:
187 '%s: Key-number is %d and number of spaces is %d',
188 key_field, key_number, spaces)
192 if key_number % spaces != 0:
194 '%s: Key-number (%d) is not an integral multiple of spaces '
195 '(%d)' % (key_field, key_number, spaces))
197 part = key_number / spaces
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
H A Dhybi00.py233 spaces = re.subn(" ", "", key_value)[1]
234 if spaces == 0:
238 '%s: Key-number is %d and number of spaces is %d',
239 key_field, key_number, spaces)
243 if key_number % spaces != 0:
245 '%s: Key-number (%d) is not an integral multiple of spaces '
246 '(%d)' % (key_field, key_number, spaces))
248 part = key_number / spaces
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g556 var spaces = 0;
560 | ( ' ' { spaces++; }
561 | '\t' { spaces += 8; spaces -= (spaces \% 8); }
564 // make a string of n spaces where n is column number - 1
565 var indentation = new Array(spaces);
566 for (var i=0; i<spaces; i++) {
/external/srec/srec/crec/
H A Dtext_parser.c128 char* spaces[24], *p; /* can't go too high here!! */ local
136 if ((size_t)num_spaces >= sizeof(spaces) / sizeof(char*))
141 spaces[num_spaces++] = p;
160 *spaces[j] = i & (1 << j) ? '_' : ' ';
176 *spaces[j] = i & (1 << j) ? '_' : ' ';
209 /* change speech codes to spaces */
217 /* trim leading spaces */
220 /* trim middle spaces */
230 /* trim ending spaces */
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DLexicon.py60 spaces = Rep1(Any(" \t\f"))
81 (spaces, IGNORE),
86 (Opt(spaces) + Opt(comment) + lineterm, IGNORE),
/external/markdown/MarkdownTest/Tests_2004/
H A DOrdered and unordered lists.text77 and using spaces:
/external/markdown/MarkdownTest/Tests_2007/
H A DOrdered and unordered lists.text77 and using spaces:
/external/markdown/tests/markdown-test/
H A Dordered-and-unordered-list.txt77 and using spaces:
/external/chromium_org/testing/
H A Dgenerate_gmock_mutant.py313 spaces = " " * subsequent_offset
318 s = spaces + s

Completed in 661 milliseconds

12345