• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:condition

4484 compilation error messages if the condition they check fail.
4495 This function is called whenever one of debugging macros fails (i.e. condition
4508 \func{}{wxASSERT}{\param{}{condition}}
4510 Assert macro. An error message will be generated if the condition is false in
4513 Please note that the condition in wxASSERT() should have no side effects
4543 \func{}{wxASSERT\_MSG}{\param{}{condition}, \param{}{msg}}
4545 Assert macro with message. An error message will be generated if the condition is false.
4555 \func{}{wxCOMPILE\_TIME\_ASSERT}{\param{}{condition}, \param{}{msg}}
4558 specified {\it condition} is false. The compiler error message should include
4585 \func{}{wxCOMPILE\_TIME\_ASSERT}{\param{}{condition}, \param{}{msg}, \param{}{name}}
4619 \func{}{wxCHECK}{\param{}{condition}, \param{}{retValue}}
4621 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
4627 \func{}{wxCHECK\_MSG}{\param{}{condition}, \param{}{retValue}, \param{}{msg}}
4629 Checks that the condition is true, returns with the given return value if not (FAILs in debug mode).
4638 \func{}{wxCHECK\_RET}{\param{}{condition}, \param{}{msg}}
4640 Checks that the condition is true, and returns if not (FAILs with given error
4649 \func{}{wxCHECK2}{\param{}{condition}, \param{}{operation}}
4651 Checks that the condition is true and \helpref{wxFAIL}{wxfail} and execute
4654 returning from the function must be done when the {\it condition} is false.
4661 \func{}{wxCHECK2}{\param{}{condition}, \param{}{operation}, \param{}{msg}}
4665 instead of wxFAIL() if the {\it condition} is false.