Searched refs:type_name (Results 51 - 75 of 78) sorted by relevance

1234

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp945 llvm::StringRef type_name, uint32_t dw_ate, uint32_t bit_size) {
970 if (type_name.contains("complex")) {
1000 if (type_name == "float" &&
1003 if (type_name == "double" &&
1006 if (type_name == "long double" &&
1021 if (!type_name.empty()) {
1022 if (type_name == "wchar_t" &&
1027 if (type_name == "void" &&
1030 if (type_name.contains("long long") &&
1033 if (type_name
944 GetBuiltinTypeForDWARFEncodingAndBitSize( llvm::StringRef type_name, uint32_t dw_ate, uint32_t bit_size) argument
2310 CreateStructForIdentifier( llvm::StringRef type_name, const std::initializer_list<std::pair<const char *, CompilerType>> &type_fields, bool packed) argument
2336 GetOrCreateStructForIdentifier( llvm::StringRef type_name, const std::initializer_list<std::pair<const char *, CompilerType>> &type_fields, bool packed) argument
[all...]
/freebsd-current/sys/dev/acpi_support/
H A Datk0110.c219 const char *type_name, int idx, struct aibs_sensor *sensor,
227 type_name[0], idx,
218 aibs_sensor_added(struct aibs_softc *sc, struct sysctl_oid *so, const char *type_name, int idx, struct aibs_sensor *sensor, const char *descr) argument
/freebsd-current/crypto/openssl/crypto/evp/
H A Dmac_lib.c219 return mac->type_name;
H A Devp_enc.c1545 if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) {
1691 OPENSSL_free(cipher->type_name);
H A Ddigest.c959 if ((md->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1490 std::string type_name; local
1492 type_name = enum_type->getName();
1495 type_name = typedef_type->getName();
1497 type_name = class_type->getName();
1504 if (!regex.Execute(type_name))
H A DPDBASTParser.cpp725 auto type_name = GetPDBBuiltinTypeName(*builtin_type, builtin_ast_type); local
728 builtin_type->getSymIndexId(), type_name, bytes, nullptr,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1168 const DWARFDIE &die, ConstString type_name,
1183 type_name, eSymbolTypeObjCClass, Symtab::eDebugAny,
1202 die, type_name, must_be_implementation));
1222 die, type_name, must_be_implementation);
1167 FindCompleteObjCDefinitionTypeForDIE( const DWARFDIE &die, ConstString type_name, bool must_be_implementation) argument
H A DSymbolFileDWARFDebugMap.h283 const DWARFDIE &die, ConstString type_name, bool must_be_implementation);
H A DSymbolFileDWARF.h355 const DWARFDIE &die, ConstString type_name, bool must_be_implementation);
H A DSymbolFileDWARF.cpp2968 const DWARFDIE &die, ConstString type_name, bool must_be_implementation) {
2972 if (!type_name || (must_be_implementation && !GetObjCClassSymbol(type_name)))
2976 type_name, must_be_implementation, [&](DWARFDIE type_die) {
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h701 CheckValueTypeMatcher(StringRef type_name) argument
702 : Matcher(CheckValueType), TypeName(type_name) {}
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore.h145 #define ALIGNED_TYPE_SIZE(type_name, p_hwfn) \
146 ((sizeof(type_name) + (u32)(1<<(p_hwfn->p_dev->cache_shift))-1) & \
H A Decore_dbg_fw_funcs.c307 const char *type_name; member in struct:rss_mem_defs
315 const char *type_name; member in struct:vfc_ram_defs
3726 offset += ecore_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, ram_defs->mem_name, 0, total_size, 256, false, ram_defs->type_name, true, storm->letter);
3798 rss_defs->entry_width, packed, rss_defs->type_name, false, 0);
3828 char type_name[8] = "???_RAM"; local
3837 OSAL_STRNCPY(type_name, big_ram->instance_name, OSAL_STRLEN(big_ram->instance_name));
3841 offset += ecore_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, mem_name, 0, ram_size, block_size * 8, false, type_name, false, 0);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h477 /// expected to have an Enable{type_name} command to enable and configure
478 /// the related feature. Each type_name for an enabled feature will
481 /// string field named 'type', that contains the type_name of the
485 /// A plugin indicates whether it knows how to handle a type_name.
496 ConfigureRemoteStructuredData(llvm::StringRef type_name,
H A DProcessGDBRemote.h218 ConfigureStructuredData(llvm::StringRef type_name,
H A DGDBRemoteCommunicationClient.cpp4200 llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp) {
4203 if (type_name.empty()) {
4204 error.SetErrorString("invalid type_name argument");
4208 // Build command: Configure{type_name}: serialized config data.
4211 stream.PutCString(type_name);
4236 type_name, response.GetStringRef());
4243 type_name, (int)result);
4199 ConfigureRemoteStructuredData( llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h102 /// The specified \a type_name will be chopped up and the m_context will be
106 /// specified context. Example of \a type_name values that can be specified
130 /// \param[in] type_name
728 void SetName(ConstString type_name);
/freebsd-current/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h575 inline bool IsReadableTypeName(const std::string& type_name) { argument
578 return (type_name.length() <= 20 ||
579 type_name.find_first_of("<(") == std::string::npos);
601 const std::string& type_name = GetTypeName<Value>(); local
602 if (IsReadableTypeName(type_name))
603 *listener->stream() << " (of type " << type_name << ")";
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2588 /// \param[in] type_name
2603 ConfigureStructuredData(llvm::StringRef type_name,
2633 GetStructuredDataPlugin(llvm::StringRef type_name) const;
2903 /// llvm::StringRef type_name,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2314 PythonString type_name(PyRefType::Borrowed, py_return.get());
2315 return ConstString(type_name.GetString());
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp617 llvm::StringRef type_name = GetSimpleTypeName(ti.getSimpleKind()); local
620 return MakeType(uid, ConstString(type_name), size, nullptr, LLDB_INVALID_UID,
/freebsd-current/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A Dsnmp_netgraph.c1153 strcpy(t->name, typelist->typeinfo[u].type_name);
/freebsd-current/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc64 std::string OfType(const std::string& type_name) { argument
66 return IsReadableTypeName(type_name) ? " (of type " + type_name + ")" : "";
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5773 const char *type_name = local
5786 if (type_name && type_name[0])
5787 window.PrintfTruncated(1, "(%s) ", type_name);

Completed in 309 milliseconds

1234