Home
last modified time | relevance | path

Searched refs:include_guard (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/lite/experimental/acceleration/compatibility/
Dconvert_binary_to_cc_source.py38 include_guard=None, argument
70 if include_guard is None:
71 include_guard = "TENSORFLOW_LITE_UTIL_" + array_name.upper() + "_DATA_H_"
149 include_guard=include_guard,
/external/perfetto/tools/
Dgen_cc_proto_descriptor.py42 include_guard = relative_target.replace('\\', '_').replace('/', '_').replace(
81 include_guard=include_guard,
/external/perfetto/test/stress_test/
Dgen_configs_blob.py76 include_guard = args.out.replace('/', '_').replace('.', '_').upper() + '_'
95 include_guard=include_guard,
/external/tensorflow/tensorflow/lite/python/
Dconvert_file_to_c_source.py60 include_guard=FLAGS.include_guard,
Dutil.py464 include_guard=None, argument
496 if include_guard is None:
497 include_guard = "TENSORFLOW_LITE_UTIL_" + array_name.upper() + "_DATA_H_"
575 include_guard=include_guard,
Dconvert_file_to_c_source_test.sh35 --include_guard="SOME_GUARD_H_" \
Dutil_test.py176 include_guard="MY_GUARD",
/external/libvpx/libvpx/build/make/
Diosbuild.sh104 local include_guard="VPX_FRAMEWORK_HEADERS_VPX_VPX_CONFIG_H_"
118 #ifndef ${include_guard}
119 #define ${include_guard}
139 printf "#endif // ${include_guard}" >> "${config_file}"
Drtcd.pl210 my $include_guard = uc($opts{sym})."_H_";
213 #ifndef ${include_guard}
214 #define ${include_guard}
/external/libaom/libaom/build/cmake/
Diosbuild.sh104 local include_guard="AOM_FRAMEWORK_HEADERS_AOM_AOM_CONFIG_H_"
119 #ifndef ${include_guard}
120 #define ${include_guard}
139 printf "#endif // ${include_guard}" >> "${config_file}"
Drtcd.pl219 my $include_guard = uc($opts{sym})."_H_";
222 #ifndef ${include_guard}
223 #define ${include_guard}
/external/perfetto/src/protozero/protoc_plugin/
Dcppgen_plugin.cc135 std::string include_guard = file->package() + "_" + file->name() + "_CPP_H_"; in Generate() local
136 include_guard = ToUpper(include_guard); in Generate()
137 include_guard = StripChars(include_guard, ".-/\\", '_'); in Generate()
140 h_printer.Print("#ifndef $g$\n#define $g$\n\n", "g", include_guard); in Generate()
344 h_printer.Print("\n#endif // $g$\n", "g", include_guard); in Generate()
/external/angle/src/common/
Dgen_packed_gl_enums.py138 include_guard=generate_include_guard(file_name),
/external/flatbuffers/src/
Didl_gen_cpp.cpp249 const auto include_guard = in generate_bfbs_embed() local
252 code_ += "#ifndef " + include_guard; in generate_bfbs_embed()
253 code_ += "#define " + include_guard; in generate_bfbs_embed()
292 code_ += "#endif // " + include_guard; in generate_bfbs_embed()
309 const auto include_guard = in generate() local
311 code_ += "#ifndef " + include_guard; in generate()
312 code_ += "#define " + include_guard; in generate()
578 code_ += "#endif // " + include_guard; in generate()
/external/pigweed/pw_protobuf_compiler/
Dproto.cmake14 include_guard(GLOBAL)
/external/pigweed/pw_build/
Dpigweed.cmake14 include_guard(GLOBAL)
/external/python/pybind11/tools/
Dpybind11Common.cmake22 # CMake 3.10 has an include_guard command, but we can't use that yet