Searched defs:type_info (Results 1 - 20 of 20) sorted by relevance

/external/clang/test/SemaCXX/
H A DMicrosoftCompatibilityNoExceptions.cpp6 class type_info {}; class
H A Duninit-variables.cpp4 namespace std { class type_info {}; } class in namespace:std
H A Dvararg-non-pod.cpp95 class type_info { }; class in namespace:std
/external/libcxxabi/src/
H A Dtypeinfo.cpp15 // type_info
17 type_info::~type_info()
/external/clang/test/PCH/
H A Dcxx-typeid.h8 class type_info class in namespace:std
11 virtual ~type_info();
13 bool operator==(const type_info& rhs) const;
14 bool operator!=(const type_info& rhs) const;
16 bool before(const type_info& rhs) const;
20 type_info(const type_info& rhs);
21 type_info& operator=(const type_info& rhs);
H A Dcxx_exprs.h40 class type_info {}; class in namespace:std
/external/clang/test/CodeGenCXX/
H A D2006-03-06-C++RecurseCrash.cpp5 class type_info { class in namespace:std
7 virtual ~type_info();
13 class __si_class_type_info : public std::type_info {
/external/clang/test/SemaTemplate/
H A Dresolve-single-template-id.cpp4 class type_info {}; class in namespace:std
H A Dfun-template-def.cpp9 namespace std { class type_info {}; } class in namespace:std
45 i1 = typeid(t1); // expected-error {{assigning to 'int' from incompatible type 'const std::type_info'}}
H A Dinstantiate-static-var.cpp57 class type_info { }; class in namespace:std
/external/chromium_org/sandbox/win/src/
H A Dhandle_dispatcher.cc64 OBJECT_TYPE_INFORMATION* type_info = local
68 QueryObject(handle.Get(), ObjectTypeInformation, type_info, size, &size);
73 type_info->Name.Buffer[type_info->Name.Length / sizeof(wchar_t)] = L'\0';
76 params[HandleTarget::NAME] = ParamPickerMake(type_info->Name.Buffer);
/external/clang/test/Index/
H A Dload-stmts.cpp29 class type_info { }; class in namespace:std
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc196 DynamicMessage(const TypeInfo* type_info);
234 DynamicMessage::DynamicMessage(const TypeInfo* type_info) argument
235 : type_info_(type_info),
484 DynamicMessage::TypeInfo* type_info = new DynamicMessage::TypeInfo; local
485 *target = type_info;
487 type_info->type = type;
488 type_info->pool = (pool_ == NULL) ? type->file()->pool() : pool_;
489 type_info->factory = this;
501 type_info->offsets.reset(offsets);
510 type_info
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp144 struct type_info {}; struct in namespace:std
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc25 class type_info { class in namespace:std
27 virtual ~type_info();
37 class __class_type_info : public std::type_info {
194 /// The type_info object describing the most-derived class type.
195 std::type_info *TypeInfo;
225 // Check that this is actually a type_info object for a class type.
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc184 DynamicMessage(const TypeInfo* type_info);
222 DynamicMessage::DynamicMessage(const TypeInfo* type_info) argument
223 : type_info_(type_info),
471 DynamicMessage::TypeInfo* type_info = new DynamicMessage::TypeInfo; local
472 *target = type_info;
474 type_info->type = type;
475 type_info->pool = (pool_ == NULL) ? type->file()->pool() : pool_;
476 type_info->factory = this;
488 type_info->offsets.reset(offsets);
497 type_info
[all...]
/external/chromium_org/media/filters/
H A Dstream_parser_factory.cc316 const SupportedTypeInfo& type_info = kSupportedTypeInfo[i]; local
317 if (type == type_info.type) {
319 const CodecInfo* codec_info = type_info.codecs[0];
324 *factory_function = type_info.factory_function;
339 for (int k = 0; type_info.codecs[k]; ++k) {
340 if (MatchPattern(codec_id, type_info.codecs[k]->pattern) &&
341 (!type_info.codecs[k]->validator ||
342 type_info.codecs[k]->validator(codec_id, log_cb))) {
344 VerifyCodec(type_info.codecs[k], audio_codecs, video_codecs);
357 *factory_function = type_info
[all...]
/external/chromium_org/content/common/
H A Dsandbox_win.cc428 OBJECT_TYPE_INFORMATION* type_info = local
432 error = g_QueryObject(handle, ObjectTypeInformation, type_info, size, &size);
434 type_info->Name.Buffer[type_info->Name.Length / sizeof(wchar_t)] = L'\0';
446 if (0 == _wcsicmp(type_info->Name.Buffer, L"Process")) {
/external/lldb/source/DataFormatters/
H A DCXXFormatterFunctions.cpp1171 const uint32_t type_info = valobj.GetClangType().GetTypeInfo(); local
1175 if (type_info & ClangASTType::eTypeIsPointer)
1182 else if (type_info & ClangASTType::eTypeIsReference)
/external/lldb/source/Core/
H A DValueObject.cpp661 const uint32_t type_info = GetTypeInfo(); local
662 if (type_info)
664 if (type_info & (ClangASTType::eTypeHasChildren |
872 const uint32_t type_info = GetTypeInfo (&pointee_or_element_clang_type); local
873 const bool is_pointer_type = type_info & ClangASTType::eTypeIsPointer;
874 const bool is_array_type = type_info & ClangASTType::eTypeIsArray;
1997 const uint32_t type_info = GetTypeInfo (); local
1998 if (type_info & ClangASTType::eTypeIsArray)
2001 if (type_info & ClangASTType::eTypeIsPointer)

Completed in 7322 milliseconds