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

12

/external/webkit/Source/WebCore/inspector/front-end/
H A DTextEditorModel.js146 var spaces = [ " ", " ", " ", " "]; variable
151 line = line.substring(0, index) + spaces[index % 4] + line.substring(index + 1);
/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/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
H A DConvertPoint.cpp60 static const NPCoordinateSpace spaces[] = { NPCoordinateSpacePlugin, NPCoordinateSpaceWindow, NPCoordinateSpaceFlippedWindow, NPCoordinateSpaceScreen, NPCoordinateSpaceFlippedScreen }; local
62 static const size_t numSpaces = sizeof(spaces) / sizeof(spaces[0]);
65 if (!testConvert(1234, 5678, spaces[i], spaces[j]))
/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/valgrind/main/callgrind/
H A Dcallstack.c270 char spaces[][41] = { " . . . . . . . . . .", local
280 VG_(printf)("%s> %s(0x%x, 0x%x, ...) [%s / %#lx]\n", spaces[s%4]+40-s, bb->fn->name,
/external/icu4c/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/openssl/crypto/asn1/
H A Dtasn_prn.c404 static char spaces[] = " "; local
405 const int nspaces = sizeof(spaces) - 1;
414 if (BIO_write(out, spaces, nspaces) != nspaces)
418 if (BIO_write(out, spaces, indent) != indent)
/external/qemu/android/
H A Dconfig.c415 static const char spaces[10] = " "; local
417 writer_write(w,spaces,10);
421 writer_write(w,spaces,margin);
/external/chromium/net/websockets/
H A Dwebsocket_handshake_handler.cc110 uint32 spaces = 0; local
117 ++spaces;
120 // spaces should not be zero in valid handshake request.
121 if (spaces == 0)
123 key_number /= spaces;
/external/chromium/net/server/
H A Dhttp_server.cc55 int spaces = 0; local
60 spaces++;
62 if (spaces == 0)
67 return htonl(static_cast<uint32>(number / spaces));
/external/iptables/iptables/
H A Diptables-xml.c506 char *spaces = strchr(argv[arg], ' '); local
508 if (spaces || argvattr[arg])
512 if (spaces || argvattr[arg])
811 /* two spaces? */
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c50 static const char* spaces(int n) { function
267 printf("%strying arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
306 printf("%smatched arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
348 printf("%sdone trying arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
374 printf("%strying arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
418 printf("%smatched arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
459 printf("%sdone trying arc %d %p ilabel%d(%s) olabel %d\n", spaces(debug_depth), atok-debug_base_arc_token, atok,
/external/e2fsprogs/e2fsck/
H A Dunix.c397 static char bar[128], spaces[128]; variable
418 printf("%s%s\r%s", ctx->start_meta, spaces + (sizeof(spaces) - 80),
474 spaces + (sizeof(spaces) - (dpywidth - i + 1)));
674 memset(spaces, ' ', sizeof(spaces)-1);
/external/icu4c/tools/ctestfw/
H A Dctest.c410 int spaces = FLAG_INDENT-(depth-1); local
411 log_testinfo_i("} %*s[OK] ", spaces, "---");
417 int spaces = FLAG_INDENT-(strlen(root->name)+depth); local
418 if(spaces<0) spaces=0;
419 log_testinfo(" %*s[OK] ", spaces,"---");
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSONObject.cpp150 // If the space value is a number, create a gap string with that number of spaces.
160 UChar spaces[maxGapLength]; local
162 spaces[i] = ' ';
163 return UString(spaces, count);
167 UString spaces = space.getString(exec); local
168 if (spaces.length() > maxGapLength) {
169 spaces = spaces.substringSharingImpl(0, maxGapLength);
171 return spaces;
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.cpp587 char spaces[256]; local
588 memset(spaces, 0, 256);
590 spaces[i] = ' ';
607 spaces, m_surface, m_haveClip ? "CLIP LAYER" : "", subclassName(),
/external/v8/src/
H A Dmark-compact.cc705 PagedSpaces spaces; local
706 for (PagedSpace* space = spaces.next();
708 space = spaces.next()) {
2634 // The second pass updates pointers to new space in all spaces. It is possible
2697 // Visitor for updating pointers from live objects in old spaces to new space.
3194 // First check owner's identity because old pointer and old data spaces
3720 // spaces have been put on the free list and the smaller ones have been
3725 // spaces will not contain the free space map.
3946 // Noncompacting collections simply sweep the spaces to clear the mark
3947 // bits and free the nonlive blocks (for old and map spaces)
[all...]
H A Dheap.cc405 AllSpaces spaces; local
406 for (Space* space = spaces.next(); space != NULL; space = spaces.next()) {
658 // allocation in the other spaces.
1000 // Verify that there are no pointers to new space in spaces where we
1168 // Promoted objects can go into various old-generation spaces, and
1169 // can be allocated internally in the spaces (from the free list).
2295 // spaces.
2879 // Statically ensure that it is safe to allocate foreigns in paged spaces.
4997 AllSpaces spaces; local
6063 PagedSpaces spaces; local
6610 OldSpaces spaces; local
[all...]
/external/valgrind/main/helgrind/
H A Dhg_main.c391 Char spaces[128+1]; local
396 spaces[i] = ' ';
397 spaces[i] = 0;
399 VG_(printf)("%s", spaces);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jar ... badDimensions long n java.text.MessageFormat format String spaces int i org.eclipse.test.internal. ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 640 milliseconds

12