HomeSort by relevance Sort by last modified time
    Searched full:space (Results 251 - 275 of 3731) sorted by null

<<11121314151617181920>>

  /external/zlib/contrib/puff/
puff.h 29 unsigned long *destlen, /* amount of output space */
  /external/zlib/
inflate.h 43 MATCH, /* o: waiting for output space to copy string */
44 LIT, /* o: waiting for output space to write literal */
111 code FAR *next; /* next available space in codes[] */
114 code codes[ENOUGH]; /* space for code tables */
  /frameworks/base/core/java/android/text/method/
HideReturnsTransformationMethod.java 28 * to be hidden by displaying them as zero-width non-breaking space
  /frameworks/base/core/jni/android/opengl/
poly.h 35 float sx, sy, sz, sw; /* screen space position (sometimes homo.) */
  /frameworks/base/graphics/java/com/android/internal/graphics/
NativeUtils.java 27 // This space intentionally left blank.
  /frameworks/base/libs/rs/
rsLocklessFifo.cpp 89 // Add space for command header and loop token;
170 //dumpState("make space");
177 // Toss in a reset then the normal wait for space will do the rest.
183 // it will fit here so we just need to wait for space.
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
memblock.cpp 93 assert (cdata() && "Internal error: space allocated, but the pointer is NULL");
94 assert (data() && "Internal error: read-only block is marked as allocated space");
132 /// reduce allocated memory. If you think you are wasting space, call
133 /// deallocate and start over. To avoid wasting space, use the block for
  /frameworks/base/opengl/java/android/opengl/
Visibility.java 29 * @param ws the world space to screen space transform matrix, as an OpenGL
75 * world space that is visible in the view.
78 * world-space coordinates. R is the radius of the sphere.
  /packages/apps/Gallery/res/values/
attrs.xml 29 <!-- Weather we keep the space in both ends -->
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
safe-ctype.h 59 _sch_isblank = 0x0001, /* space \t */
65 _sch_isspace = 0x0040, /* space \t \n \r \f \v */
72 _sch_isnvsp = 0x0800, /* space \t \f \v \0 */
78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */
  /build/core/
node_fns.mk 98 space := $(empty) $(empty) macro
102 $(eval h := |||$(subst $(space),|||,$(strip $(1)))|||) \
103 $(eval h := $(subst |||$(strip $(2))|||,|||$(space)|||,$(h))) \
105 $(subst |||,$(space),$(h)) \
213 # $(foreach _inc,$(_included),$(eval $(warning $(space)$(space)$(space)includes: $(_inc)))),)
  /external/icu4c/common/
util.h 82 * Skip over a sequence of zero or more white space characters at pos.
83 * @param advance if true, advance pos to the first non-white-space
86 * @return the index of the first non-white-space character at or
132 * successful, the offset of the next non-space character is
135 * will match their uppercase equivalents as well. A space
240 * Get the set of "white space" characters in the sense of ICU rule
251 * Is this character a "white space" in the sense of ICU rule parsers?
  /external/opencore/pvmi/pvmf/include/
pvmi_config_and_capability.h 119 * This method defines the space of a context.When a context is created, its space is the gamut
120 * of capabilities of the component.This API defines the new space of the context as the
121 * intersection of the current space with the space defined by the parameters.
130 * PVMFFailure if there is not intersection between the parameter space and the space of the context.
  /external/webkit/WebCore/platform/graphics/chromium/
GlyphPageTreeNodeChromiumWin.cpp 52 // Lazily initializes space glyph
58 static wchar_t space = ' '; local
59 GetGlyphIndices(dc, &space, 1, spaceGlyph, 0);
140 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled.
146 // When this character should be a space, we ignore whatever the font
147 // says and use a space. Otherwise, if fonts don't map one of these
148 // space or zero width glyphs, we will get a box.
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 45 * storage space on the device. If the free storage on device is less
50 * storage space.
54 * on storage space. The amount of free storage on the device is
100 * Handler that checks the amount of disk space on the device and sends a
101 * notification if the device runs low on disk space
268 * Constructor to run service. initializes the disk space threshold value
292 * an error dialog indicating low disk space and launch the Installer
  /development/pdk/docs/porting/
power_management.jd 40 <p>If the suspend operation has already started when locking a wakelock, the system will abort the suspend operation as long it has not already reached the <code>suspend_late</code> stage. This means that locking a wakelock from an interrupt handler or a freezeable thread always works, but if you lock a wakelock from a <code>suspend_late</code> handler, you must also return an error from that handler to abort suspend. You can use wakelocks to allow the user-space to decide which keys should wake the full system and turn on the screen. Use <code>set_irq_wake</code> or a platform-specific API to ensure that the keypad interrupt wakes up the CPU. Once the keypad driver has resumed, the sequence of events can look like this:</p>
50 <li>The user-space input-event thread returns from select/poll, locks the
54 <li>The user-space input-event thread returns from read. It determines that the
94 <a name="userspaceAPI"></a><h3>User-space API</h3>
96 <p> Do not use randomly generated wakelock names as there is no API to free a user-space wakelock.</p>
159 <p>User space native libraries (any hardware function in <code>//device/lib/hardware/</code> meant to serve as supporting libraries for Android runtime) should never call into Android Power Management directly (see the image above). Bypassing the power management policy in the Android runtime will destabilize the system.</p>
167 <p>You can register Kernel-level drivers with the Android Power Manager driver so that they're notified immediately before power down or after power up. For example, you might set a display driver to completely power down when a request comes in to power down from the user space (see the Android MSM MDDI display driver for a sample implementation).</p>
178 <p>The early-suspend API allows drivers to get notified when user-space writes to <code>/sys/power/request_state</code> to indicate that the user visible sleep state should change. Suspend handlers are called in order of low to high (4 - 1 below) and resume handlers are called in order of high to low (1 - 4 below).</p>
187 <li>on suspend: this level notifies user-space that it should stop accessing the framebuffer and it waits for it to complete.</li>
188 <li>on resume: it notifies user-space that it should resume screen access. Two methods are provided, console switch or a sysfs interface (…)
    [all...]
  /external/bzip2/
bz-fo.xsl 40 white-space-collapse="false" text-align="start"
50 white-space-collapse="false" text-align="start"
53 space-before="0em" space-after="0em">
136 space-after.minimum="0.2em"
137 space-after.optimum="0.4em"
138 space-after.maximum="0.6em">
261 <xsl:attribute name="space-before.optimum">
264 <xsl:attribute name="space-before.minimum">
268 <xsl:attribute name="space-before.maximum"
    [all...]
  /external/kernel-headers/original/linux/
mtio.h 27 #define MTFSF 1 /* forward space over FileMark,
30 #define MTBSF 2 /* backward space FileMark (position before FM) */
31 #define MTFSR 3 /* forward space record */
32 #define MTBSR 4 /* backward space record */
38 #define MTBSFM 10 /* +backward space FileMark, position at FM */
39 #define MTFSFM 11 /* +forward space FileMark, position at FM */
56 #define MTFSS 25 /* space forward over setmarks */
57 #define MTBSS 26 /* space backward over setmarks */
159 unsigned int mt_rawsize; /* raw tape space consumed, in kb */
179 void __user *mt_data; /* User space buffer: must be 29kb *
    [all...]
  /external/stlport/test/unit/
ctype_facets_test.cpp 37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') );
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') );
62 CPPUNIT_ASSERT( (res[2] & ctype_base::space) == 0 );
65 CPPUNIT_ASSERT( (res[3] & ctype_base::space) != 0 );
181 CPPUNIT_CHECK( wct.is(ctype_base::space, L' ') );
182 CPPUNIT_CHECK( !wct.is(ctype_base::space, L'2') );
206 CPPUNIT_CHECK( (res[2] & ctype_base::space) == 0 );
209 CPPUNIT_CHECK( (res[3] & ctype_base::space) != 0 );
445 CPPUNIT_CHECK(cfacet_byname.is(ctype_base::space, c) == cfacet.is(ctype_base::space, c))
    [all...]
money_facets_test.cpp 118 // space after currency
119 if (intl_fmp.pos_format().field[fieldIndex] == money_base::space ||
122 // is separator, so if format has space on this place, it should
152 // space
153 if (intl_fmp.pos_format().field[fieldIndex] == money_base::space ) {
163 //as space cannot be last the only left format can be none:
213 if (dom_fmp.neg_format().field[fieldIndex] == money_base::space ||
233 //space cannot be last:
235 dom_fmp.neg_format().field[fieldIndex] == money_base::space) {
317 if (dom_fmp.neg_format().field[fieldIndex] == money_base::space ||
    [all...]
  /external/quake/
README 45 Quake needs about 20 MB of space to store its data files. Quake files go on an external
90 Press space bar to bring up the main menu.
102 Alt Space TAB +showscores Shows scores in multiplayer games
105 space SPACE +jump
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
aout.h 280 fprintf (STREAM, "\t.space\t%d\n", (int) (NBYTES))
311 `.space' into the bss segment. Note that this is *bad* practice,
313 COMMON space but merely STATIC BSS space. */
321 fprintf (STREAM, "\t.space\t%d\n", (int)(SIZE)); \
  /frameworks/base/core/java/android/widget/
LinearLayout.java 36 * grow to fill up any remaining space in the layout by setting the <em>weight</em> member of
289 * available space by giving it a layout_weight of 0.5 and setting the
314 * @param widthMeasureSpec Horizontal space requirements as imposed by the parent.
315 * @param heightMeasureSpec Vertical space requirements as imposed by the parent.
361 // leftover space. These views will get measured again down below if
362 // there is any leftover space.
370 // child wanted to stretch to fill available space.
379 // use all available space (and we will shrink things later
483 // Either expand children with weight to take up available space or
502 // Child said it could absorb extra space -- give him his shar
    [all...]
  /external/libffi/src/powerpc/
ffi.c 63 /* ffi_prep_args_SYSV is called by the assembly routine once stack space
78 | Space for copied structures | | grows |
82 | Space for callee's LR 4 | |
106 /* 'gpr_base' points at the space for gpr3, and grows upwards as
111 /* 'fpr_base' points at the space for fpr1, and grows upwards as
375 /* ffi_prep_args64 is called by the assembly routine once stack space
400 | Space for callee's LR 8 | |
425 /* 'next_arg' points at the space for gpr3, and grows upwards as
432 /* 'fpr_base' points at the space for fpr3, and grows upwards as
609 /* Space for the frame pointer, callee's LR, and the asm's temp regs. *
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
DNParser.java 81 // skip preceding space chars, they can present after
96 // accept any char except space and '='
107 // skip trailing space chars between attribute type and '='
122 // skip space chars between '=' and attribute value
167 // skip trailing space chars before comma or semicolon.
189 // looks for space and component separators
199 // skip trailing space chars before comma or semicolon.
252 // need to figure out whether space defines
299 //FIXME: escaping is allowed only for leading or trailing space char

Completed in 218 milliseconds

<<11121314151617181920>>