HomeSort by relevance Sort by last modified time
    Searched refs:space (Results 276 - 300 of 1290) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/net_export/
net_export.css 31 white-space: pre-wrap;
  /external/chromium_org/third_party/WebKit/Source/core/css/
quirks.css 32 /* Tables reset both line-height and white-space in quirks mode. */
35 white-space: normal;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Token.cpp 40 void Token::setHasLeadingSpace(bool space)
42 if (space)
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
menu.css 9 white-space: nowrap;
  /external/e2fsprogs/lib/quota/
mkquota.h 50 qsize_t space);
52 qsize_t space);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antenv.cmd 39 when mode = 'a' then args = space(args param, 1)
40 when mode = 'c' then cp = space(cp param, 1)
41 when mode = 'l' then lcp = space(lcp param, 1)
42 when mode = 'o' then opts = space(opts param, 1)
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.rl 89 main := space* item (space* '|' space* item)* space* ('|'|']')?;
  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
is_1.pass.cpp 26 assert(f.is(F::space, ' '));
27 assert(!f.is(F::space, 'A'));
  /external/llvm/test/MC/ARM/
directive-even.s 15 .space 5
33 .space 15
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
is_1.pass.cpp 26 assert(f.is(F::space, ' '));
27 assert(!f.is(F::space, 'A'));
  /ndk/tests/build/issue42841-LOCAL_PATH/jni/
Android.mk 1 # Note that the line LOCAL_PATH ends with trailing space and
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
is_many.pass.cpp 38 assert(!(m[0] & F::space));
52 assert( (m[1] & F::space));
66 assert(!(m[2] & F::space));
80 assert(!(m[3] & F::space));
94 assert(!(m[4] & F::space));
108 assert(!(m[5] & F::space));
122 assert(!(m[6] & F::space));
147 assert(!(m[0] & F::space));
161 assert( (m[1] & F::space));
175 assert(!(m[2] & F::space));
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
is_many.pass.cpp 38 assert(!(m[0] & F::space));
52 assert( (m[1] & F::space));
66 assert(!(m[2] & F::space));
80 assert(!(m[3] & F::space));
94 assert(!(m[4] & F::space));
108 assert(!(m[5] & F::space));
122 assert(!(m[6] & F::space));
147 assert(!(m[0] & F::space));
161 assert( (m[1] & F::space));
175 assert(!(m[2] & F::space));
    [all...]
  /art/runtime/gc/accounting/
remembered_set.cc 28 #include "gc/space/space.h"
58 // Clear dirty cards in the space and insert them into the dirty card set.
66 space::ContinuousSpace* target_space,
94 space::ContinuousSpace* const target_space_;
103 space::ContinuousSpace* target_space,
118 space::ContinuousSpace* const target_space_;
125 space::ContinuousSpace* target_space, void* arg) {
139 // a reference to the target space. So, remove it from the dirty
147 // space from the dirty card set
    [all...]
  /art/runtime/gc/space/
large_object_space_test.cc 22 namespace space { namespace in namespace:art::gc
39 los = space::LargeObjectMapSpace::Create("large object space");
41 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
129 los = space::LargeObjectMapSpace::Create("large object space");
131 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
135 ThreadPool thread_pool("Large object space test thread pool", kNumThreads)
    [all...]
  /external/chromium_org/third_party/libevent/test/
bench.c 85 int *cp, space; local
98 space = num_pipes / num_active;
99 space = space * 2;
101 write(pipes[i * space + 1], "e", 1);
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_malloc.h 128 * Statistics structure headers for user space. The kern.malloc sysctl
187 #define MALLOC(space, cast, size, type, flags) \
188 ((space) = (cast)malloc((u_long)(size))); \
191 memset(space,0,size); \
224 #define MALLOC(space, cast, size, type, flags) \
225 ((space) = (cast)malloc((u_long)(size), (type), (flags)))
  /external/llvm/lib/Support/
regexec.c 113 #define STATEVARS long vn; char *space
114 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
115 if ((m)->space == NULL) return(REG_ESPACE); \
117 #define STATETEARDOWN(m) { free((m)->space); }
118 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
  /ndk/sources/host-tools/ndk-stack/regex/
regexec.c 111 #define STATEVARS long vn; char *space
112 #define STATESETUP(m, nv) { (m)->space = (char*)malloc((nv)*(m)->g->nstates); \
113 if ((m)->space == NULL) return(REG_ESPACE); \
115 #define STATETEARDOWN(m) { free((m)->space); }
116 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
  /ndk/sources/host-tools/sed-4.2.1/sed/
fmt.c 123 short space; /* the size of the following space */ member in struct:Word
151 static void put_space P_ ((int space));
160 /* Space for the paragraph text. */
163 /* End of space for the paragraph text. */
328 /* Scan inter-word space. */
332 word_limit->space = in_column - start;
335 && (c == '\n' || word_limit->space > 1)));
337 word_limit->space = word_limit->final ? 2 : 1;
469 len += (w - 1)->space + w->length; /* w > start >= words *
    [all...]
  /external/chromium_org/v8/src/
heap-inl.h 105 AllocationSpace space = SelectSpace(size, OLD_DATA_SPACE, TENURED); local
109 { AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE);
136 AllocationSpace space = SelectSpace(size, OLD_DATA_SPACE, TENURED); local
140 { AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE);
178 AllocationSpace space,
188 return AllocationResult::Retry(space);
196 if (NEW_SPACE == space) {
201 space = retry_space;
210 if (OLD_POINTER_SPACE == space) {
212 } else if (OLD_DATA_SPACE == space) {
329 AllocationSpace space = TargetSpaceId(type); local
    [all...]
  /art/compiler/
image_test.cc 26 #include "gc/space/image_space.h"
118 gc::space::ContinuousSpace* space = heap->GetNonMovingSpace(); local
119 ASSERT_FALSE(space->IsImageSpace());
120 ASSERT_TRUE(space != NULL);
121 ASSERT_TRUE(space->IsMallocSpace());
122 ASSERT_GE(sizeof(image_header) + space->Size(), static_cast<size_t>(file->GetLength()));
166 gc::space::ImageSpace* image_space = heap->GetImageSpace();
  /external/chromium_org/net/proxy/
proxy_server.cc 161 // Start by finding the first space (if any).
162 std::string::const_iterator space; local
163 for (space = begin; space != end; ++space) {
164 if (HttpUtil::IsLWS(*space)) {
169 // Everything to the left of the space is the scheme.
170 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space);
172 // And everything to the right of the space is the
174 return FromSchemeHostAndPort(scheme, space, end)
    [all...]
  /external/kernel-headers/original/uapi/linux/
tipc_config.h 229 * of the request failure. To simplify error processing (and to save space)
262 static inline int TLV_OK(const void *tlv, __u16 space)
273 return (space >= TLV_SPACE(0)) &&
274 (ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space);
277 static inline int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type)
279 return TLV_OK(tlv, space) &&
308 void *data, __u32 space)
311 list->tlv_space = space;
  /external/srec/make/asr/
Makefile.defs 232 $(subst $(space),|,'Failed to select operating system with $$(ASR_OS) == "$(ASR_$(ASR_OS))"')
299 $(subst $(space),|,'Failed to select operating system with $$(ASR_HOST_OS) == "$(ASR_HOST_OS)"')
365 $(subst $(space),|,'Failed to select operating system with $$(ASR_TARGET_OS) == "$(ASR_TARGET_OS)"')
439 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"')
461 $(subst $(space),|,\
482 $(subst $(space),|,\
544 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"')
565 $(subst $(space),|,\
585 $(subst $(space),|,\
645 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"'
    [all...]

Completed in 1406 milliseconds

<<11121314151617181920>>