HomeSort by relevance Sort by last modified time
    Searched refs:hod (Results 1 - 15 of 15) sorted by null

  /build/soong/cc/
prebuilt.go 73 func NewPrebuiltSharedLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
74 module, library := NewLibrary(hod)
94 func NewPrebuiltStaticLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
95 module, library := NewLibrary(hod)
145 func NewPrebuiltBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
146 module, binary := NewBinary(hod)
makevars.go 205 hod := "Host"
207 hod = "Device"
217 fmt.Sprintf("${config.%sGlobalCflags}", hod),
226 fmt.Sprintf("${config.%sGlobalCppflags}", hod),
230 fmt.Sprintf("${config.%sGlobalLdflags}", hod),
266 fmt.Sprintf("${config.%sClangGlobalCflags}", hod),
273 fmt.Sprintf("${config.%sGlobalCppflags}", hod),
277 fmt.Sprintf("${config.%sGlobalLdflags}", hod),
test.go 239 func NewTest(hod android.HostOrDeviceSupported) *Module {
240 module, binary := NewBinary(hod)
283 func NewTestLibrary(hod android.HostOrDeviceSupported) *Module {
341 func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
344 switch hod {
346 hod = android.DeviceSupported
348 hod = android.NeitherHostNorDeviceSupported
352 module, binary := NewBinary(hod)
linker.go 207 hod := "Host"
209 hod = "Device"
212 flags.LdFlags = append(flags.LdFlags, fmt.Sprintf("${config.%sGlobalLdflags}", hod))
compiler.go 356 hod := "Host"
358 hod = "Device"
363 flags.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.CppFlags...)
371 fmt.Sprintf("${config.%sClangGlobalCflags}", hod))
377 fmt.Sprintf("${config.%sGlobalCflags}", hod))
binary.go 178 func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
179 module := newModule(hod, android.MultilibFirst)
cc.go 314 hod android.HostOrDeviceSupported
386 android.InitAndroidArchModule(c, c.hod, c.multilib)
567 func newBaseModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
569 hod: hod,
574 func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
575 module := newBaseModule(hod, multilib)
    [all...]
library.go 819 func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
820 module := newModule(hod, android.MultilibBoth)
  /build/soong/python/
test.go 41 func NewTest(hod android.HostOrDeviceSupported) *Module {
42 module, binary := NewBinary(hod)
binary.go 63 func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
64 module := newModule(hod, android.MultilibFirst)
python.go 117 hod android.HostOrDeviceSupported
150 func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
152 hod: hod,
197 android.InitAndroidArchModule(p, p.hod, p.multilib)
  /libcore/ojluni/src/main/java/java/time/format/
Parsed.java 467 long hod = fieldValues.remove(HOUR_OF_DAY); local
471 resolveTime(hod, moh, som, nos);
501 Long hod = fieldValues.get(HOUR_OF_DAY); local
502 if (hod != null) {
517 resolveTime(hod, mohVal, somVal, nosVal);
536 private void resolveTime(long hod, long moh, long som, long nos) {
538 long totalNanos = Math.multiplyExact(hod, 3600_000_000_000L);
549 if (resolverStyle == ResolverStyle.SMART && hod == 24 && mohVal == 0 && som == 0 && nosVal == 0) {
552 int hodVal = HOUR_OF_DAY.checkValidIntValue(hod);
  /build/soong/java/
droiddoc.go 138 func InitDroiddocModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) {
139 android.InitAndroidArchModule(module, hod, android.MultilibCommon)
java.go 289 func InitJavaModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) {
290 android.InitAndroidArchModule(module, hod, android.MultilibCommon)
    [all...]
  /build/soong/android/
module.go 325 func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
329 base.commonProperties.HostOrDeviceSupported = hod
333 switch hod {
    [all...]

Completed in 165 milliseconds