Searched refs:parenthesis (Results 1 – 25 of 143) sorted by relevance
123456
/third_party/boost/libs/utility/identity_type/doc/ |
D | identity_type.qbk | 12 [purpose wraps types with round parenthesis] 22 This library allows to wrap types within round parenthesis so they can always be passed as macro pa… 43 …ype passed as the first macro parameter contains a comma `,` not wrapped by round parenthesis `()`. 50 Note that, differently from the compiler, the preprocessor only recognizes round parenthesis `()`. 51 Angular `<>` and squared `[]` parenthesis are not recognized by the preprocessor when parsing macro… 67 …to multiple macro parameters because it is always wrapped by a set of extra round parenthesis `()`. 68 … two sets of round parenthesis must be used: The parenthesis to invoke the macro `BOOST_IDENTITY_T… 72 Using variadic macros, it would be possible to require a single set of extra parenthesis `BOOST_IDE… 116 …ned macro, the caller of the user macro will have to specify the extra parenthesis (see also [@../… 120 However, note that the caller will /always/ have to specify the extra parenthesis even when the mac… [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | await_unaryExpression_es2017_3.errors.txt | 20 await x++; // OK but shouldn't need parenthesis 25 await x--; // OK but shouldn't need parenthesis
|
D | await_unaryExpression_es6_3.errors.txt | 20 await x++; // OK but shouldn't need parenthesis 25 await x--; // OK but shouldn't need parenthesis
|
D | await_unaryExpression_es6_3.types | 29 await x++; // OK but shouldn't need parenthesis 42 await x--; // OK but shouldn't need parenthesis
|
D | await_unaryExpression_es2017_3.types | 29 await x++; // OK but shouldn't need parenthesis 42 await x--; // OK but shouldn't need parenthesis
|
D | await_unaryExpression_es6_3.symbols | 20 await x++; // OK but shouldn't need parenthesis 30 await x--; // OK but shouldn't need parenthesis
|
D | await_unaryExpression_es2017_3.symbols | 20 await x++; // OK but shouldn't need parenthesis 30 await x--; // OK but shouldn't need parenthesis
|
D | declarationEmitFirstTypeArgumentGenericFunctionType.types | 29 function f4(): X<(<Tany>() => Tany)> { // written type with parenthesis
|
/third_party/boost/libs/graph/example/ |
D | dfs_parenthesis.expected | 1 DFS parenthesis:
|
/third_party/boost/libs/local_function/doc/ |
D | advanced_topics.qbk | 45 …ow commas `,` within macro parameters unless they are wrapped by round parenthesis `()` (see the _… 46 …preprocessor errors unless they are wrapped with an extra set of round parenthesis `()` as explain… 49 …parenthesis `<>` (templates, etc) or square parenthesis `[]` (multidimensional array access, etc) … 50 However, macro parameters with commas which are already wrapped by round parenthesis `()` are fine … 73 This comma is not wrapped by any round parenthesis `()` thus it will cause a preprocessor error. 78 …lity/identity_type.hpp= header can be used to wrap a type within extra parenthesis `()` so to over… 90 …total of two set of parenthesis `()` are needed: The parenthesis to invoke the `BOOST_IDENTITY_TYP… 131 Again, this comma is not wrapped by any parenthesis `()` so it will cause a preprocessor error. 132 …and not a type expression), it can simply be wrapped within an extra set of round parenthesis `()`: 143 …d fine because it contains a comma `,` which is already wrapped by the parenthesis `()` of the fun… [all …]
|
/third_party/gn/src/gn/format_test_data/ |
D | 025.gn | 1 # Various parenthesis maintenance/trimming.
|
D | 025.golden | 1 # Various parenthesis maintenance/trimming.
|
/third_party/boost/libs/regex/doc/ |
D | collating_names.qbk | 76 [[left-parenthesis] [(]] 77 [[right-parenthesis] [)]]
|
D | format_boost_syntax.qbk | 17 want a to output literal parenthesis. 30 You will normally need to surround a conditional-expression with parenthesis in
|
/third_party/boost/libs/multiprecision/performance/ |
D | veronoi_performance.log | 12 [[Integer Type][Relative Performance (Actual time in parenthesis)]]
|
D | miller_rabin_performance.log | 27 [[Integer Type][Relative Performance (Actual time in parenthesis)]]
|
/third_party/boost/libs/vmd/doc/ |
D | vmd_type.qbk | 35 * the left parenthesis of a tuple 37 and if the first character is not the left parenthesis of a tuple
|
D | vmd_number.qbk | 38 * the left parenthesis of a tuple 40 and if the first character is not the left parenthesis of a tuple
|
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
D | space-before-function-paren.md | 1 # Enforces consistent spacing before function parenthesis (`space-before-function-paren`)
|
D | await-thenable.md | 4 …), this pattern is often a programmer error, such as forgetting to add parenthesis to call a funct…
|
/third_party/curl/docs/ |
D | CODE_STYLE.md | 115 between the keyword and the open parenthesis. Like this: 237 If no parenthesis, use the default indent: 244 Function invoke with an open parenthesis: 255 Align with the "current open" parenthesis:
|
D | CHECKSRC.md | 105 - `SPACEAFTERPAREN`: there was a space after open parenthesis, `( text`. 107 - `SPACEBEFORECLOSE`: there was a space before a close parenthesis, `text )`. 111 - `SPACEBEFOREPAREN`: there was a space before an open parenthesis, `if (`,
|
/third_party/ejdb/ |
D | uncrustify.cfg | 218 # parenthesis, as in 'void* (*)(). 253 # parenthesis of a function type template argument, between the type and 254 # parenthesis of an array parameter, or between 'decltype(...)' and the 265 # (D) Add or remove space before the parenthesis in the D constructs 411 # Add or remove space between an open parenthesis and comma, 456 # Add or remove space between the operator symbol and the open parenthesis, as 471 # Add or remove space between the type and open parenthesis in a C++ cast, 595 # parenthesis. 824 # (OC) Add or remove space between '@synchronized' and the open parenthesis, 909 # Add or remove space inside parenthesis of the new operator [all …]
|
/third_party/boost/libs/test/doc/testing_tools/ |
D | boost_test_universal_macro.qbk | 72 * statements containing ternary conditions: those statement should be surrounded by parenthesis as … 75 by parenthesis
|
/third_party/boost/libs/fusion/test/support/ |
D | unused.cpp | 22 boost::fusion::unused_type BOOST_ATTRIBUTE_UNUSED parenthesis = boost::fusion::unused_type(); in unused_construction() local
|
123456