HomeSort by relevance Sort by last modified time
    Searched refs:spaces (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /ndk/sources/android/support/src/musl-ctype/
iswspace.c 6 * minus non-breaking spaces (U+00A0, U+2007, and U+202F) and script-
11 static const wchar_t spaces[] = { local
17 if (wcschr(spaces, wc)) return 1;
  /art/runtime/gc/accounting/
mod_union_table-inl.h 34 const std::vector<space::ContinuousSpace*>& spaces = GetHeap()->GetContinuousSpaces(); local
36 for (It it = spaces.begin(); it != spaces.end(); ++it) {
53 const std::vector<space::ContinuousSpace*>& spaces = GetHeap()->GetContinuousSpaces(); local
55 for (It it = spaces.begin(); it != spaces.end(); ++it) {
  /libcore/luni/src/main/java/java/util/regex/
PatternSyntaxException.java 110 char[] spaces = new char[index]; local
111 Arrays.fill(spaces, ' ');
113 sb.append(spaces);
  /external/kernel-headers/original/linux/
stacktrace.h 14 extern void print_stack_trace(struct stack_trace *trace, int spaces);
  /external/chromium_org/third_party/icu/source/test/thaitest/
thaitest.cpp 23 * 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
465 const UChar *spaces, *noSpaces; local
    [all...]
  /external/icu4c/test/thaitest/
thaitest.cpp 23 * 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
465 const UChar *spaces, *noSpaces; local
    [all...]
  /external/clang/test/Preprocessor/
traditional-cpp.c 31 bracket(| spaces |)
32 /* CHECK: {{^}}>>>| spaces |<<<{{$}}
44 /* Deliberately check a leading newline with spaces on that line. */
67 bracket2(spaces)
69 * CHECK-NOT: {{^}}>>> spaces <<<{{$}}
  /build/core/
checktree 23 spaces = ((s.count(" ") + 1) / 3) * 2
25 while spaces > 0:
27 spaces = spaces - 1
  /external/libvpx/libvpx/tools/
vpx-astyle.sh 3 astyle --style=java --indent=spaces=2 --indent-switches\
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 6 REM Note: when passing file names containing spaces to this script,
proguardgui.bat 6 REM Note: when passing file names containing spaces to this script,
retrace.bat 6 REM Note: when passing file names containing spaces to this script,
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
StatePrettyPrinter.java 49 private void indentLine(int spaces) {
50 for (int i = 0; i < spaces; i++) {
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 205 int spaces = 0; local
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/
CAVLCReader.java 166 int spaces; local
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/
plugin_windowless_test.cc 226 NPCoordinateSpace spaces[] = { NPCoordinateSpacePlugin, local
231 for (unsigned int i = 0; i < arraysize(spaces); ++i) {
232 for (unsigned int j = 0; j < arraysize(spaces); ++j) {
234 if (!(browser->convertpoint(id(), 0, 0, spaces[i], &x, &y, spaces[j])) ||
235 !(browser->convertpoint(id(), x, y, spaces[j], &round_trip_x,
236 &round_trip_y, spaces[i]))) {