HomeSort by relevance Sort by last modified time
    Searched refs:Destructor (Results 1 - 14 of 14) sorted by null

  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 37 // CHECK: private unnamed_addr constant [12 x i8] c"~Destructor\00"
38 // CHECK: private unnamed_addr constant [30 x i8] c"NS::Destructor::~Destructor()\00"
271 class Destructor {
273 ~Destructor() {
480 NS::Destructor destructor; local
  /external/skia/src/xml/
SkJSDisplayable.cpp 62 static void Destructor(JSContext *cx, JSObject *obj);
209 gDisplayableClasses[type].finalize = SkJSDisplayable::Destructor;
214 void SkJSDisplayable::Destructor(JSContext *cx, JSObject *obj) {
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp 49 // destructor name; see core issues 399 and 555. Issue 399 in
50 // particular shows where the current description of destructor name
73 // pseudo-destructor-expression or a member access expression, and
84 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
181 // this is the destructor for that class.
275 && "only get destructor types from declspecs");
640 // If the class has a destructor, we must be able to call it.
644 CXXDestructorDecl *Destructor = LookupDestructor(RD);
645 if (!Destructor)
648 MarkFunctionReferenced(E->getExprLoc(), Destructor);
    [all...]
SemaInit.cpp     [all...]
SemaDecl.cpp 280 // constructor or destructor name (in such a case, the scope specifier
    [all...]
SemaExpr.cpp 567 // or a non-trivial destructor, with no corresponding parameter,
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
TreeTransform.h 424 /// and destructor names and then (if needed) rebuilds the declaration name.
    [all...]
  /external/chromium/webkit/glue/media/
simple_data_source_unittest.cc 213 EXPECT_CALL(*callback, Destructor());
  /external/valgrind/unittest/
posix_tests.cc 1164 void Destructor(void *ptr) {
1181 pthread_key_create(&key, Destructor);
  /external/clang/include/clang/AST/
ExprCXX.h 790 /// Destructor - The destructor that needs to be called.
791 const CXXDestructorDecl *Destructor;
793 CXXTemporary(const CXXDestructorDecl *destructor)
794 : Destructor(destructor) { }
798 const CXXDestructorDecl *Destructor);
800 const CXXDestructorDecl *getDestructor() const { return Destructor; }
802 Destructor = Dtor;
808 /// This ensures the destructor is called for the temporary. It should only b
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 670 const CXXDestructorDecl *Destructor) {
671 return new (C) CXXTemporary(Destructor);
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 336 /// spec checks delayed, plus the overridden destructor.
637 /// expressions for which we have deferred checking the destructor.
813 // won't emit the diagnostic in its own destructor.
    [all...]

Completed in 238 milliseconds