Lines Matching refs:true
186 windows-path-is-absolute = $(if $(filter /% $(ndk-windows-drive-patterns),$(subst \,/,$1)),true)
191 host-path-is-absolute = $(if $(filter /%,$1),true)
201 $(call test-expect,true,$(call host-path-is-absolute,/))\
202 $(call test-expect,true,$(call host-path-is-absolute,/foo))\
203 $(call test-expect,true,$(call host-path-is-absolute,/foo/bar))\
204 $(call test-expect,true,$(call host-path-is-absolute,//foo))\
205 $(call test-expect,true,$(call host-path-is-absolute,/.))
214 $(call test-expect,true,$(call windows-path-is-absolute,c:/))\
215 $(call test-expect,true,$(call windows-path-is-absolute,x:))\
216 $(call test-expect,true,$(call windows-path-is-absolute,K:foo))\
217 $(call test-expect,true,$(call windows-path-is-absolute,C:\Foo\Bar))\
218 $(call test-expect,true,$(call windows-path-is-absolute,\Foo))