Searched defs:TST (Results 1 - 13 of 13) sorted by relevance

/external/ping/
H A Dping_common.h36 #define TST(bit) (A(bit) & B(bit)) macro
/external/clang/lib/AST/
H A DTypePrinter.cpp897 const TemplateSpecializationType *TST = local
899 Args = TST->getArgs();
900 NumArgs = TST->getNumArgs();
H A DASTDiagnostic.cpp64 if (const TemplateSpecializationType *TST
66 if (!TST->isTypeAlias())
635 /// TST - the template specialization whose arguments this iterator
637 const TemplateSpecializationType *TST; member in struct:__anon3469::TemplateDiff::TSTiterator
639 /// Index - the index of the template argument in TST.
651 TSTiterator(const TemplateSpecializationType *TST) argument
652 : TST(TST), Index(0), CurrentTA(0), EndTA(0) {
656 TemplateArgument TA = TST->getArg(0);
673 return Index == TST
[all...]
H A DASTContext.cpp1463 const TemplateSpecializationType *TST = cast<TemplateSpecializationType>(T); local
1466 if (TST->isTypeAlias())
1467 return getTypeInfo(TST->getAliasedType().getTypePtr());
2588 QualType TST) const {
2598 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
2799 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); local
2801 TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
/external/clang/lib/Parse/
H A DParser.cpp223 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) { argument
251 << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST)
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp138 const TemplateSpecializationType *TST local
140 Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs());
/external/ping6/
H A Dping6.c172 #define TST(bit) (A(bit) & B(bit)) macro
1500 if (TST(seq % mx_dup_ck)) {
1549 if (TST(seq % mx_dup_ck)) {
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp190 const TemplateSpecializationType *TST = local
192 Args = TST->getArgs();
193 NumArgs = TST->getNumArgs();
/external/v8/src/arm/
H A Dconstants-arm.h199 TST = 8 << 21, // Test. enumerator in enum:v8::internal::Opcode
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMAssembler.h133 TST = (0x8 << 21), enumerator in enum:JSC::ARMAssembler::__anon14896
363 emitInst(static_cast<ARMWord>(cc) | TST | SET_CC, 0, rn, op2);
/external/clang/include/clang/Sema/
H A DDeclSpec.h250 typedef TypeSpecifierType TST; typedef in class:clang::DeclSpec
251 static const TST TST_unspecified = clang::TST_unspecified;
252 static const TST TST_void = clang::TST_void;
253 static const TST TST_char = clang::TST_char;
254 static const TST TST_wchar = clang::TST_wchar;
255 static const TST TST_char16 = clang::TST_char16;
256 static const TST TST_char32 = clang::TST_char32;
257 static const TST TST_int = clang::TST_int;
258 static const TST TST_int128 = clang::TST_int128;
259 static const TST TST_hal
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp4073 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable local
4077 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
4202 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
/external/clang/include/clang/AST/
H A DType.h3768 InjectedClassNameType(CXXRecordDecl *D, QualType TST) argument
3773 Decl(D), InjectedType(TST) {
3774 assert(isa<TemplateSpecializationType>(TST));
3775 assert(!TST.hasQualifiers());
3776 assert(TST->isDependentType());
3850 /// getKeywordForTypeSpec - Converts a type specifier (DeclSpec::TST)
3854 /// getTagTypeKindForTypeSpec - Converts a type specifier (DeclSpec::TST)

Completed in 287 milliseconds