HomeSort by relevance Sort by last modified time
    Searched defs:DC (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/tools/llvm-c-test/
diagnostic.c 57 int *DC = (int *)LLVMContextGetDiagnosticContext(C);
58 if (DC != &handlerCalled || *DC) {
  /external/clang/lib/Sema/
Scope.cpp 221 if (const DeclContext *DC = getEntity())
222 OS << "Entity : (clang::DeclContext*)" << DC << '\n';
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
Disassembler.cpp 79 LLVMDisasmContext *DC = new LLVMDisasmContext(TripleName, DisInfo, TagType,
83 assert(DC && "Allocation failure!");
85 return DC;
92 LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
93 delete DC;
122 // disassembler context specified in the parameter DC. The bytes of the
135 LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
141 const MCDisassembler *DisAsm = DC->getDisAsm();
142 MCInstPrinter *IP = DC->getIP();
145 /*REMOVE*/ nulls(), DC->CommentStream)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
ExternalASTMerger.h 53 DeclContext *DC;
116 bool FindExternalVisibleDeclsByName(const DeclContext *DC,
121 FindExternalLexicalDecls(const DeclContext *DC,
131 /// Returns true if DC can be found in any source AST context.
132 bool CanComplete(DeclContext *DC);
162 /// corresponding (either by forced origin or by name lookup) to DC.
164 void ForEachMatchingDC(const DeclContext *DC, CallbackType Callback);
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 198 DeclContext *DC = Ctx.getTranslationUnitDecl();
204 for (impl_iterator I = impl_iterator(DC->decls_begin()),
205 E = impl_iterator(DC->decls_end()); I != E; ++I) {
  /external/clang/lib/Tooling/Core/
QualTypeNames.cpp 205 const DeclContext *DC = D->getDeclContext();
206 if (const auto *NS = dyn_cast<NamespaceDecl>(DC)) {
215 } else if (const auto *TD = dyn_cast<TagDecl>(DC)) {
217 } else if (const auto *TDD = dyn_cast<TypedefNameDecl>(DC)) {
220 } else if (WithGlobalNsPrefix && DC->isTranslationUnit()) {
285 const DeclContext *DC = Decl->getDeclContext()->getRedeclContext();
286 const auto *Outer = dyn_cast_or_null<NamedDecl>(DC);
287 const auto *OuterNS = dyn_cast_or_null<NamespaceDecl>(DC);
289 if (const auto *CxxDecl = dyn_cast<CXXRecordDecl>(DC)) {
324 } else if (WithGlobalNsPrefix && DC->isTranslationUnit())
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-static-var.cpp 46 DefCon &DC = Z<DefCon>::value;
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 90 LLVMDisasmContext *DC =
93 if (!DC)
96 DC->setCPU(CPU);
97 return DC;
119 LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
120 delete DC;
123 /// \brief Emits the comments that are stored in \p DC comment stream.
125 static void emitComments(LLVMDisasmContext *DC,
128 StringRef Comments = DC->CommentsToEmit.str();
130 const MCAsmInfo *MAI = DC->getAsmInfo()
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_dequant.cpp 60 typeDCStore *DC = video->predDC + mbnum;
367 (*DC)[comp] = datablock[0];
511 typeDCStore *DC = video->predDC + mbnum;
801 (*DC)[comp] = datablock[0];
813 typeDCStore *DC = video->predDC + mbnum;
1052 (*DC)[comp] = datablock[0];
    [all...]
combined_decode.cpp 351 typeDCStore *DC = video->predDC + mbnum;
377 (*DC)[comp] = mid_gray;
535 typeDCStore *DC = video->predDC + mbnum;
671 (*DC)[comp] = mid_gray;
701 (*DC)[4] = mid_gray;
725 (*DC)[5] = mid_gray;
753 (*DC)[comp] = mid_gray;
779 (*DC)[4] = mid_gray;
803 (*DC)[5] = mid_gray;
  /frameworks/compile/slang/
slang_rs_context.cpp 360 clang::DeclContext *const DC = FD->getDeclContext();
364 mCtx, DC, Loc, Loc,
369 VD->setLexicalDeclContext(DC);
370 DC->addDecl(VD);
  /system/bt/btcore/src/
device_class.cc 33 #define DC(x) ((_bt_device_class_t*)(x))
57 static bool device_class_get_major_service_(const bt_device_class_t* dc,
59 static void device_class_clr_major_service_(bt_device_class_t* dc, int bitmask);
60 static void device_class_set_major_service_(bt_device_class_t* dc, int bitmask);
62 void device_class_from_stream(bt_device_class_t* dc, const uint8_t* data) {
63 CHECK(dc != NULL);
65 *dc = *(bt_device_class_t*)data;
68 int device_class_to_stream(const bt_device_class_t* dc, uint8_t* data,
70 CHECK(dc != NULL);
74 data[i] = dc->_[i]
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 173 public static final ASN1ObjectIdentifier DC = new ASN1ObjectIdentifier("0.9.2342.19200300.100.1.25");
202 DefaultSymbols.put(DC, "DC");
237 DefaultLookUp.put("dc", DC);
278 if (oid.equals(EmailAddress) || oid.equals(DC))
  /external/clang/lib/Frontend/
ASTConsumers.cpp 82 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
83 if (DC == DC->getPrimaryContext())
84 DC->dumpLookups(Out, Dump);
87 << DC->getPrimaryContext() << "\n";
193 void PrintDeclContext(const DeclContext* DC, unsigned Indentation);
197 void DeclContextPrinter::PrintDeclContext(const DeclContext* DC,
200 switch (DC->getDeclKind()) {
202 Out << "[translation unit] " << DC;
206 const NamespaceDecl* ND = cast<NamespaceDecl>(DC);
    [all...]
  /external/clang/lib/Index/
IndexDecl.cpp 58 auto *DC = Parm->getDeclContext();
59 if (auto *FD = dyn_cast<FunctionDecl>(DC)) {
62 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(DC)) {
352 const DeclContext *DC = D->getDeclContext()->getRedeclContext();
353 const NamedDecl *Parent = dyn_cast<NamedDecl>(DC);
364 const DeclContext *DC = D->getDeclContext()->getRedeclContext();
365 const NamedDecl *Parent = dyn_cast<NamedDecl>(DC);
432 bool IndexingContext::indexDeclContext(const DeclContext *DC) {
433 for (const auto *I : DC->decls())
  /external/eigen/Eigen/src/LU/arch/
Inverse_SSE.h 78 DC, AB;
79 __m128 dA, dB, dC, dD; // determinant of the sub-matrices
86 // DC = D# * C
87 DC = _mm_mul_ps(_mm_shuffle_ps(D,D,0x0F), C);
88 DC = _mm_sub_ps(DC,_mm_mul_ps(_mm_shuffle_ps(D,D,0xA5), _mm_shuffle_ps(C,C,0x4E)));
97 // dC = |C|
98 dC = _mm_mul_ps(_mm_shuffle_ps(C, C, 0x5F),C);
99 dC = _mm_sub_ss(dC, _mm_movehl_ps(dC,dC))
    [all...]
  /external/guice/core/test/com/googlecode/guice/bundle/
OSGiTestActivator.java 365 static class DC
368 @Inject private DC() {}
  /external/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 490 LazyCallGraph::SCC &DC = *CG.lookupSCC(D);
521 EXPECT_EQ(&DC, CG.lookupSCC(D));
538 EXPECT_EQ(&DC, CG.lookupSCC(D));
555 EXPECT_EQ(&DC, CG.lookupSCC(D));
572 EXPECT_EQ(&DC, CG.lookupSCC(D));
    [all...]

Completed in 395 milliseconds

1 2 3 4 5 6 7 8