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

1 2 3 4 5 6 7 8

  /toolchain/binutils/binutils-2.27/libiberty/
spaces.c 1 /* Allocate memory region filled with spaces.
22 @deftypefn Extension char* spaces (int @var{count})
25 number of spaces and null terminated. The returned pointer is
48 spaces (int count) function
  /external/e2fsprogs/lib/ext2fs/
progress.c 19 static char spaces[80], backspaces[80]; variable
50 memset(spaces, ' ', sizeof(spaces)-1);
51 spaces[sizeof(spaces)-1] = 0;
99 fprintf(stdout, "%.*s", (2*progress->log_max)+1, spaces);
  /art/test/117-nopatchoat/
nopatchoat.cc 39 std::vector<gc::space::ImageSpace*> spaces = local
41 return !spaces.empty() && spaces[0]->GetImageHeader().GetPatchDelta() == 0;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
StringUtil.java 30 * 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/clang/tools/diagtool/
DiagTool.cpp 58 unsigned spaces = (maxName + 3) - (it->size()); local
59 for (unsigned i = 0; i < spaces; ++i)
  /external/google-breakpad/src/common/linux/
linux_libc_support.cc 229 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/skia/tests/
ImageIsOpaqueTest.cpp 51 sk_sp<SkColorSpace> spaces[] = { local
62 for (auto& cs : spaces) {
  /external/skqp/tests/
ImageIsOpaqueTest.cpp 51 sk_sp<SkColorSpace> spaces[] = { local
62 for (auto& cs : spaces) {
  /external/annotation-tools/annotation-file-utilities/tests/
Receivers.java 9 public void spaces() {} method in class:Receivers
13 public void spaces(int i) {} method in class:Receivers
21 public void spaces(Receivers2 this) {} method in class:Receivers2
25 public void spaces(Receivers2 this, int i) {} method in class:Receivers2
  /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/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_print.c 284 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/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/squashfs-tools/squashfs-tools/
progressbar.c 96 int max_digits, used, hashes, spaces; local
105 spaces = columns - used - hashes;
132 while(spaces --)
  /external/unicode/
CVTUTF7.C 43 static char spaces[] = " \011\015\012"; /* space, tab, return, line feed */ variable
65 limit = strlen(spaces);
67 mustshiftopt[spaces[i]] = mustshiftsafe[spaces[i]] = 0;
  /external/valgrind/callgrind/
callstack.c 276 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,
  /system/tpm/tpm_manager/server/
tpm2_nvram_test.cc 528 std::vector<uint32_t> spaces; local
533 EXPECT_EQ(NVRAM_RESULT_SUCCESS, tpm_nvram_->ListSpaces(&spaces));
534 EXPECT_EQ(spaces, expected_spaces);
538 std::vector<uint32_t> spaces; local
541 EXPECT_NE(NVRAM_RESULT_SUCCESS, tpm_nvram_->ListSpaces(&spaces));
  /art/oatdump/
oatdump_test.h 198 size_t spaces = 0; local
199 // Trim spaces at the start of the line.
200 for (; spaces < line_len && isspace(line[spaces]); ++spaces) {}
201 if (spaces > 0) {
202 line_len -= spaces;
203 memmove(&line[0], &line[spaces], line_len);
  /art/runtime/gc/collector/
immune_spaces_test.cc 68 // Create a bunch of dummy bitmaps since these are required to create image spaces. The bitmaps
69 // do not need to cover the image spaces though.
191 ImmuneSpaces spaces; local
197 spaces.AddSpace(&a);
198 spaces.AddSpace(&b);
200 EXPECT_TRUE(spaces.ContainsSpace(&a));
201 EXPECT_TRUE(spaces.ContainsSpace(&b));
202 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), a.Begin());
203 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit());
209 ImmuneSpaces spaces; local
297 ImmuneSpaces spaces; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 150 String spaces = new String(spaceArr); local
153 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
154 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 150 String spaces = new String(spaceArr); local
153 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
154 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
  /external/dng_sdk/source/
dng_ifd.cpp 1362 int32 spaces = 4; local
1367 while (spaces-- > 0)
1374 spaces = 9 - (int32) strlen (name);
    [all...]
  /external/doclava/src/com/google/doclava/
NavTree.java 356 String spaces = ""; local
358 spaces += " ";
360 return spaces;
  /external/golang-protobuf/proto/
text.go 52 spaces = []byte(" ")
770 if n > len(spaces) {
771 n = len(spaces)
773 w.w.Write(spaces[:n])
51 spaces = []byte(" ") var
  /external/icu/icu4c/source/test/thaitest/
thaitest.cpp 25 * spaces inserted where the word breaks are. It computes a copy of
26 * the text without spaces and uses a word instance of a Thai BreakIterator
35 * This class is a break iterator that counts words and spaces.
90 // spaces - pointer to a UChar array for the text with spaces
91 // spaceCount - the number of characters in the spaces array
92 // noSpaces - pointer to a UChar array for the text without spaces
95 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose);
98 // returns the number of breaks that are in the spaces array
103 // array but aren't in the spaces arra
467 const UChar *spaces, *noSpaces; local
    [all...]
  /external/iproute2/tc/
tc_class.c 185 char spaces[100] = {0}; local
211 sprintf(spaces, "%-*s", add_spaces, "");
212 strcat(buf, spaces);

Completed in 776 milliseconds

1 2 3 4 5 6 7 8