/device/generic/vulkan-cereal/third-party/angle/src/common/ |
D | gen_packed_gl_enums.py | 109 def write_header(enums, path_prefix, file_name, data_source_name, namespace, api_enum_name): argument 129 file_name=file_name, 130 include_guard=generate_include_guard(file_name), 134 with (open(path_prefix + file_name, 'wt')) as f: 195 def write_cpp(enums, path_prefix, file_name, data_source_name, namespace, api_enum_name): argument 225 file_name=file_name, 226 header_name=header_name_from_cpp_name(file_name), 230 with (open(path_prefix + file_name, 'wt')) as f:
|
/device/generic/vulkan-cereal/third-party/perfetto/src/base/ |
D | debug_crash_stack_trace.cc | 159 char file_name[255]; in SignalHandler() member 172 snprintf(psym->file_name, sizeof(psym->file_name), "%s:%d", filename, in SignalHandler() 207 if (sym.file_name[0]) { in SignalHandler() 209 perfetto::base::WriteAll(STDERR_FILENO, sym.file_name, in SignalHandler() 210 strlen(sym.file_name)); in SignalHandler()
|
/device/generic/vulkan-cereal/third-party/googletest/googletest/test/ |
D | googletest-test-part-test.cc | 68 EXPECT_STREQ("some_file.cc", result.file_name()); in TEST_F() 122 TEST_F(TestPartResultTest, file_name) { in TEST_F() argument 123 EXPECT_STREQ("foo/bar.cc", r1_.file_name()); in TEST_F() 124 EXPECT_STREQ(nullptr, r3_.file_name()); in TEST_F() 125 EXPECT_STREQ("foo/bar.cc", r4_.file_name()); in TEST_F()
|
D | googletest-failfast-unittest_.cc | 137 printf("We are in OnTestPartResult %s:%d.\n", test_part_result.file_name(), in OnTestPartResult()
|
/device/google/cuttlefish/host/libs/config/ |
D | cuttlefish_config_instance.cpp | 465 const char* file_name) const { in PerInstancePath() 466 return (instance_dir() + "/") + file_name; in PerInstancePath() 470 const char* file_name) const { in PerInstanceInternalPath() 471 if (file_name[0] == '\0') { in PerInstanceInternalPath() 475 auto relative_path = (std::string(kInternalDirName) + "/") + file_name; in PerInstanceInternalPath() 480 const std::string& file_name) const { in PerInstanceLogPath() 481 if (file_name.size() == 0) { in PerInstanceLogPath() 485 auto relative_path = (std::string(kLogDirName) + "/") + file_name; in PerInstanceLogPath()
|
D | cuttlefish_config.cpp | 932 const std::string& file_name) const { in InstancesPath() 933 return AbsolutePath(instances_dir() + "/" + file_name); in InstancesPath() 941 const std::string& file_name) const { in AssemblyPath() 942 return AbsolutePath(assembly_dir() + "/" + file_name); in AssemblyPath() 1045 std::string DefaultHostArtifactsPath(const std::string& file_name) { in DefaultHostArtifactsPath() argument 1047 file_name; in DefaultHostArtifactsPath() 1058 std::string DefaultGuestImagePath(const std::string& file_name) { in DefaultGuestImagePath() argument 1060 file_name; in DefaultGuestImagePath()
|
D | cuttlefish_config.h | 427 std::string PerInstancePath(const char* file_name) const; 428 std::string PerInstanceInternalPath(const char* file_name) const; 429 std::string PerInstanceLogPath(const std::string& file_name) const;
|
/device/google/cuttlefish/tools/ |
D | tombstone_to_line.py | 54 file_name=':'.join(details[:-1])) 61 line, info.file_name, info.line_number), file=out_file) 67 with open(info.file_name, 'r') as f: 76 ' ' * indent, info.file_name, info.line_number), file=out_file)
|
/device/generic/vulkan-cereal/third-party/angle/scripts/ |
D | generate_loader.py | 28 file_name = "%s_loader_autogen.h" % api 29 header_path = registry_xml.path_to(path, file_name) 63 file_name = "%s_loader_autogen.cpp" % api 64 source_path = registry_xml.path_to(path, file_name)
|
/device/google/coral-kernel/sm8150/original-kernel-headers/linux/mfd/adnc/ |
D | iaxxx-odsp.h | 52 char file_name[256]; member 56 char file_name[256]; member 108 char file_name[256]; member
|
/device/google/coral-kernel/sm8150/kernel-headers/linux/mfd/adnc/ |
D | iaxxx-odsp.h | 50 char file_name[256]; member 53 char file_name[256]; member 97 char file_name[256]; member
|
/device/generic/vulkan-cereal/third-party/angle/tools/ |
D | angle_tools.py | 28 def get_exe_name(file_name, windows_extension): argument 29 exe_name = file_name
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/gl/ |
D | generate_gl_dispatch_table.py | 410 file_name=dispatch_header_path, 443 file_name=dispatch_source_path, 490 file_name=null_functions_header_path, 500 file_name=null_functions_source_path,
|
/device/google/cuttlefish/host/commands/modem_simulator/ |
D | cf_device_config.cpp | 34 std::string DeviceConfig::PerInstancePath(const char* file_name) { in PerInstancePath() argument 40 return instance.PerInstancePath(file_name); in PerInstancePath()
|
D | device_config.h | 31 static std::string PerInstancePath(const char* file_name);
|
/device/generic/vulkan-cereal/third-party/googletest/googletest/src/ |
D | gtest-port.cc | 1004 const std::string file_name(file == nullptr ? kUnknownFile : file); in FormatFileLocation() local 1007 return file_name + ":"; in FormatFileLocation() 1010 return file_name + "(" + StreamableToString(line) + "):"; in FormatFileLocation() 1012 return file_name + ":" + StreamableToString(line) + ":"; in FormatFileLocation() 1023 const std::string file_name(file == nullptr ? kUnknownFile : file); in FormatCompilerIndependentFileLocation() local 1026 return file_name; in FormatCompilerIndependentFileLocation() 1028 return file_name + ":" + StreamableToString(line); in FormatCompilerIndependentFileLocation()
|
D | gtest-internal-inl.h | 1176 const char* file_name = test_part_result.file_name(); in OnTestPartResult() local 1177 if (file_name == nullptr) file_name = ""; in OnTestPartResult() 1178 SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + in OnTestPartResult()
|
D | gtest-test-part.cc | 51 return os << internal::FormatFileLocation(result.file_name(), in operator <<()
|
D | gtest.cc | 3197 << internal::FormatFileLocation(test_part_result.file_name(), in PrintTestPartResultToString() 4324 internal::FormatCompilerIndependentFileLocation(part.file_name(), in OutputXmlTestResult() 4338 internal::FormatCompilerIndependentFileLocation(part.file_name(), in OutputXmlTestResult() 4786 internal::FormatCompilerIndependentFileLocation(part.file_name(), in OutputJsonTestResult() 5353 const char* file_name, in AddTestPartResult() argument 5376 result_type, file_name, line_number, msg.GetString().c_str()); in AddTestPartResult()
|
/device/google/cuttlefish/host/commands/host_bugreport/ |
D | main.cc | 71 const auto& file_name = instance.PerInstancePath(path.c_str()); in CvdHostBugreportMain() local 72 SaveFile(writer, zip_name, file_name); in CvdHostBugreportMain()
|
/device/generic/goldfish-opengl/fuchsia/ |
D | releasepackage.py | 91 file_name = "libvulkan_goldfish.so" variable 92 full_name = os.path.join(package_dir, file_name)
|
/device/generic/vulkan-cereal/third-party/googletest/googletest/include/gtest/ |
D | gtest-test-part.h | 78 const char* file_name() const { in file_name() function
|
D | gtest.h | 1232 const char* file_name,
|
/device/generic/vulkan-cereal/third-party/googletest/googletest/samples/ |
D | sample9_unittest.cc | 74 test_part_result.file_name(), in OnTestPartResult()
|
/device/generic/vulkan-cereal/third-party/googletest/docs/reference/ |
D | testing.md | 1098 ##### file_name {#TestPartResult::file_name} 1100 `const char* TestPartResult::file_name() const`
|