Home
last modified time | relevance | path

Searched defs:expression (Results 1 – 25 of 201) sorted by relevance

123456789

/third_party/skia/src/sksl/ir/
DSkSLReturnStatement.h23 ReturnStatement(int line, std::unique_ptr<Expression> expression) in ReturnStatement()
27 static std::unique_ptr<Statement> Make(int line, std::unique_ptr<Expression> expression) { in Make()
31 std::unique_ptr<Expression>& expression() { in expression() function
35 const std::unique_ptr<Expression>& expression() const { in expression() function
DSkSLExpressionStatement.h23 ExpressionStatement(std::unique_ptr<Expression> expression) in ExpressionStatement()
32 const std::unique_ptr<Expression>& expression() const { in expression() function
36 std::unique_ptr<Expression>& expression() { in expression() function
/third_party/skia/third_party/externals/swiftshader/src/System/
DDebug.hpp85 # define ASSERT_MSG(expression, format, ...) \ argument
96 # define ASSERT_MSG(expression, format, ...) \ argument
108 # define ASSERT(expression) \ argument
118 # define ASSERT(expression) \ argument
150 # define ASSERT_OR_RETURN(expression) ASSERT(expression) argument
152 # define ASSERT_OR_RETURN(expression) \ argument
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DDebug.hpp87 # define ASSERT_MSG(expression, format, ...) \ argument
98 # define ASSERT_MSG(expression, format, ...) \ argument
110 # define ASSERT(expression) \ argument
120 # define ASSERT(expression) \ argument
159 # define ASSERT_OR_RETURN(expression) ASSERT(expression) argument
161 # define ASSERT_OR_RETURN(expression) \ argument
DAssert.hpp33 # define Assert(expression) ((void)0) argument
35 # define Assert(expression) … argument
/third_party/flutter/engine/flutter/vulkan/
Dvulkan_interface.h51 #define VK_CALL_LOG_ERROR(expression) \ argument
61 #define VK_CALL_LOG_ERROR(expression) \ argument
75 #define VK_CALL_LOG_ERROR(expression) (expression) argument
/third_party/node/test/sequential/
Dtest-inspector.js119 'expression': 'k + t', property
153 'expression': `console.log("${chars}")`, property
176 'expression': 'typeof require("fs").readFile === "function"', property
187 'expression': [ property
203 'expression': ` property
217 'expression': `JSON.stringify( property
230 'expression': `delete require.cache[${testModuleStr}]`, property
240 'expression': `JSON.stringify(require(${testModuleStr}))`, property
250 'expression': `JSON.stringify(require(${printAModuleStr}))`, property
260 'expression': `JSON.stringify({ property
[all …]
Dtest-inspector-runtime-evaluate-with-timeout.js16 expression: 'for(;;);', property
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
Ddebug.h61 #define ASSERT(expression) do { \ argument
67 #define ASSERT(expression) (void(0)) argument
98 #define ASSERT_OR_RETURN(expression) do { \ argument
/third_party/typescript/src/compiler/transformers/
Des2020.ts57 … const expression = visitNonOptionalExpression(node.expression, captureThisArg, isDelete); constant
111 const { expression, chain } = flattenChain(node); constant
Des2017.ts215 …const expression = visitVariableDeclarationListWithCollidingNames(node.declarationList, /*hasRecei… constant
527 const expression = emitHelpers().createAwaiterHelper( constant
676 const expression = node.expression; constant
Dts.ts1150 const expression = generateClassElementDecorationExpression(node, member); constant
1238 const expression = generateConstructorDecorationExpression(node); constant
1259 …const expression = factory.createAssignment(localName, classAlias ? factory.createAssignment(class… constant
1848 const expression = visitNode(name.expression, visitor, isExpression); constant
2236 const expression = visitNode(node.expression, visitor, isExpression); constant
2263 const expression = visitNode(node.expression, visitor, isExpression); constant
2268 const expression = visitNode(node.expression, visitor, isLeftHandSideExpression); constant
3091 const expression = factory.createAssignment( constant
/third_party/cJSON/tests/unity/test/tests/
Dtest_generate_test_runner.rb1200 def verify_match(expression, output) argument
1209 def verify_number(expected, expression, output) argument
/third_party/typescript/src/compiler/factory/
DnodeConverters.ts49 const expression = convertToAssignmentElementTarget(element.name); constant
70 const expression = convertToAssignmentElementTarget(element.name); constant
/third_party/typescript/src/services/codefixes/
DaddMissingAwait.ts34 …const expression = getFixableErrorSpanExpression(sourceFile, errorCode, span, cancellationToken, p… constant
50 …const expression = getFixableErrorSpanExpression(sourceFile, diagnostic.code, diagnostic, cancella… constant
102 const expression = findAncestor(token, node => { constant
115 expression: Expression; property
194 for (const side of [expression.left, expression.right]) { constant
/third_party/unity/test/tests/
Dtest_generate_test_runner.rb1208 def verify_match(expression, output) argument
1217 def verify_number(expected, expression, output) argument
/third_party/skia/modules/skottie/tests/
DExpression.cpp35 const char expression[]) override { in createNumberExpressionEvaluator()
40 const char expression[]) override { in createStringExpressionEvaluator()
45 const char expression[]) override { in createArrayExpressionEvaluator()
/third_party/node/test/parallel/
Dtest-inspector-module.js14 () => session.post('Runtime.evaluate', { expression: '2 + 2' }), property
23 session.post('Runtime.evaluate', { expression: '2 + 2' }); property
/third_party/ltp/tools/sparse/sparse-src/
Dexpression.h159 struct expression { struct
160 enum expression_type type:8; argument
184 struct expression *unop; argument
/third_party/typescript/src/services/refactors/
DaddOrRemoveBracesToArrowFunction.ts23 expression: Expression | undefined; property
62 const { expression, returnStatement, func } = info; constant
DconvertToOptionalChainExpression.ts53 expression: ValidExpression, property
93 …const expression = parent && isValidExpressionOrStatement(parent) ? getExpression(parent) : undefi… constant
286 const { finalExpression, occurrences, expression } = info; constant
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_stdinc.h108 #define SDL_reinterpret_cast(type, expression) reinterpret_cast<type>(expression) argument
109 #define SDL_static_cast(type, expression) static_cast<type>(expression) argument
110 #define SDL_const_cast(type, expression) const_cast<type>(expression) argument
112 #define SDL_reinterpret_cast(type, expression) ((type)(expression)) argument
113 #define SDL_static_cast(type, expression) ((type)(expression)) argument
114 #define SDL_const_cast(type, expression) ((type)(expression)) argument
/third_party/python/Lib/idlelib/
Dcalltip.py108 def fetch_tip(self, expression): argument
133 def get_entity(expression): argument
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
DDirectiveParser.cpp183 std::string expression = iter != mMacroSet->end() ? "1" : "0"; in lex() local
572 int expression = parseExpressionIf(token); in parseElif() local
936 int expression = 0; in parseConditionalIf() local
966 int expression = 0; in parseExpressionIf() local
1000 int expression = iter != mMacroSet->end() ? 1 : 0; in parseExpressionIfdef() local
/third_party/python/PC/
Dinvalid_parameter_handler.c12 wchar_t const* expression, in _silent_invalid_parameter_handler()

123456789