Searched defs:SPACE (Results 1 - 25 of 79) sorted by relevance

1234

/external/dtc/tests/
H A Dadd_subnode_with_nops.c32 #define SPACE 65536 macro
56 fdt = xmalloc(SPACE);
58 CHECK(fdt_create(fdt, SPACE));
70 CHECK(fdt_open_into(fdt, fdt, SPACE));
H A Dappendprop1.c32 #define SPACE 65536 macro
50 fdt = xmalloc(SPACE);
51 CHECK(fdt_create(fdt, SPACE));
58 CHECK(fdt_open_into(fdt, fdt, SPACE));
H A Dappendprop2.c32 #define SPACE 65536 macro
50 buf = xmalloc(SPACE);
51 CHECK(fdt_open_into(fdt, buf, SPACE));
H A Dsetprop.c32 #define SPACE 65536 macro
46 buf = xmalloc(SPACE);
48 err = fdt_open_into(fdt, buf, SPACE);
H A Drw_tree1.c32 #define SPACE 65536 macro
56 fdt = xmalloc(SPACE);
59 CHECK(fdt_create_empty_tree(fdt, SPACE));
H A Dsw_tree1.c32 #define SPACE 65536 macro
52 *fdt = xmalloc(SPACE);
53 } else if (*size < SPACE) {
96 size = SPACE;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNameUnicodeTransliterator.java25 static final char SPACE = ' '; field in class:NameUnicodeTransliterator
95 // Convert \s+ => SPACE. This assumes there are no
100 name.charAt(name.length()-1) != SPACE) {
101 name.append(SPACE);
117 name.charAt(len-1) == SPACE) {
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNameUnicodeTransliterator.java24 static final char SPACE = ' '; field in class:NameUnicodeTransliterator
94 // Convert \s+ => SPACE. This assumes there are no
99 name.charAt(name.length()-1) != SPACE) {
100 name.append(SPACE);
116 name.charAt(len-1) == SPACE) {
/external/ltp/pan/
H A Dreporter.h66 #define SPACE 999 macro
/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java79 private static byte SPACE = 32; field in class:QuotedPrintableCodec
90 PRINTABLE_CHARS.set(SPACE);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
H A DXMLElement.java27 private static final char SPACE = ' '; field in class:XMLElement
156 writer.write(SPACE);
/external/proguard/build/
H A Dmakefile21 SPACE:=$(NOTHING) $(NOTHING) macro
22 CLASSPATH = $(ANT_JAR):$(subst $(SPACE),:,$(GRADLE_JARS)):$(WTK_JAR)
/external/icu/icu4c/source/i18n/
H A Dbrktrans.cpp35 static const UChar SPACE = 32; // ' ' variable
44 cachedBI(NULL), cachedBoundaries(NULL), fInsertion(SPACE) {
H A Dname2uni.cpp35 static const UChar SPACE = 32; // ' ' variable
167 // Convert \s+ => SPACE. This assumes there are no
172 name.charAt(name.length()-1) != SPACE) {
173 name.append(SPACE);
188 name.charAt(len-1) == SPACE) {
/external/python/cpython2/Lib/email/
H A D_parseaddr.py18 SPACE = ' ' variable
240 returnlist = [(SPACE.join(self.commentlist), plist[0])]
248 returnlist = [(SPACE.join(self.commentlist), addrspec)]
268 returnlist = [(SPACE.join(plist) + ' (' +
271 returnlist = [(SPACE.join(plist), routeaddr)]
275 returnlist = [(SPACE.join(self.commentlist), plist[0])]
H A Dheader.py23 SPACE = ' ' variable
91 decoded[-1] = (decoded[-1][0] + SPACE + unenc, None)
/external/python/cpython2/Tools/pynche/
H A DColorDB.py32 SPACE = ' ' variable
281 SPACE.join(aliases[1:]))
H A DStripViewer.py48 SPACE = ' ' variable
309 colors = SPACE.join(chips)
/external/python/cpython3/Lib/email/
H A D_parseaddr.py18 SPACE = ' ' variable
275 returnlist = [(SPACE.join(self.commentlist), plist[0])]
283 returnlist = [(SPACE.join(self.commentlist), addrspec)]
303 returnlist = [(SPACE.join(plist) + ' (' +
306 returnlist = [(SPACE.join(plist), routeaddr)]
310 returnlist = [(SPACE.join(self.commentlist), plist[0])]
/external/python/cpython3/Tools/pynche/
H A DColorDB.py31 SPACE = ' ' variable
276 SPACE.join(aliases[1:])))
H A DStripViewer.py48 SPACE = ' ' variable
309 colors = SPACE.join(chips)
/external/syslinux/dos/
H A Dprintf.c32 #define SPACE 8 /* space if plus */ macro
66 } else if (type & SPACE) {
147 flags |= SPACE;
/external/v8/
H A DMakefile392 SPACE = $(EMPTY) $(EMPTY) macro
393 quickcheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES))
401 turbocheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES))
/external/guava/guava/src/com/google/common/base/
H A DAscii.java408 public static final byte SPACE = 32; field in class:Ascii
/external/icu/icu4c/source/common/
H A Dutil.cpp24 static const UChar SPACE = 0x0020; // ' ' variable
346 if (c == SPACE) {

Completed in 3356 milliseconds

1234