Searched defs:space (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/lowpan/tests/
H A DAndroid.mk37 # Utility variables to allow replacing a space with a comma
40 space:= $(empty) $(empty) macro
42 # This appends a * to all classes and replace the space separators with commas.
44 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/base/wifi/tests/
H A DAndroid.mk37 # Utility variables to allow replacing a space with a comma
40 space:= $(empty) $(empty) macro
42 # This appends a * to all classes and replace the space separators with commas.
44 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk38 # Utility variables to allow replacing a space with a comma
41 space:= $(empty) $(empty) macro
43 # This appends a * to all classes and replace the space separators with commas.
45 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/opt/net/lowpan/libandroid_net_lowpan/tests/
H A DAndroid.mk37 # Utility variables to allow replacing a space with a comma
40 space:= $(empty) $(empty) macro
42 # This appends a * to all classes and replace the space separators with commas.
44 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DButtonFooterMixin.java107 * Add a space to the footer. Spaces will share the remaining space of footer, so for example,
108 * [Button] [space] [Button] [space] [Button] will give you 3 buttons, left, center, and right
111 * @return The view that was used as space.
115 View space = new View(buttonContainer.getContext());
116 space.setLayoutParams(new LayoutParams(0, 0, 1.0f));
117 space.setVisibility(View.INVISIBLE);
118 buttonContainer.addView(space);
119 return space;
138 removeSpace(View space) argument
[all...]
/frameworks/base/tools/aapt/
H A Dpseudolocalize.cpp190 // Should contain only whole words, so looking for a space
339 bool space = is_space(c); local
340 if (lastspace && !space) {
343 lastspace = space;
362 bool space = true; local
371 space = (!escape && is_space(c)) || (escape && (c == 'n' || c == 't'));
372 if (lastspace && !space) {
375 } else if (!lastspace && space) {
379 lastspace = space;
/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer.cpp311 // Should contain only whole words, so looking for a space
424 bool space = isspace(c); local
425 if (lastspace && !space) {
428 lastspace = space;
447 bool space = true; local
456 space = (!escape && isspace(c)) || (escape && (c == 'n' || c == 't'));
457 if (lastspace && !space) {
460 } else if (!lastspace && space) {
464 lastspace = space;
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.cpp184 // some reserved space. This should not happen so often statistically.
310 // TRICKY Even when the cues do fit in the space we reserved, if they do not fit
311 // perfectly, we still need to check if there is enough "extra space" to write an
320 sp<WebmElement> space = new EbmlVoid(mEstimatedCuesSize - cuesSize); local
321 space->write(mFd, spaceSize);
356 sp<WebmElement> space = new EbmlVoid(kMaxMetaSeekSize - metaSeekSize); local
357 space->write(mFd, spaceSize);
/frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
H A Dbroadcast_ring.h143 // Must have enough space for writers, plus enough space for readers.
175 // There must be at least |MemorySize(record_count)| bytes of space already
187 // There must be at least |MemorySize()| bytes of space already allocated at
216 // Calculates the space necessary for a ring of size |record_count|.
223 // Calculates the space necessary for a statically sized ring.
445 uint32_t space; member in struct:android::dvr::BroadcastRing::Geometry
551 geometry.space = geometry.record_count - geometry.count;
568 // Makes space for at least |reserve_count| records.
579 (geometry.space >
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java311 private static String buildOomTag(String prefix, String space, int val, int base) { argument
313 if (space == null) return prefix;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp717 // <path to apk><space><path to idmap><newline>
718 char* space = strchr(buf, ' '); local
722 if (space == NULL || newline == NULL || newline < space) {
726 oap.path = String8(buf, space - buf);
728 oap.idmap = String8(space + 1, newline - space - 1);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DGridLayoutManager.java446 // Extra layout space needs to fill in prelayout pass. Note we apply the extra space to both
690 * Pixels of extra space for layout item (outside the widget)
842 public void setItemSpacing(int space) { argument
843 mVerticalSpacing = mHorizontalSpacing = space;
844 mSpacingPrimary = mSpacingSecondary = space;
847 public void setVerticalSpacing(int space) { argument
849 mSpacingPrimary = mVerticalSpacing = space;
851 mSpacingSecondary = mVerticalSpacing = space;
855 public void setHorizontalSpacing(int space) { argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 208 milliseconds