Home
last modified time | relevance | path

Searched refs:Src (Results 1 – 22 of 22) sorted by relevance

/aosp12/system/core/fs_mgr/libstorage_literals/storage_literals/
H A Dstorage_literals.h57 template <typename Dest, typename Src>
58 constexpr Dest size_cast(Src src) { in size_cast()
59 if (Src::power < Dest::power) { in size_cast()
60 return Dest(src.count() >> (Dest::power - Src::power)); in size_cast()
62 if (Src::power > Dest::power) { in size_cast()
63 return Dest(src.count() << (Src::power - Dest::power)); in size_cast()
/aosp12/build/soong/cc/
H A Dtoolchain_library.go31 Src *string `android:"arch_variant"` member
82 if library.Properties.Src == nil {
87 srcPath := android.PathForSource(ctx, *library.Properties.Src)
H A Dsnapshot_prebuilt.go514 Src *string `android:"arch_variant"` member
559 if !p.header() && p.properties.Src == nil {
595 in := android.PathForModuleSrc(ctx, *p.properties.Src)
644 return p.sanitizerProperties.Cfi.Src != nil
765 Src *string `android:"arch_variant"` member
778 if p.properties.Src == nil {
793 in := android.PathForModuleSrc(ctx, *p.properties.Src)
860 Src *string `android:"arch_variant"` member
873 if p.properties.Src == nil {
888 return android.PathForModuleSrc(ctx, *p.properties.Src)
/aosp12/build/soong/apex/
H A Dprebuilt.go458 Src *string `android:"path"` member
461 Src *string `android:"path"`
464 Src *string `android:"path"`
467 Src *string `android:"path"`
470 Src *string `android:"path"`
490 src = String(p.Arch.Arm.Src)
492 src = String(p.Arch.Arm64.Src)
494 src = String(p.Arch.X86.Src)
496 src = String(p.Arch.X86_64.Src)
499 src = String(p.Src)
/aosp12/system/ca-certificates/soong/
H A Dca_certificates.go39 Src *string
46 etcProps.Src = proptools.StringPtr(path.Join(*c.Src_dir, filename))
/aosp12/build/soong/android/
H A Dprebuilt_build_tool.go25 Src *string `android:"path,arch_variant"` member
53 if t.properties.Src == nil {
H A Dpaths_test.go1030 Src *string `android:"path"`
1064 if p.props.Src != nil {
1065 src := PathForModuleSrc(ctx, *p.props.Src)
H A Dvariable.go148 Src *string `android:"arch_variant"`
/aosp12/frameworks/av/media/libmediahelper/include/media/
H A Dconvert.h192 typedef const std::vector<SrcElem> Src;
195 static inline bool run(Src &src, Dst &dst)
197 typedef typename Src::const_iterator SrcIt;
/aosp12/build/soong/etc/
H A Dprebuilt_etc.go66 Src *string `android:"path,arch_variant"` member
231 return android.PathForModuleSrc(ctx, proptools.String(p.properties.Src))
275 if p.properties.Src == nil {
279 p.sourceFilePath = android.PathForModuleSrc(ctx, proptools.String(p.properties.Src))
/aosp12/build/soong/linkerconfig/
H A Dlinkerconfig.go44 Src *string `android:"path"` member
88 input := android.PathForModuleSrc(ctx, android.String(l.properties.Src))
/aosp12/packages/modules/Gki/build/
H A Dproperties.go37 Src *string member
H A Dgki.go132 Src: proptools.StringPtr(":" + otaPayloadGen + "{" + payloadTag + "}"),
142Src: proptools.StringPtr(":" + otaPayloadGen + "{" + payloadPropertiesTag + "}"),
/aosp12/system/sepolicy/build/soong/
H A Dpolicy.go215 Src *string `android:"path"` member
321 if proptools.String(c.properties.Src) == "" {
325 conf := android.PathForModuleSrc(ctx, *c.properties.Src)
/aosp12/build/soong/sh/
H A Dsh_binary.go71 Src *string `android:"path,arch_variant"` member
229 if s.properties.Src == nil {
233 s.sourceFilePath = android.PathForModuleSrc(ctx, proptools.String(s.properties.Src))
533 android.BazelLabelForModuleSrc(ctx, []string{*m.properties.Src}))
/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.h68 template<typename Src, typename T>
H A DFrameProcessor.cpp360 template<typename Src, typename T>
385 switch(sizeof(Src)){ in updatePendingState()
/aosp12/build/soong/java/
H A Dplatform_compat_config.go51 Src *string `android:"path"` member
98 path := android.PathForModuleSrc(ctx, String(p.properties.Src))
/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderDrawable.java178 gc.setComposite(AlphaComposite.Src); in getImage()
H A DRenderSessionImpl.java505 gc.setComposite(AlphaComposite.Src); in renderAndBuildResult()
538 gc.setComposite(AlphaComposite.Src); in renderAndBuildResult()
H A DGcSnapshot.java783 g.setComposite(AlphaComposite.Src); in restoreLayer()
/aosp12/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DImageUtils.java217 g2.setComposite(AlphaComposite.Src); in scale()