Searched refs:space (Results 1 - 25 of 29) sorted by relevance

12

/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/services/usb/java/com/android/server/usb/descriptors/report/
H A DTextReportCanvas.java44 for (int space = 0; space < mListIndent; 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/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
H A DButtonFooterMixinTest.java107 final View space = mixin.addSpace();
110 space.setTag("space");
111 assertNotNull(mStubParent.findViewWithTag("space"));
113 1f, ((LinearLayout.LayoutParams) space.getLayoutParams()).weight, 0.001);
137 final View space = mixin.addSpace();
140 space.setTag("space");
142 assertNotNull("space should exist", mStubParent.findViewWithTag("space"));
[all...]
/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/support/leanback/src/main/java/androidx/leanback/widget/
H A DRowHeaderPresenter.java206 * Returns the space (distance in pixels) below the baseline of the
210 int space = holder.view.getPaddingBottom();
212 space += (int) getFontDescent((TextView) holder.view, mFontMeasurePaint);
214 return space;
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/support/car/src/main/java/androidx/car/widget/
H A DActionBar.java57 * (if the space allows) and on the additional space if the panel is expanded.
145 // Inflate space on the left
146 Space space = new Space(context);
147 mRow.addView(space);
148 space.setLayoutParams(new LinearLayout.LayoutParams(0,
158 // Inflate space on the right
159 space = new Space(context);
160 mRow.addView(space);
161 space
[all...]
/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/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/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/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DQueryController.java513 for(int space = 0; space < mLogIndent; space++)
/frameworks/base/packages/SystemUI/src/com/android/systemui/fingerprint/
H A DFingerprintDialogView.java147 final View space = mLayout.findViewById(R.id.space);
153 setDismissesDialog(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/base/packages/SystemUI/tests/
H A DAndroid.mk109 # This appends a * to all classes and replace the space separators with commas.
110 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp37 android::String8 space(" ");
38 bool atStart = !strncmp(extString + space, exts, cropExtLen + 1);
40 !strcmp(space + extString, exts + extsLen - (cropExtLen + 1));
41 bool inMiddle = strstr(exts, space + extString + space);
/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/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/rs/script_api/
H A Drs_vector_math.spec21 n-dimensional space.
H A Drs_for_each.spec200 the index space specified in options. With the index space explicitly specified
H A Drs_graphics.spec222 If the source is specified, sync from memory space specified by source.
224 If the source is not specified, sync from its SCRIPT memory space to its HW
/frameworks/base/core/java/android/widget/
H A DToolbar.java89 * within the available space remaining in the Toolbar after all other elements have been
1682 // Measurement already took padding into account for available space for the children,
1800 final int space = height - paddingTop - paddingBottom;
1801 int spaceAbove = (space - titleHeight) / 2;
1978 final int space = height - paddingTop - paddingBottom;
1979 int spaceAbove = (space - childHeight) / 2;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DToolbar.java99 * within the available space remaining in the Toolbar after all other elements have been
1688 // Measurement already took padding into account for available space for the children,
1806 final int space = height - paddingTop - paddingBottom;
1807 int spaceAbove = (space - titleHeight) / 2;
1984 final int space = height - paddingTop - paddingBottom;
1985 int spaceAbove = (space - childHeight) / 2;
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dpred_lt4_1_opt.s49 NOP @space for fixed up relative address of ADR

Completed in 274 milliseconds

12