Home | History | Annotate | Download | only in core

Lines Matching defs:windows

43 ifeq ($(HOST_OS),windows)
58 ifeq ($(HOST_OS),windows)
73 ifeq ($(HOST_OS),windows)
87 ifeq ($(HOST_OS),windows)
102 ifeq ($(HOST_OS),windows)
131 ifeq ($(HOST_OS),windows)
146 # On Windows, we need to take care drive prefix in file paths, e.g.:
157 ndk-windows-drive-letters := a b c d e f g h i j k l m n o p q r s t u v w x y z \
160 ndk-windows-drive-patterns := $(foreach _drive,$(ndk-windows-drive-letters),$(_drive):%)
162 windows-path-is-absolute = $(if $(filter /% $(ndk-windows-drive-patterns),$(subst \,/,$1)),true)
164 ifeq ($(HOST_OS),windows)
165 host-path-is-absolute = $(call windows-path-is-absolute,$1)
183 -test-host-path-is-asbolute.windows-relative-paths = \
184 $(call test-expect,$(call windows-path-is-absolute,foo))\
185 $(call test-expect,$(call windows-path-is-absolute,foo/bar))\
186 $(call test-expect,$(call windows-path-is-absolute,.))\
187 $(call test-expect,$(call windows-path-is-absolute,..))
189 -test-host-path-is-asbolute.windows-absolute-paths = \
190 $(call test-expect,true,$(call windows-path-is-absolute,c:/))\
191 $(call test-expect,true,$(call windows-path-is-absolute,x:))\
192 $(call test-expect,true,$(call windows-path-is-absolute,K:foo))\
193 $(call test-expect,true,$(call windows-path-is-absolute,C:\Foo\Bar))\
194 $(call test-expect,true,$(call windows-path-is-absolute,\Foo))