HomeSort by relevance Sort by last modified time
    Searched refs:DC (Results 76 - 100 of 220) sorted by null

1 2 34 5 6 7 8 9

  /external/clang/lib/CodeGen/
CGDecl.cpp 161 const DeclContext *DC = D.getDeclContext();
162 if (auto *CD = dyn_cast<CapturedDecl>(DC))
163 DC = cast<DeclContext>(CD->getNonClosureContext());
164 if (const auto *FD = dyn_cast<FunctionDecl>(DC))
166 else if (const auto *BD = dyn_cast<BlockDecl>(DC))
168 else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(DC))
241 const Decl *DC = cast<Decl>(D.getDeclContext());
245 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC)) {
246 DC = DC->getNonClosureContext()
    [all...]
  /external/clang/test/Sema/
attr-mode.c 29 typedef _Complex float c64 __attribute((mode(DC)));
  /external/clang/lib/AST/
MicrosoftMangle.cpp 60 const DeclContext *DC = D->getDeclContext();
61 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(DC))
64 return DC;
67 static const DeclContext *getEffectiveParentContext(const DeclContext *DC) {
68 return getEffectiveDeclContext(cast<Decl>(DC));
169 const DeclContext *DC = getEffectiveDeclContext(ND);
170 if (!DC->isFunctionOrMethod())
190 discriminator = ++Discriminator[std::make_pair(DC, ND->getIdentifier())];
361 const DeclContext *DC = getEffectiveDeclContext(D);
363 if (DC->isFunctionOrMethod() && D->hasLinkage()
    [all...]
DeclPrinter.cpp 55 void VisitDeclContext(DeclContext *DC, bool Indent = true);
183 const DeclContext *DC = this;
184 while (!DC->isTranslationUnit())
185 DC = DC->getParent();
187 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
271 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
279 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
    [all...]
ASTDumper.cpp 229 bool hasNodes(const DeclContext *DC);
230 void dumpDeclContext(const DeclContext *DC);
231 void dumpLookups(const DeclContext *DC, bool DumpDecls);
723 bool ASTDumper::hasNodes(const DeclContext *DC) {
724 if (!DC)
727 return DC->hasExternalLexicalStorage() ||
728 DC->noload_decls_begin() != DC->noload_decls_end();
731 void ASTDumper::dumpDeclContext(const DeclContext *DC) {
732 if (!DC)
    [all...]
TypePrinter.cpp 103 void AppendScope(DeclContext *DC, raw_ostream &OS);
863 void TypePrinter::AppendScope(DeclContext *DC, raw_ostream &OS) {
864 if (DC->isTranslationUnit()) return;
865 if (DC->isFunctionOrMethod()) return;
866 AppendScope(DC->getParent(), OS);
868 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(DC)) {
877 = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
886 } else if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 89 // Since its enclosing DC is dependent, all the lambdas between it and the
246 DeclContext *DC = CurContext;
247 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext()))
248 DC = DC->getParent();
252 CXXRecordDecl *Class = CXXRecordDecl::CreateLambda(Context, DC, Info,
257 DC->addDecl(Class);
264 static bool isInInlineFunction(const DeclContext *DC) {
    [all...]
SemaExceptionSpec.cpp     [all...]
SemaStmt.cpp     [all...]
  /external/clang/lib/Analysis/
CallGraph.cpp 99 if (auto *DC = dyn_cast<DeclContext>(I))
100 addNodesForBlocks(DC);
UninitializedValues.cpp 36 static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) {
39 !vd->isImplicit() && vd->getDeclContext() == dc) {
57 void computeMap(const DeclContext &dc);
67 void DeclToIndex::computeMap(const DeclContext &dc) {
69 DeclContext::specific_decl_iterator<VarDecl> I(dc.decls_begin()),
70 E(dc.decls_end());
73 if (isTrackedVar(vd, &dc))
117 void computeSetOfDeclarations(const DeclContext &dc);
145 void CFGBlockValues::computeSetOfDeclarations(const DeclContext &dc) {
146 declToIndex.computeMap(dc);
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
rx-decode.opc 106 #define DC(c) OP (0, RX_Operand_Immediate, 0, c)
727 ID(branch); Scc(n); DC(pc + dsp3map[dsp]);
730 ID(branch); Scc(cond); DC(pc + IMMex (1));
733 ID(branch); Scc(c); DC(pc + IMMex (2));
737 ID(branch); DC(pc + dsp3map[dsp]);
740 ID(branch); DC(pc + IMMex(1));
743 ID(branch); DC(pc + IMMex(2));
746 ID(branch); DC(pc + IMMex(3));
759 ID(jsr); DC(pc + IMMex(2));
762 ID(jsr); DC(pc + IMMex(3))
    [all...]
rl78-decode.c 108 #define DC(c) OP (0, RL78_Operand_Immediate, 0, c)
843 ID(branch_cond_clear); SM(None, SADDR); SB(bit); DC(pc+IMMS(1)+4); COND(T);
863 ID(branch_cond_clear); DC(pc+IMMS(1)+3); SR(A); SB(bit); COND(T);
881 ID(branch_cond); SM(None, SADDR); SB(bit); DC(pc+IMMS(1)+4); COND(T);
901 ID(branch_cond); DC(pc+IMMS(1)+3); SR(A); SB(bit); COND(T);
919 ID(branch_cond); SM(None, SADDR); SB(bit); DC(pc+IMMS(1)+4); COND(F);
939 ID(branch_cond); DC(pc+IMMS(1)+3); SR(A); SB(bit); COND(F);
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReaderDecl.cpp 119 DeclContext *DC,
121 static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC,
194 DeclContext *DC);
314 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
    [all...]
  /external/clang/lib/Frontend/
MultiplexConsumer.cpp 108 void AddedVisibleDecl(const DeclContext *DC, const Decl *D) override;
146 const DeclContext *DC, const Decl *D) {
148 Listeners[i]->AddedVisibleDecl(DC, D);
  /toolchain/binutils/binutils-2.25/gas/config/
m68k-parse.h 171 DC, /* data cache token */
  /external/webp/src/dsp/
dec_sse2.c 140 const __m128i dc = _mm_add_epi16(T0, four); local
141 const __m128i a = _mm_add_epi16(dc, T2);
142 const __m128i b = _mm_sub_epi16(dc, T2);
    [all...]
enc_mips_dsp_r2.c 483 int DC, DC1;
498 "addu %[DC], %[temp0], %[temp2] \n\t"
499 "move %[DC1], %[DC] \n\t"
513 "addu %[DC], %[DC], %[DC1] \n\t"
527 "addu %[DC], %[temp0], %[temp2] \n\t"
528 "addu %[DC], %[DC], %[DC] \n\t"
530 "shra_r.w %[DC], %[DC], 5 \n\t
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 373 operator<<(const PartialDiagnostic &PD, T *DC) {
374 PD.AddTaggedVal(reinterpret_cast<intptr_t>(DC),
  /external/clang/tools/libclang/
IndexDecl.cpp 331 void IndexingContext::indexDeclContext(const DeclContext *DC) {
332 for (const auto *I : DC->decls())
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-thai.cc 41 DC,
54 return DC;
174 T0, /* DC */
201 B2, /* DC */
  /external/llvm/lib/DebugInfo/DWARF/
DWARFUnit.cpp 34 DWARFUnit::DWARFUnit(DWARFContext &DC, const DWARFSection &Section,
39 : Context(DC), InfoSection(Section), Abbrev(DA), RangeSection(RS),
  /external/v8/test/mjsunit/regress/
regress-3247124.js 28 var foo = unescape("%E0%E2%EA%F4%FB%E3%F5%E1%E9%ED%F3%FA%E7%FC%C0%C2%CA%D4%DB%C3%D5%C1%C9%CD%D3%DA%C7%DC");
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 27 ; * Contains module for DC/AC coefficient prediction
33 ; * Performs adaptive DC/AC coefficient prediction for an intra block. Prior
139 ;// DC Prediction

Completed in 3074 milliseconds

1 2 34 5 6 7 8 9