/external/protobuf/gtest/include/gtest/ |
gtest-test-part.h | 45 // Don't inherit from TestPartResult as its destructor is not virtual. 123 // Don't inherit from TestPartResultArray as its destructor is not 159 // The original result reporter is restored in the destructor.
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_message.h | 120 // Generate constructors and destructor. 124 // destructor: http://gcc.gnu.org/bugs.html#nonbugs_cxx 129 // Generate the shared destructor code.
|
/external/skia/include/core/ |
SkWeakRefCnt.h | 21 It is an error for the destructor to be called explicitly (or via the 119 // Prevents code in destructor from happening before the decrement. 122 // so our destructor won't complain
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
gtest-test-part.h | 46 // Don't inherit from TestPartResult as its destructor is not virtual. 124 // Don't inherit from TestPartResultArray as its destructor is not 159 // The original result reporter is restored in the destructor.
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
progress.hpp | 32 // A progress_timer behaves like a timer except that the destructor displays 44 // A) Throwing an exception from a destructor is a Bad Thing. 45 // B) The progress_timer destructor does output which may throw.
|
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/hdr/ |
dmLockingHelper.h | 86 * Destructor 150 * Destructor 166 * Destructor
|
/external/bison/src/ |
symlist.c | 226 symbol_list_destructor_set (symbol_list *node, code_props const *destructor) 231 symbol_destructor_set (node->content.sym, destructor); 235 semantic_type_get (node->content.type_name), destructor); 238 default_tagged_destructor_set (destructor); 241 default_tagless_destructor_set (destructor);
|
/external/ceres-solver/include/ceres/internal/ |
scoped_ptr.h | 53 // A scoped_ptr<T> is like a T*, except that the destructor of 72 // Destructor. If there is a C object, delete it. 179 // as we would call the temporary's object destructor (and thus delete p) 185 // with new [] and the destructor deletes objects with delete []. 204 // Destructor. If there is a C object, delete it.
|
/external/chromium_org/ppapi/tests/ |
test_instance_deprecated.cc | 44 // Set up a post-condition for the test so that we can ensure our destructor 74 // Out-of-process, this destructor might not actually get invoked. See the 229 // destructor is not run. 240 // A scriptable object that should cause a crash if its destructor is run. We 241 // don't run the destructor for objects which the plugin leaks. This is to
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
strenum.h | 47 * upon any subsequent call to the enumeration's destructor, next, 58 * Destructor. 108 * to next, unext, snext, reset, or the enumerator's destructor.</p> 139 * to next, unext, snext, reset, or the enumerator's destructor.</p> 161 * to next, unext, snext, reset, or the enumerator's destructor.</p>
|
/external/icu/icu4c/source/common/unicode/ |
strenum.h | 47 * upon any subsequent call to the enumeration's destructor, next, 58 * Destructor. 108 * to next, unext, snext, reset, or the enumerator's destructor.</p> 140 * to next, unext, snext, reset, or the enumerator's destructor.</p> 162 * to next, unext, snext, reset, or the enumerator's destructor.</p>
|
/external/clang/lib/CodeGen/ |
CGCXXABI.h | 88 /// Returns true if the given constructor or destructor is one of the 92 /// There currently is no way to indicate if a destructor returns 'this' 265 /// Build the signature of the given destructor variant by adding 275 /// Returns true if the given destructor type should be emitted as a linkonce 281 /// Emit destructor variants required by this ABI. 335 /// Emit the destructor call. 346 /// building a constructor or a destructor. On return, NeedsVirtualOffset 370 /// Emit the ABI-specific virtual destructor call. 482 /// Emits the guarded initializer and destructor setup for the given 494 /// Emit code to force the execution of a destructor during globa [all...] |
/external/clang/test/CodeGenCXX/ |
predefined-expr.cpp | 39 // CHECK: private unnamed_addr constant [12 x i8] c"~Destructor\00" 40 // CHECK: private unnamed_addr constant [30 x i8] c"NS::Destructor::~Destructor()\00" 273 class Destructor { 275 ~Destructor() { 499 NS::Destructor destructor; local
|
/external/bison/tests/ |
input.at | 64 %destructor 130 # Generate the token, type, and destructor 136 %destructor { destroy ($$); } INT a b c d e f g h i j k l;]]]) 143 # is set, then the token, type, and destructor 302 ## Default %printer and %destructor redeclared. ## 305 AT_SETUP([Default %printer and %destructor redeclared]) 308 [[%destructor { destroy ($$); } <*> <*> 311 %destructor { destroy ($$); } <*> 314 %destructor { destroy ($$); } <> <> 317 %destructor { destroy ($$); } < [all...] |
glr-regression.at | 451 ## User destructor for unresolved GLR semantic value. See ## 455 AT_SETUP([User destructor for unresolved GLR semantic value]) 472 %destructor { 475 fprintf (stderr, "Bad destructor call.\n"); 511 ## User destructor after an error during a split parse. See ## 515 AT_SETUP([User destructor after an error during a split parse]) 531 %destructor { 532 printf ("Destructor called.\n"); 556 [Destructor called. 565 ## Duplicated user destructor for lookahead. See # [all...] |
/external/libcxxabi/www/ |
spec.html | 459 void (*destructor)(void*) );</code> 482 void (*destructor)(void*), 507 void (*destructor)(void*), 532 void (*destructor)(void*) );</code> 551 void (*destructor)(void*) );</code> 570 void (*destructor)(void*) );</code> 589 void (*destructor)(void*) );</code> 608 void (*destructor)(void*), 628 void (*destructor)(void*), 650 void (*destructor)(void*) );</code [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Vector.h | 509 // VectorDestructorBase defines the destructor of a vector. This base is used in order to 510 // completely avoid creating a destructor for a vector that does not need to be destructed. 512 // vector has a trivial destructor and we use that in a compiler plugin to ensure the 515 // All non-GC managed vectors need a destructor. This destructor will simply call finalize on the actual vector type. 522 // Heap-allocated vectors with no inlineCapacity never need a destructor. 526 // Heap-allocator vectors with inlineCapacity need a destructor if the inline elements do. 530 // case we can use HeapVectorWithInlineCapacityDestructorBase to define a destructor 567 // destructor calls as long as the memory is zeroed. 579 // destructor calls as long as the memory is zeroed [all...] |
/external/chromium_org/third_party/cld/base/ |
scoped_ptr.h | 35 // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T> 56 // Destructor. If there is a C object, delete it. 163 // as we would call the temporary's object destructor (and thus delete p) 169 // with new [] and the destructor deletes objects with delete []. 189 // Destructor. If there is a C object, delete it. 316 // Destructor. If there is a C object, call the Free functor.
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
simple_mutex.h | 96 // the Mutex global destructor runs before some other global 97 // destructor, that tries to acquire the mutex). The way we 99 // mutexes should pass in, that causes the destructor to do no 156 // It inhibits work being done by the destructor, which makes it 158 // destructor. 161 // Destructor
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
simple_mutex.h | 96 // the Mutex global destructor runs before some other global 97 // destructor, that tries to acquire the mutex). The way we 99 // mutexes should pass in, that causes the destructor to do no 156 // It inhibits work being done by the destructor, which makes it 158 // destructor. 161 // Destructor
|
/external/chromium_org/base/threading/ |
thread.h | 67 // This is required to avoid a data race between the destructor modifying the 110 // before deleting your Thread objects, as the destructor will do it. 111 // IF YOU ARE A SUBCLASS OF Thread, YOU MUST CALL THIS IN YOUR DESTRUCTOR.
|
/external/chromium_org/chromeos/dbus/ |
nfc_client_helpers.h | 90 // Destructor destroys all managed object proxies and notifies the delegate 164 // The destructor destroys all contained DBusObjectMap instances. This will 166 // to the DBusObjectMap destructor.
|
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ShadowRoot.cpp | 77 // We cannot let ContainerNode destructor call willBeDeletedFromDocument() 78 // for this ShadowRoot instance because TreeScope destructor 83 // We must remove all of our children first before the TreeScope destructor
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
ftdriver.h | 119 /* done_face :: The format-specific face destructor. */ 123 /* done_size :: The format-specific size destructor. */ 127 /* done_slot :: The format-specific slot destructor. */
|
/external/freetype/include/internal/ |
ftdriver.h | 119 /* done_face :: The format-specific face destructor. */ 123 /* done_size :: The format-specific size destructor. */ 127 /* done_slot :: The format-specific slot destructor. */
|