Home | History | Annotate | Download | only in core

Lines Matching defs:cpp

273 ## Find all of the cpp files under the named directories.
276 ## SRC_FILES := $(call all-cpp-files-under,src tests)
279 define all-cpp-files-under
282 find -L $(1) -name "*$(or $(LOCAL_CPP_EXTENSION),.cpp)" -and -not -name ".*") \
287 ## Find all of the cpp files from here. Meant to be used like:
288 ## SRC_FILES := $(call all-subdir-cpp-files)
291 define all-subdir-cpp-files
292 $(call all-cpp-files-under,.)
404 # css, *.cpp, DontWantThis.cpp)
979 define transform-l-to-c-or-cpp
990 define transform-y-to-c-or-cpp
1057 define transform-renderscripts-to-cpp-and-bc
1087 define transform-aidl-to-cpp
1108 ## Given a .aidl file path generate the rule to compile it a .cpp file.
1110 # $(2): a directory to place the generated .cpp files in
1114 define define-aidl-cpp-rule
1115 define-aidl-cpp-rule-src := $(patsubst %.aidl,%$(LOCAL_CPP_EXTENSION),$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1116 $$(define-aidl-cpp-rule-src) : $(LOCAL_PATH)/$(1) $(AIDL_CPP)
1117 $$(transform-aidl-to-cpp)
1118 $(3) += $$(define-aidl-cpp-rule-src)
1125 define transform-vts-to-cpp
1133 ## Given a .vts file path generate the rule to compile it a .cpp file.
1135 # $(2): a directory to place the generated .cpp files in
1139 define define-vts-cpp-rule
1140 define-vts-cpp-rule-src := $(patsubst %.vts,%$(LOCAL_CPP_EXTENSION),$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1141 $$(define-vts-cpp-rule-src) : $(LOCAL_PATH)/$(1) $(VTSC)
1142 $$(transform-vts-to-cpp)
1143 $(3) += $$(define-vts-cpp-rule-src)
1192 @# aprotoc outputs only .cc. Rename it to .cpp if necessary.
1216 define transform-cpp-to-o-compiler-args
1232 define clang-tidy-cpp
1235 $< -- $(transform-cpp-to-o-compiler-args)
1239 define transform-cpp-to-o
1242 $(clang-tidy-cpp))
1245 define transform-cpp-to-o
1248 $(if $(PRIVATE_TIDY_CHECKS),$(clang-tidy-cpp))
1250 $(transform-cpp-to-o-compiler-args) \
1336 define transform-host-cpp-to-o-compiler-args
1350 define clang-tidy-host-cpp
1353 $< -- $(transform-host-cpp-to-o-compiler-args)
1357 define transform-host-cpp-to-o
1360 $(clang-tidy-host-cpp))
1363 define transform-host-cpp-to-o
1366 $(if $(PRIVATE_TIDY_CHECKS),$(clang-tidy-host-cpp))
1368 $(transform-host-cpp-to-o-compiler-args) \
1444 $(transform-host-cpp
1459 define compile-dotdot-cpp-file
1462 $$(transform-$$(PRIVATE_HOST)cpp-to-o)