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

/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-limit.cpp3 // Check that this pointer type is TC<int>
4 // CHECK: ![[LINE:[0-9]+]]} ; [ DW_TAG_pointer_type ]{{.*}}[from TC<int>]
5 // CHECK-NEXT: ![[LINE]] ={{.*}}"TC<int>"
8 class TC { class
10 TC(const TC &) {} function in class:TC
11 TC() {} function in class:TC
14 TC<int> tci;
H A Ddebug-info-template.cpp7 // CHECK: metadata [[TCNESTED:![0-9]*]], i32 0, i32 1, %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>::nested"* @tci, null} ; [ DW_TAG_variable ] [tci]
8 // CHECK: [[TCNESTED]] = metadata !{i32 {{[0-9]*}}, metadata !{{[0-9]*}}, metadata [[TC:![0-9]*]], {{.*}} ; [ DW_TAG_structure_type ] [nested]
9 // CHECK: [[TC]] = {{.*}}, metadata [[TCARGS:![0-9]*]]} ; [ DW_TAG_structure_type ] [TC<unsigned int, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>]
51 // CHECK: metadata [[TCNT:![0-9]*]], i32 0, i32 1, %struct.TC* @tcn, null} ; [ DW_TAG_variable ] [tcn]
52 // CHECK: [[TCNT:![0-9]*]] = {{.*}}, metadata [[TCNARGS:![0-9]*]]} ; [ DW_TAG_structure_type ] [TC<int, -3, nullptr, nullptr, nullptr, nullptr, tmpl_impl>]
79 struct TC { struct
91 TC<unsigned, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>::nested tci;
92 TC<int, -3, nullptr, nullptr, nullptr, nullptr, tmpl_impl> tcn;
/external/clang/lib/Driver/
H A DTool.cpp15 const ToolChain &TC) : Name(_Name), ShortName(_ShortName),
16 TheToolChain(TC)
14 Tool(const char *_Name, const char *_ShortName, const ToolChain &TC) argument
H A DCompilation.cpp59 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC, argument
61 if (!TC)
62 TC = &DefaultToolChain;
64 DerivedArgList *&Entry = TCArgs[std::make_pair(TC, BoundArch)];
66 Entry = TC->TranslateArgs(*TranslatedArgs, BoundArch);
H A DTools.h78 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC) {} argument
99 ClangAs(const ToolChain &TC) : Tool("clang::as", argument
100 "clang integrated assembler", TC) {}
118 const ToolChain &TC) : Tool(Name, ShortName, TC) {}
135 Preprocess(const ToolChain &TC) : Common("gcc::Preprocess", argument
136 "gcc preprocessor", TC) {}
147 Precompile(const ToolChain &TC) : Common("gcc::Precompile", argument
148 "gcc precompile", TC) {}
117 Common(const char *Name, const char *ShortName, const ToolChain &TC) argument
159 Compile(const ToolChain &TC) argument
171 Assemble(const ToolChain &TC) argument
182 Link(const ToolChain &TC) argument
198 Assemble(const ToolChain &TC) argument
214 Link(const ToolChain &TC) argument
245 DarwinTool(const char *Name, const char *ShortName, const ToolChain &TC) argument
251 Assemble(const ToolChain &TC) argument
270 Link(const ToolChain &TC) argument
284 Lipo(const ToolChain &TC) argument
297 Dsymutil(const ToolChain &TC) argument
312 VerifyDebug(const ToolChain &TC) argument
330 Assemble(const ToolChain &TC) argument
343 Link(const ToolChain &TC) argument
360 Assemble(const ToolChain &TC) argument
373 Link(const ToolChain &TC) argument
390 Assemble(const ToolChain &TC) argument
403 Link(const ToolChain &TC) argument
421 Assemble(const ToolChain &TC) argument
435 Link(const ToolChain &TC) argument
453 Assemble(const ToolChain &TC) argument
465 Link(const ToolChain &TC) argument
481 Assemble(const ToolChain &TC) argument
494 Link(const ToolChain &TC) argument
511 Assemble(const ToolChain &TC) argument
524 Link(const ToolChain &TC) argument
541 Assemble(const ToolChain &TC) argument
554 Link(const ToolChain &TC) argument
571 Assemble(const ToolChain &TC) argument
584 Link(const ToolChain &TC) argument
601 Link(const ToolChain &TC) argument
[all...]
H A DDriver.cpp342 const ToolChain &TC = getToolChain(*Args); local
345 Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs);
386 if (TC.getTriple().isOSDarwin())
497 const ToolChain &TC = C.getDefaultToolChain(); local
498 if (TC.getTriple().isOSDarwin())
499 BuildUniversalActions(TC, C.getArgs(), Inputs, C.getActions());
501 BuildActions(TC, C.getArgs(), Inputs, C.getActions());
660 const ToolChain &TC = C.getDefaultToolChain(); local
661 OS << "Target: " << TC.getTripleString() << '\n';
721 const ToolChain &TC local
874 BuildUniversalActions(const ToolChain &TC, const DerivedArgList &Args, const InputList &BAInputs, ActionList &Actions) const argument
1006 BuildInputs(const ToolChain &TC, const DerivedArgList &Args, InputList &Inputs) const argument
1149 BuildActions(const ToolChain &TC, const DerivedArgList &Args, const InputList &Inputs, ActionList &Actions) const argument
1433 SelectToolForJob(Compilation &C, const ToolChain *TC, const JobAction *JA, const ActionList *&Inputs) argument
1474 BuildJobsForAction(Compilation &C, const Action *A, const ToolChain *TC, const char *BoundArch, bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, InputInfo &Result) const argument
1498 const ToolChain *TC; local
1863 ToolChain *&TC = ToolChains[Target.str()]; local
[all...]
H A DTools.cpp148 static void AddLinkerInputs(const ToolChain &TC, argument
151 const Driver &D = TC.getDriver();
161 if (!TC.HasNativeLLVMSupport()) {
168 << TC.getTripleString();
182 TC.AddCXXStdlibLibArgs(Args, CmdArgs);
184 TC.AddCCKextLibArgs(Args, CmdArgs);
208 static void addProfileRT(const ToolChain &TC, const ArgList &Args, argument
222 std::string(TC.getDriver().Dir) + "/../lib/libprofile_rt.a";
858 const ToolChain &TC,
885 switch (TC
857 getMipsCPUAndABI(const ArgList &Args, const ToolChain &TC, StringRef &CPUName, StringRef &ABIName) argument
1516 ShouldDisableAutolink(const ArgList &Args, const ToolChain &TC) argument
1528 ShouldDisableCFI(const ArgList &Args, const ToolChain &TC) argument
1541 ShouldDisableDwarfDirectory(const ArgList &Args, const ToolChain &TC) argument
1619 SanitizerArgs(const ToolChain &TC, const ArgList &Args) argument
1743 addProfileRTLinux( const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) argument
1761 addSanitizerRTLinkFlagsLinux( const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs, const StringRef Sanitizer, bool BeforeLibStdCXX, bool ExportSymbols = true) argument
1804 addAsanRTLinux(const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) argument
1820 addTsanRTLinux(const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) argument
1828 addMsanRTLinux(const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) argument
1836 addLsanRTLinux(const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) argument
1844 addUbsanRTLinux(const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs, bool IsCXX, bool HasOtherSanitizerRt) argument
1943 SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T, const JobAction &JA, const ArgList &Args, const InputInfo &Output, const char *OutFile) argument
[all...]
/external/clang/test/Index/
H A Dget-cursor.cpp59 class TC { class
63 template<> void TC<char>::init();
66 EXTERN_TEMPLATE(class TC<char>)
130 // CHECK-TEMPLSPEC: 66:23 ClassDecl=TC:66:23 (Definition) [Specialization of TC:59:7] Extent=[66:1 - 66:31] Spelling=TC ([66:23 - 66:25])
/external/smack/src/org/xbill/DNS/
H A DFlags.java23 public static final byte TC = 6; field in class:Flags
47 flags.add(TC, "tc");
/external/clang/test/CXX/special/class.dtor/
H A Dp3-0x.cpp71 struct TC { struct
73 ~TC() {}
89 TC<int> c;
/external/clang/unittests/AST/
H A DCommentParser.cpp121 TextComment *TC; local
122 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC);
126 StringRef ActualText = TC->getText();
132 if (TC->hasTrailingNewline())
142 TextComment *TC; local
143 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC);
147 StringRef ActualText = TC->getText();
153 if (!TC->hasTrailingNewline())
/external/clang/lib/AST/
H A DTypePrinter.cpp162 Type::TypeClass TC = T->getTypeClass(); local
164 TC = AT->desugar()->getTypeClass();
167 TC = Subst->getReplacementType()->getTypeClass();
169 switch (TC) {
H A DType.cpp1485 switch (TypeBits.TC) {
1808 TagType::TagType(TypeClass TC, const TagDecl *D, QualType can) argument
1809 : Type(TC, can, D->isDependentType(),
/external/clang/tools/libclang/
H A DCXComment.cpp106 if (const TextComment *TC = dyn_cast<TextComment>(C))
107 return TC->isWhitespace();
124 const TextComment *TC = getASTNodeAs<TextComment>(CXC); local
125 if (!TC)
128 return cxstring::createRef(TC->getText());
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2010 llvm::DIType TC = getTypeOrNull(Ty); local
2011 if (TC && TC.isForwardDecl())
2012 ReplaceMap.push_back(std::make_pair(TyPtr, static_cast<llvm::Value*>(TC)));
2022 TC = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
2027 V.first = TC;
2031 ReplaceMap.push_back(std::make_pair(TyPtr, static_cast<llvm::Value*>(TC)));
2033 return TC;
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp764 CanQualType TC = SemaRef.Context.getCanonicalType(T); local
766 if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
770 == getSimplifiedTypeClass(TC)) &&
771 !(PreferredType->isEnumeralType() && TC->isEnumeralType()))
H A DSemaLookup.cpp3390 TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, Distance);
3391 if (isKeyword) TC.makeKeyword();
3392 addCorrection(TC);
4177 TypoCorrection TC(*QRI);
4178 TC.setCorrectionSpecifier(NI->NameSpecifier);
4179 TC.setQualifierDistance(NI->EditDistance);
4180 TC.setCallbackDistance(0); // Reset the callback distance
4184 TC.addCorrectionDecl(*TRD);
4185 Consumer.addCorrection(TC);
4231 TypoCorrection TC variable
4253 TypoCorrection TC = BestResults["super"].front(); variable
[all...]
H A DSemaExpr.cpp3970 TypoCorrection TC; local
3971 if (FDecl && (TC = TryTypoCorrectionForCall(
3975 std::string CorrectedStr(TC.getAsString(getLangOpts()));
3976 std::string CorrectedQuotedStr(TC.getQuoted(getLangOpts()));
3984 << FixItHint::CreateReplacement(TC.getCorrectionRange(),
3986 Diag(TC.getCorrectionDecl()->getLocStart(),
4003 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
4016 TypoCorrection TC; local
4017 if (FDecl && (TC = TryTypoCorrectionForCall(
4021 std::string CorrectedStr(TC
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2626 unsigned TC = SE->getSmallConstantTripCount(TheLoop, Latch); local
2627 if (TC > 0u && TC < TinyTripCountVectorThreshold) {
4073 unsigned TC = SE->getSmallConstantTripCount(TheLoop, TheLoop->getLoopLatch());
4074 DEBUG(dbgs() << "LV: Found trip count:"<<TC<<"\n");
4100 if (TC < 2) {
4106 VF = TC % MaxVectorSize;
4221 unsigned TC = SE->getSmallConstantTripCount(TheLoop,
4223 if (TC > 1 && TC < TinyTripCountUnrollThreshol
[all...]
/external/clang/include/clang/AST/
H A DType.h1176 unsigned TC : 8;
1369 TypeBits.TC = tc;
1395 TypeClass getTypeClass() const { return static_cast<TypeClass>(TypeBits.TC); }
3279 TagType(TypeClass TC, const TagDecl *D, QualType can);
3299 explicit RecordType(TypeClass TC, RecordDecl *D) argument
3300 : TagType(TC, reinterpret_cast<const TagDecl*>(D), QualType()) { }

Completed in 754 milliseconds