Searched refs:destructors (Results 1 – 25 of 76) sorted by relevance
1234
/external/compiler-rt/BlocksRuntime/tests/ |
D | copyconstructor.C | 14 int destructors = 0; variable 52 ++destructors; in ~TestObject() 79 if (constructors != destructors) { in main() 80 printf("%d constructors but only %d destructors\n", constructors, destructors); in main()
|
D | reference.C | 18 int destructors = 0; variable 57 ++destructors; in ~TestObject()
|
/external/bison/tests/ |
D | glr-regression.at | 736 ## No users destructors if stack 0 deleted. See ## 740 AT_SETUP([No users destructors if stack 0 deleted]) 751 static int destructors = 0; 760 destructors += 1; 766 ambig0 'a' { destructors += 2; USE ($2); } 767 | ambig1 start { destructors += 1; } 768 | ambig2 start { destructors += 1; } 795 if (tokens != destructors) 797 fprintf (stderr, "Tokens = %d, Destructors = %d\n", tokens, destructors); 878 ## Undesirable destructors if user action cuts parse. ## [all …]
|
D | testsuite | 65519 at_desc='No users destructors if stack 0 deleted' 65546 static int destructors = 0; 65555 destructors += 1; 65561 ambig0 'a' { destructors += 2; USE ($2); } 65562 | ambig1 start { destructors += 1; } 65563 | ambig2 start { destructors += 1; } 65590 if (tokens != destructors) 65592 fprintf (stderr, "Tokens = %d, Destructors = %d\n", tokens, destructors); 65839 at_desc='Undesirable destructors if user action cuts parse' 65863 static int destructors = 0; [all …]
|
/external/clang/docs/analyzer/ |
D | IPA.txt | 42 -analyzer-config c++-inlining=[none | methods | constructors | destructors] 45 inlined as well; it doesn't make sense to inline destructors without inlining 103 call. (In the case of calls without origin expressions, such as destructors, 155 implicit destructors, or if the destructors for the given object are not 161 or operator 'delete', nor does it inline the constructors and destructors 322 placement of their destructors in the CFG. We currently won't inline their 324 destructors at all, not even to invalidate the region. 331 ExprEngine does not inline any constructors or destructors for arrays.
|
/external/skia/gyp/ |
D | common_conditions.gypi | 132 # 'WARNING_CFLAGS': '-Wexit-time-destructors',
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | objc_zombie.mm | 38 // are run to call C++ destructors as part of |-dealloc|. The 113 // initialized, because otherwise C++ destructors won't be called. 125 // Destroy the instance by calling C++ destructors and clearing it
|
/external/webkit/Source/JavaScriptCore/gyp/ |
D | JavaScriptCore.gyp | 104 … '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
|
/external/webkit/Source/WebCore/gyp/ |
D | WebCore.gyp | 152 … '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
|
/external/llvm/bindings/ocaml/executionengine/ |
D | llvm_executionengine.mli | 139 (** [run_static_dtors ee] executes the static destructors of each module in
|
/external/clang/lib/StaticAnalyzer/ |
D | README.txt | 123 -cfg-add-implicit-dtors Add C++ implicit destructors to CFGs for all analyses
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-05-18-ExceptionHandling.txt | 196 llvm. Java would be very similar, except it only uses destructors to unlock
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 282 // object destructors cloned from the parent process aren't
|
/external/mesa3d/docs/ |
D | README.DJ | 161 turn will (hopefully) call the destructors, thus cleaning up your/my mess ;-)
|
/external/clang/docs/ |
D | Block-ABI-Apple.txt | 631 …__((NSObject)) variables, or C++ const copied objects with constructor/destructors. The (1<<26) b… 652 …__((NSObject)) variables, or C++ const copied objects with constructor/destructors, and again the …
|
/external/bison/ |
D | NEWS | 27 if the symbols have destructors. For instance: 69 The %parse-params are available in the destructors (and the
|
/external/chromium/chrome/browser/ |
D | chrome_browser_application_mac.mm | 90 // (destructors are skipped). Chrome should be NSException-free,
|
/external/bison/data/ |
D | yacc.c | 131 ## Defining symbol actions, e.g., printers and destructors. ##
|
/external/compiler-rt/ |
D | README.txt | 211 // because there are no catch clauses or destructors to be run. But there
|
/external/clang/include/clang/Basic/ |
D | DiagnosticGroups.td | 109 def ExitTimeDestructors : DiagGroup<"exit-time-destructors">;
|
/external/llvm/docs/ |
D | ExceptionHandling.rst | 203 destructors are a typical example, but other languages and language extensions
|
D | doxygen.cfg.in | 99 # members were ordinary class members. Constructors, destructors and assignment 417 # constructors and destructors are listed first. If set to NO (the default)
|
/external/clang/include/clang/Driver/ |
D | CC1Options.td | 201 HelpText<"Emit complete constructors and destructors as aliases when possible">;
|
/external/webkit/Source/WebKit/ |
D | ChangeLog | 242 and destructors, weak vtables, inappropriate files in the framework wrappers, 3355 create script to check for exit-time destructors 3358 phase that runs the check-for-exit-time-destructors script.
|
/external/qemu/distrib/sdl-1.2.15/Xcode/XcodeDocSet/ |
D | Doxyfile | 109 # members were ordinary class members. Constructors, destructors and assignment 421 # constructors and destructors are listed first. If set to NO (the default)
|
1234