| /xsrc/external/mit/fontconfig/dist/src/ |
| ftglue.h | 87 #define FT_SET_ERROR( expression ) \ 88 ( ( error = (expression) ) != 0 )
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/ |
| glcpp-parse.y | 180 %type <expression_value> expression 217 IF_EXPANDED expression NEWLINE { 219 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro); 222 | ELIF_EXPANDED expression NEWLINE { 224 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro); 327 /* Be careful to only evaluate the 'if' expression if 348 /* #if without an expression is only an error if we 353 glcpp_error(& @1, parser, "#if with no expression"); 370 /* Be careful to only evaluate the 'elif' expression 396 /* #elif without an expression is an error unless w 483 expression: label [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/common/ |
| swr_assert.h | 35 // - SWR_ASSUME(expression, ...): Tell compiler that the expression is true. 41 // - SWR_ASSERT(expression, ...): Inform the user is expression is false. 45 // - SWR_REL_ASSERT(expression, ...): Unconditionally enabled version of SWR_ASSERT 47 // - SWR_ASSUME_ASSERT(expression, ...): Conditionally enabled SWR_ASSERT. Uses 52 // - SWR_REL_ASSUME_ASSERT(expression, ...): Same as SWR_REL_ASSERT. 190 #define SWR_STATIC_ASSERT(expression, ...) \ 191 static_assert((expression), "Failed:\n " #expression "\n " __VA_ARGS__) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/common/ |
| swr_assert.h | 35 // - SWR_ASSUME(expression, ...): Tell compiler that the expression is true. 41 // - SWR_ASSERT(expression, ...): Inform the user is expression is false. 45 // - SWR_REL_ASSERT(expression, ...): Unconditionally enabled version of SWR_ASSERT 47 // - SWR_ASSUME_ASSERT(expression, ...): Conditionally enabled SWR_ASSERT. Uses 52 // - SWR_REL_ASSUME_ASSERT(expression, ...): Same as SWR_REL_ASSERT. 196 #define SWR_STATIC_ASSERT(expression, ...) \ 197 static_assert((expression), "Failed:\n " #expression "\n " __VA_ARGS__) [all...] |
| /xsrc/external/mit/fontconfig/dist/doc/ |
| fcformat.fncs | 111 A <firstterm>sub-expression</firstterm> tag 112 is one that expands a sub-expression. The tag contents 113 are the sub-expression to expand placed inside another set of curly braces. 114 Sub-expression tags are useful for aligning an entire sub-expression, or to 115 apply converters (explained later) to the entire sub-expression output. 116 For example, the format "%40{{%{family} %{style}}}" expands the sub-expression 124 comma-separated list of element names, followed by a sub-expression enclosed 125 in curly braces. The sub-expression will be expanded but with a pattern that 134 comma-separated list of element names, followed by a sub-expression enclose [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/ |
| glcpp-parse.y | 199 %type <expression_value> expression 236 IF_EXPANDED expression NEWLINE { 238 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro); 241 | ELIF_EXPANDED expression NEWLINE { 243 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro); 427 /* Be careful to only evaluate the 'if' expression if 448 /* #if without an expression is only an error if we 453 glcpp_error(& @1, parser, "#if with no expression"); 470 /* Be careful to only evaluate the 'elif' expression 496 /* #elif without an expression is an error unless w 583 expression: label [all...] |
| /xsrc/external/mit/MesaLib.old/src/compiler/glsl/ |
| glsl_parser.cpp | 353 ast_expression *expression; member in union:YYSTYPE 788 "assignment_expression", "assignment_operator", "expression", 2602 (yyval.expression) = new(ctx) ast_expression(ast_identifier, NULL, NULL, NULL); 2603 (yyval.expression)->set_location((yylsp[0])); 2604 (yyval.expression)->primary_expression.identifier = (yyvsp[0].identifier); 2613 (yyval.expression) = new(ctx) ast_expression(ast_int_constant, NULL, NULL, NULL); 2614 (yyval.expression)->set_location((yylsp[0])); 2615 (yyval.expression)->primary_expression.int_constant = (yyvsp[0].n); 2624 (yyval.expression) = new(ctx) ast_expression(ast_uint_constant, NULL, NULL, NULL); 2625 (yyval.expression)->set_location((yylsp[0])) [all...] |
| glsl_parser.h | 212 ast_expression *expression; member in union:YYSTYPE
|
| /xsrc/external/mit/MesaLib/src/compiler/glsl/ |
| glsl_parser.cpp | 383 YYSYMBOL_expression = 198, /* expression */ 929 "assignment_expression", "assignment_operator", "expression", 2814 (yyval.expression) = new(ctx) ast_expression(ast_identifier, NULL, NULL, NULL); 2815 (yyval.expression)->set_location((yylsp[0])); 2816 (yyval.expression)->primary_expression.identifier = (yyvsp[0].identifier); 2825 (yyval.expression) = new(ctx) ast_expression(ast_int_constant, NULL, NULL, NULL); 2826 (yyval.expression)->set_location((yylsp[0])); 2827 (yyval.expression)->primary_expression.int_constant = (yyvsp[0].n); 2836 (yyval.expression) = new(ctx) ast_expression(ast_uint_constant, NULL, NULL, NULL); 2837 (yyval.expression)->set_location((yylsp[0])) [all...] |
| glsl_parser.h | 219 ast_expression *expression; member in union:YYSTYPE
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_algebraic.py | 97 return Expression(val, name_base, varset) 98 elif isinstance(val, Expression): 119 is equivalent to when constructing the replacement expression. This is 176 # - If it's in the search expression, we don't need to check anything 177 # - If it's in the replace expression, either it's ambiguous (in which 192 % elif isinstance(val, Expression): 205 Expression=Expression) 343 class Expression(Value): 345 Value.__init__(self, expr, name_base, "expression") [all...] |
| nir_opcodes.py | 45 - const_expr is an expression or series of statements that computes the 50 expression should be stored in the dst variable. Per-component input 58 For per-component instructions, the entire expression will be 60 instructions, the expression is expected to store the correct values 62 constant expression, an assignment to dst will happen automatically 63 and the result will be equivalent to "dst = <expression>" for 64 per-component instructions and "dst.x = dst.y = ... = <expression>"
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_algebraic.py | 104 return Expression(val, name_base, varset) 105 elif isinstance(val, Expression): 126 is equivalent to when constructing the replacement expression. This is 183 # - If it's in the search expression, we don't need to check anything 184 # - If it's in the replace expression, either it's ambiguous (in which 198 % elif isinstance(val, Expression): 211 Expression=Expression) 316 class Expression(Value): 318 Value.__init__(self, expr, name_base, "expression") [all...] |
| nir_opcodes.py | 45 - const_expr is an expression or series of statements that computes the 50 expression should be stored in the dst variable. Per-component input 58 For per-component instructions, the entire expression will be 60 instructions, the expression is expected to store the correct values 62 constant expression, an assignment to dst will happen automatically 63 and the result will be equivalent to "dst = <expression>" for 64 per-component instructions and "dst.x = dst.y = ... = <expression>"
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/ |
| gtest_pred_impl.h | 51 // case of ASSERT_PRED_FORMATn) values and their source expression 75 #define GTEST_ASSERT_(expression, on_failure) \ 77 if (const ::testing::AssertionResult gtest_ar = (expression)) \
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/ |
| gtest_pred_impl.h | 51 // case of ASSERT_PRED_FORMATn) values and their source expression 75 #define GTEST_ASSERT_(expression, on_failure) \ 77 if (const ::testing::AssertionResult gtest_ar = (expression)) \
|
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| ftmemory.h | 39 * expression's value (usually a function call), and convert it to a 43 #define FT_SET_ERROR( expression ) \ 44 ( ( error = (expression) ) != 0 )
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| gtest-death-test.cc | 306 # define GTEST_DEATH_TEST_CHECK_(expression) \ 308 if (!::testing::internal::IsTrue(expression)) { \ 312 + #expression); \ 320 // evaluates the expression as long as it evaluates to -1 and sets 321 // errno to EINTR. If the expression evaluates to -1 but errno is 323 # define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ 327 gtest_retval = (expression); \ 333 + #expression + " != -1"); \
|
| /xsrc/external/mit/MesaLib/dist/src/intel/perf/ |
| gen_perf.py | 242 def splice_rpn_expression(set, counter, expression): 243 tokens = expression.split() 258 raise Exception("Failed to resolve variable " + operand + " in expression " + expression + " for " + set.name + " :: " + counter.get('name')); 266 raise Exception("Spurious empty rpn expression for " + set.name + " :: " + 267 counter.get('name') + ".\nThis is probably due to some unhandled RPN operation, in the expression \"" + 268 expression + "\"") 347 expression = splice_rpn_expression(set, counter_name, availability) 348 lines = expression.split(' && ')
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/ |
| gtest-death-test.cc | 283 # define GTEST_DEATH_TEST_CHECK_(expression) \ 285 if (!::testing::internal::IsTrue(expression)) { \ 289 + #expression); \ 297 // evaluates the expression as long as it evaluates to -1 and sets 298 // errno to EINTR. If the expression evaluates to -1 but errno is 300 # define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ 304 gtest_retval = (expression); \ 310 + #expression + " != -1"); \ 413 // The regular expression which test output must match. DeathTestImpl 530 // regex: A regular expression object to be applied t [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/perf/ |
| gen_perf.py | 234 def splice_rpn_expression(set, counter, expression): 235 tokens = expression.split() 250 raise Exception("Failed to resolve variable " + operand + " in expression " + expression + " for " + set.name + " :: " + counter.get('name')); 258 raise Exception("Spurious empty rpn expression for " + set.name + " :: " + 259 counter.get('name') + ".\nThis is probably due to some unhandled RPN operation, in the expression \"" + 260 expression + "\"") 339 expression = splice_rpn_expression(set, counter_name, availability) 340 lines = expression.split(' && ')
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/ |
| gtest-internal.h | 820 // variable declared in a conditional expression always being NULL in 861 // When the compiler sees expression IsContainerTest<C>(0), if C is an 870 // The value of the expression is insignificant. 1319 // Implements Boolean test assertions such as EXPECT_TRUE. expression can be 1320 // either a boolean expression or an AssertionResult. text is a textual 1321 // represenation of expression as it was passed into the EXPECT_TRUE. 1322 #define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ 1325 ::testing::AssertionResult(expression)) \
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/ |
| gtest-internal.h | 108 // expression is a null pointer literal (i.e. NULL or any 0-valued 117 // type, the only expression a user can write that has type Secret* is 739 // variable declared in a conditional expression always being NULL in 860 // MakeFrom() is an expression whose type is From. We cannot simply 865 // These two functions are overloaded. Given an expression 909 // When the compiler sees expression IsContainerTest<C>(0), if C is an 918 // The value of the expression is insignificant. 944 // overload only apply when a particular expression is true, add 945 // "typename EnableIf<expression>::type* = 0" as the last parameter. 1183 // Implements Boolean test assertions such as EXPECT_TRUE. expression can b [all...] |
| /xsrc/external/mit/MesaLib.old/src/compiler/glsl/glcpp/ |
| glcpp-parse.c | 658 "expression", "identifier_list", "text_line", "replacement_list", "junk", 1762 glcpp_error(& (yylsp[-2]), parser, "undefined macro %s in expression (illegal in GLES)", (yyvsp[-1].expression_value).undefined_macro); 1772 glcpp_error(& (yylsp[-2]), parser, "undefined macro %s in expression (illegal in GLES)", (yyvsp[-1].expression_value).undefined_macro); 1909 /* Be careful to only evaluate the 'if' expression if 1935 /* #if without an expression is only an error if we 1940 glcpp_error(& (yylsp[-2]), parser, "#if with no expression"); 1972 /* Be careful to only evaluate the 'elif' expression 2003 /* #elif without an expression is an error unless we 2008 glcpp_error(& (yylsp[-2]), parser, "#elif with no expression"); 2019 glcpp_warning(& (yylsp[-2]), parser, "ignoring illegal #elif without expression"); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| glsl_parser_extras.cpp | 1400 if (expression) 1401 expression->print(); 1408 expression(ex) 2420 * (assign (x) (var_ref v124) (expression int + (var_ref v124)
|