Home
last modified time | relevance | path

Searched refs:wildcard (Results 1 – 25 of 226) sorted by relevance

12345678910

/external/aac/
DAndroid.mk4 aacdec_sources := $(wildcard $(LOCAL_PATH)/libAACdec/src/*.cpp)
7 aacenc_sources := $(wildcard $(LOCAL_PATH)/libAACenc/src/*.cpp)
10 pcmutils_sources := $(wildcard $(LOCAL_PATH)/libPCMutils/src/*.cpp)
13 fdk_sources := $(wildcard $(LOCAL_PATH)/libFDK/src/*.cpp)
16 sys_sources := $(wildcard $(LOCAL_PATH)/libSYS/src/*.cpp)
19 mpegtpdec_sources := $(wildcard $(LOCAL_PATH)/libMpegTPDec/src/*.cpp)
22 mpegtpenc_sources := $(wildcard $(LOCAL_PATH)/libMpegTPEnc/src/*.cpp)
25 sbrdec_sources := $(wildcard $(LOCAL_PATH)/libSBRdec/src/*.cpp)
28 sbrenc_sources := $(wildcard $(LOCAL_PATH)/libSBRenc/src/*.cpp)
/external/compiler-rt/lib/tsan/rtl/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
20 Dependencies := $(wildcard $(Dir)/*.h)
21 Dependencies += $(wildcard $(Dir)/../../interception/*.h)
22 Dependencies += $(wildcard $(Dir)/../../sanitizer_common/*.h)
DMakefile.old33 LIBTSAN_HEADERS=$(wildcard *.h) \
34 $(wildcard $(INTERCEPTION)/*.h) \
35 $(wildcard $(COMMON)/*.h)
36 LIBTSAN_SRC=$(wildcard *.cc)
37 LIBTSAN_ASM_SRC=$(wildcard *.S)
38 INTERCEPTION_SRC=$(wildcard $(INTERCEPTION)/*.cc)
39 COMMON_SRC=$(wildcard $(COMMON)/*.cc)
/external/compiler-rt/lib/asan/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../interception/*.h)
21 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
/external/compiler-rt/lib/msan/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../interception/*.h)
21 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
/external/compiler-rt/lib/interception/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
/external/compiler-rt/lib/ubsan/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
/external/icu4c/tools/tzcode/
DMakefile.in13 TZDATA = $(firstword $(wildcard ./tzdata*.tar.gz) $(wildcard $(srcdir)/tzdata*.tar.gz))
16 TZCODE = $(firstword $(wildcard ./tzcode*.tar.gz) $(wildcard $(srcdir)/tzcode*.tar.gz))
/external/compiler-rt/lib/i386/
DMakefile.mk14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
/external/compiler-rt/lib/x86_64/
DMakefile.mk14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
/external/compiler-rt/lib/ppc/
DMakefile.mk14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
/external/libsepol/include/
DMakefile10 install -m 644 $(wildcard sepol/*.h) $(INCDIR)
11 install -m 644 $(wildcard sepol/policydb/*.h) $(INCDIR)/policydb
14 ../../scripts/Lindent $(wildcard sepol/*.h)
/external/compiler-rt/lib/arm/
DMakefile.mk14 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
/external/libsepol/tests/
DMakefile18 objs := $(patsubst %.c,%.o,$(wildcard *.c))
24 m4support := $(wildcard policies/support/*.spt)
25 testsuites := $(wildcard policies/test-*)
26 policysrc := $(foreach path,$(testsuites),$(wildcard $(path)/*.conf))
/external/mockito/src/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java554 private WildcardType wildcard; field in GenericMetadataSupport.WildCardBoundedType
557 public WildCardBoundedType(WildcardType wildcard) { in WildCardBoundedType() argument
558 this.wildcard = wildcard; in WildCardBoundedType()
565 Type[] lowerBounds = wildcard.getLowerBounds(); in firstBound()
566 Type[] upperBounds = wildcard.getUpperBounds(); in firstBound()
583 return wildcard.equals(((TypeVarBoundedType) o).typeVariable); in equals()
589 return wildcard.hashCode(); in hashCode()
601 return wildcard; in wildCard()
/external/compiler-rt/lib/tsan/
DMakefile.old23 SANITIZER_COMMON_TESTS_SRC=$(wildcard ../sanitizer_common/tests/*_test.cc)
25 RTL_TEST_SRC=$(wildcard tests/rtl/*.cc)
27 UNIT_TEST_SRC=$(wildcard tests/unit/*_test.cc)
29 UNIT_TEST_HDR=$(wildcard rtl/*.h) $(wildcard ../sanitizer_common/*.h)
/external/zlib/src/nintendods/
DMakefile60 CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
61 CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
62 SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
63 BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
/external/junit/src/org/junit/runners/model/
DNoGenericTypeParametersValidator.java41 private void validateNoTypeParameterOnWildcardType(WildcardType wildcard, in validateNoTypeParameterOnWildcardType() argument
43 for (Type each : wildcard.getUpperBounds()) in validateNoTypeParameterOnWildcardType()
45 for (Type each : wildcard.getLowerBounds()) in validateNoTypeParameterOnWildcardType()
/external/compiler-rt/lib/profile/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
18 Dependencies := $(wildcard $(Dir)/*.h)
/external/sepolicy/
DAndroid.mk28 $(wildcard $(addsuffix /$(pf), $(BOARD_SEPOLICY_DIRS))))) \
37 $(if $(filter 0, $(words $(wildcard $(addsuffix /$(pf), $(LOCAL_PATH))))), \
49 $(foreach expanded_type, $(notdir $(wildcard $(addsuffix /$(type), $(LOCAL_PATH)))), \
51 $(wildcard $(addsuffix $(expanded_type), $(sort $(dir $(sepolicy_replace_paths))))), \
55 $(foreach union_policy, $(wildcard $(addsuffix /$(type), $(BOARD_SEPOLICY_DIRS))), \
/external/compiler-rt/lib/sanitizer_common/
DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
19 Dependencies := $(wildcard $(Dir)/*.h)
/external/libsepol/src/
DMakefile15 OBJS= $(patsubst %.c,%.o,$(wildcard *.c))
16 LOBJS= $(patsubst %.c,%.lo,$(wildcard *.c))
55 ../../scripts/Lindent $(wildcard *.[ch])
/external/chromium/net/tools/tld_cleanup/
Dtld_cleanup.cc45 bool wildcard; member
77 } else if (i->second.wildcard) { in WriteRules()
127 rule->wildcard = true; in NormalizeRule()
196 rule.wildcard = false; in NormalizeFile()
232 rule.wildcard = false; in NormalizeFile()
/external/iptables/extensions/
DGNUmakefile.in40 pfx_build_mod := $(patsubst ${srcdir}/libxt_%.c,%,$(wildcard ${srcdir}/libxt_*.c))
41 @ENABLE_IPV4_TRUE@ pf4_build_mod := $(patsubst ${srcdir}/libipt_%.c,%,$(wildcard ${srcdir}/libipt_*…
42 @ENABLE_IPV6_TRUE@ pf6_build_mod := $(patsubst ${srcdir}/libip6t_%.c,%,$(wildcard ${srcdir}/libip6t…
210 matches4.man: .initext.dd .initext4.dd $(wildcard ${srcdir}/lib*.man)
213 matches6.man: .initext.dd .initext6.dd $(wildcard ${srcdir}/lib*.man)
216 targets4.man: .initext.dd .initext4.dd $(wildcard ${srcdir}/lib*.man)
219 targets6.man: .initext.dd .initext6.dd $(wildcard ${srcdir}/lib*.man)
/external/libsepol/utils/
DMakefile9 TARGETS=$(patsubst %.c,%,$(wildcard *.c))
21 ../../scripts/Lindent $(wildcard *.[ch])

12345678910