Home
last modified time | relevance | path

Searched refs:space (Results 1 – 25 of 51) sorted by relevance

123

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
DButtonFooterMixin.java111 View space = new View(buttonContainer.getContext()); in addSpace() local
112 space.setLayoutParams(new LayoutParams(0, 0, 1.0f)); in addSpace()
113 space.setVisibility(View.INVISIBLE); in addSpace()
114 buttonContainer.addView(space); in addSpace()
115 return space; in addSpace()
134 public void removeSpace(View space) { in removeSpace() argument
136 buttonContainer.removeView(space); in removeSpace()
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
DButtonFooterMixinTest.java105 final View space = mixin.addSpace(); in testAddSpace() local
108 space.setTag("space"); in testAddSpace()
113 ((LinearLayout.LayoutParams) space.getLayoutParams()).weight, in testAddSpace()
138 final View space = mixin.addSpace(); in testRemoveSpace() local
141 space.setTag("space"); in testRemoveSpace()
145 mixin.removeSpace(space); in testRemoveSpace()
155 final View space = mixin.addSpace(); in testRemoveAllViews() local
158 space.setTag("space"); in testRemoveAllViews()
/frameworks/base/tools/aapt/
Dpseudolocalize.cpp339 bool space = is_space(c); in text() local
340 if (lastspace && !space) { in text()
343 lastspace = space; in text()
362 bool space = true; in text() local
371 space = (!escape && is_space(c)) || (escape && (c == 'n' || c == 't')); in text()
372 if (lastspace && !space) { in text()
375 } else if (!lastspace && space) { in text()
379 lastspace = space; in text()
/frameworks/base/tools/aapt2/compile/
DPseudolocalizer.cpp424 bool space = isspace(c); in Text() local
425 if (lastspace && !space) { in Text()
428 lastspace = space; in Text()
447 bool space = true; in Text() local
456 space = (!escape && isspace(c)) || (escape && (c == 'n' || c == 't')); in Text()
457 if (lastspace && !space) { in Text()
460 } else if (!lastspace && space) { in Text()
464 lastspace = space; in Text()
/frameworks/native/services/surfaceflinger/sysprop/
DSurfaceFlingerProperties.sysprop71 # or can support a wide-color display, e.g. color space
191 # Returns the default data space and pixel format that SurfaceFlinger
192 # expects to receive and output as well as the wide color gamut data space
194 # To determine the data space and pixel format, there are a few things
198 # data space and pixel format efficiently;
200 # and the chosen wide color gamut data space contents coexist;
206 # dataspace is the default data space that SurfaceFlinger expects.
207 # The data space must not be Dataspace::UNKNOWN, if unspecified,
208 # the default data space is Dataspace::V0_SRGB;
228 # wcgDataspace is the data space that SurfaceFlinger expects for
[all …]
/frameworks/native/cmds/installd/
DCacheTracker.cpp79 int64_t space; in loadQuotaStats() local
80 if ((space = GetOccupiedSpaceForGid(mUuid, cacheGid)) != -1) { in loadQuotaStats()
81 cacheUsed += space; in loadQuotaStats()
86 if ((space = get_occupied_app_cache_space_external(mUuid, mUserId, mAppId)) != -1) { in loadQuotaStats()
87 cacheUsed += space; in loadQuotaStats()
DInstalldNativeService.cpp1549 int64_t space; in collectQuotaStats() local
1552 if ((space = GetOccupiedSpaceForUid(uuid, uid)) != -1) { in collectQuotaStats()
1553 stats->dataSize += space; in collectQuotaStats()
1558 if ((space = GetOccupiedSpaceForGid(uuid, cacheGid)) != -1) { in collectQuotaStats()
1559 stats->cacheSize += space; in collectQuotaStats()
1565 if ((space = GetOccupiedSpaceForGid(uuid, sharedGid)) != -1) { in collectQuotaStats()
1566 stats->codeSize += space; in collectQuotaStats()
1573 space = get_occupied_app_space_external(uuid, userId, appId); in collectQuotaStats()
1575 if (space != -1) { in collectQuotaStats()
1576 extStats->dataSize += space; in collectQuotaStats()
[all …]
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/report/
DTextReportCanvas.java44 for (int space = 0; space < mListIndent; space++) { in writeListIndent()
/frameworks/native/opengl/specs/
DEGL_ANDROID_recordable.txt114 color space conversion must be performed at some point because most video
115 encoding formats use a YUV color space. The two approaches are
116 distinguished by the point at which this color space conversion is
119 One approach involves performing the color space conversion as part of the
125 space conversion when rendering the frame as well as a YUV -> RGB
128 The other approach involves performing the color space conversion in the
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPackageBasedTokenUtil.java95 String space = " "; in generatePackageBasedToken() local
96 messageDigest.update(space.getBytes(CHARSET_UTF_8)); in generatePackageBasedToken()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagLayouts.inc37 "There is no space left to place stubs. Current stub group size: %0\n"
39 "There is no space left to place stubs. Current stub group size: %0\n"
/frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
Dbroadcast_ring.h445 uint32_t space; member
551 geometry.space = geometry.record_count - geometry.count; in CalculateGeometry()
579 (geometry.space >= reserve_count ? 0 : reserve_count - geometry.space); in Reserve()
593 DCHECK_LE(publish_count, geometry.space); in Publish()
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DQueryController.java513 for(int space = 0; space < mLogIndent; space++) in formatLog()
/frameworks/base/wifi/tests/
DAndroid.mk40 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/base/core/proto/android/service/
Ddiskstats.proto105 // Available space, in kilobytes
107 // Total space, in kilobytes
/frameworks/base/packages/SystemUI/tests/
DAndroid.mk72 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/av/media/libstagefright/webm/
DWebmWriter.cpp383 sp<WebmElement> space = new EbmlVoid(mEstimatedCuesSize - cuesSize); in reset() local
384 space->write(mFd, spaceSize); in reset()
419 sp<WebmElement> space = new EbmlVoid(kMaxMetaSeekSize - metaSeekSize); in reset() local
420 space->write(mFd, spaceSize); in reset()
/frameworks/opt/net/wifi/tests/wifitests/
DAndroid.mk41 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
/frameworks/base/native/webview/loader/
DAndroid.bp18 // Loader library which handles address space reservation and relro sharing.
/frameworks/av/media/libnbaio/
DREADME.txt32 if configured to block, then will wait until space available before returning
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DBiometricDialogView.java199 final View space = mLayout.findViewById(R.id.space); in BiometricDialogView() local
216 setDismissesDialog(space); in BiometricDialogView()
/frameworks/base/libs/androidfw/
DAssetManager.cpp721 char* space = strchr(buf, ' '); in addSystemOverlays() local
725 if (space == NULL || newline == NULL || newline < space) { in addSystemOverlays()
729 oap.path = String8(buf, space - buf); in addSystemOverlays()
731 oap.idmap = String8(space + 1, newline - space - 1); in addSystemOverlays()
/frameworks/native/opengl/tests/EGLTest/
DEGL_test.cpp37 android::String8 space(" "); in hasEglExtension() local
38 bool atStart = !strncmp(extString + space, exts, cropExtLen + 1); in hasEglExtension()
40 !strcmp(space + extString, exts + extsLen - (cropExtLen + 1)); in hasEglExtension()
41 bool inMiddle = strstr(exts, space + extString + space); in hasEglExtension()
/frameworks/native/vulkan/
DREADME.md7 ….org/developers/coding-style) for naming and formatting, except with four-space indentation instea…
/frameworks/ml/nn/tools/api/
DREADME.md133 %define test this body begins and ends with a space character
181 The *list* consists of a space-delimited list of tokens, any of which may end in
202 * Validity-checking. If the "kind" is not on the space-delimited *list* of tokens,

123