Home
last modified time | relevance | path

Searched defs:statement (Results 1 – 25 of 131) sorted by relevance

123456

/third_party/googletest/googletest/include/gtest/
Dgtest-death-test.h172 # define ASSERT_EXIT(statement, predicate, matcher) \ argument
177 # define EXPECT_EXIT(statement, predicate, matcher) \ argument
183 # define ASSERT_DEATH(statement, matcher) \ argument
188 # define EXPECT_DEATH(statement, matcher) \ argument
262 # define EXPECT_DEBUG_DEATH(statement, regex) \ argument
265 # define ASSERT_DEBUG_DEATH(statement, regex) \ argument
270 # define EXPECT_DEBUG_DEATH(statement, regex) \ argument
273 # define ASSERT_DEBUG_DEATH(statement, regex) \ argument
314 # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \ argument
333 # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ argument
[all …]
Dgtest-spi.h144 #define EXPECT_FATAL_FAILURE(statement, substr) \ argument
161 #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument
210 #define EXPECT_NONFATAL_FAILURE(statement, substr) \ argument
224 #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-death-test.h168 # define ASSERT_EXIT(statement, predicate, regex) \ argument
173 # define EXPECT_EXIT(statement, predicate, regex) \ argument
179 # define ASSERT_DEATH(statement, regex) \ argument
184 # define EXPECT_DEATH(statement, regex) \ argument
259 # define EXPECT_DEBUG_DEATH(statement, regex) \ argument
262 # define ASSERT_DEBUG_DEATH(statement, regex) \ argument
267 # define EXPECT_DEBUG_DEATH(statement, regex) \ argument
270 # define ASSERT_DEBUG_DEATH(statement, regex) \ argument
311 # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \ argument
330 # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ argument
[all …]
Dgtest-spi.h144 #define EXPECT_FATAL_FAILURE(statement, substr) \ argument
161 #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument
210 #define EXPECT_NONFATAL_FAILURE(statement, substr) \ argument
224 #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument
/third_party/icu/docs/userguide/usefrom/
Dcobol.md176 ### Conversion Declaration Examples
178 #### C (API definition in \*.h file)
191 #### COBOL
207 ### Returned value is Pointer or Binary
209 #### C (API definition in \*.h file)
217 #### COBOL
231 ### Returned value is a Pointer to string
236 #### C ( API definition in \*.h file)
243 #### COBOL
/third_party/skia/src/sksl/ir/
DSkSLDoStatement.h23 DoStatement(int line, std::unique_ptr<Statement> statement, std::unique_ptr<Expression> test) in DoStatement()
38 std::unique_ptr<Statement>& statement() { in statement() function
42 const std::unique_ptr<Statement>& statement() const { in statement() function
DSkSLSwitchCase.h24 SwitchCase(int line, std::unique_ptr<Expression> value, std::unique_ptr<Statement> statement) in SwitchCase()
37 std::unique_ptr<Statement>& statement() { in statement() function
41 const std::unique_ptr<Statement>& statement() const { in statement() function
DSkSLForStatement.h38 std::unique_ptr<Statement> statement, in ForStatement()
96 std::unique_ptr<Statement>& statement() { in statement() function
100 const std::unique_ptr<Statement>& statement() const { in statement() function
DSkSLForStatement.cpp84 std::unique_ptr<Statement> statement, in Convert()
149 std::unique_ptr<Statement> statement, in ConvertWhile()
163 std::unique_ptr<Statement> statement, in Make()
/third_party/skia/third_party/externals/tint/src/sem/
Dmember_accessor_expression.cc30 const Statement* statement) in MemberAccessorExpression()
38 const Statement* statement, in StructMemberAccess()
46 const Statement* statement, in Swizzle()
Dvariable.cc48 const sem::Statement* statement, in LocalVariable()
79 Statement* statement, in VariableUser()
Dexpression.cc26 const Statement* statement, in Expression()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DValidationTest.h45 #define ASSERT_DEVICE_ERROR_IMPL_1_(statement) \ argument
55 #define ASSERT_DEVICE_ERROR_IMPL_2_(statement, matcher) \ argument
75 #define EXPECT_DEPRECATION_WARNINGS(statement, n) \ argument
86 #define EXPECT_DEPRECATION_WARNING(statement) EXPECT_DEPRECATION_WARNINGS(statement, 1) argument
/third_party/python/Doc/reference/
Dcompound_stmts.rst1456 .. _`async with`:
1505 .. [#] The exception is propagated to the invocation stack unless
1509 .. [#] In pattern matching, a sequence is defined as one of the following:
1528 .. [#] In pattern matching, a mapping is defined as one of the following:
1538 .. [#] A string literal appearing as the first statement in the function body is
1542 .. [#] A string literal appearing as the first statement in the class body is
/third_party/mesa3d/src/gtest/include/gtest/internal/
Dgtest-death-test-internal.h190 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument
207 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument
214 #define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail) \ argument
254 #define GTEST_EXECUTE_STATEMENT_(statement, regex_or_matcher) \ argument
/third_party/googletest/googletest/include/gtest/internal/
Dgtest-death-test-internal.h190 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument
207 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument
214 #define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail) \ argument
254 #define GTEST_EXECUTE_STATEMENT_(statement, regex_or_matcher) \ argument
/third_party/python/Lib/sqlite3/test/
Dhooks.py209 def trace(statement): argument
222 def trace(statement): argument
236 def trace(statement): argument
249 def trace(statement): argument
/third_party/elfutils/tests/
Delfshphehdr.c34 check (const char *msg, bool statement) in check()
46 check_elf (const char *msg, bool statement) in check_elf()
/third_party/typescript/src/services/codefixes/
DrequireInTs.ts25 … const { allowSyntheticDefaults, defaultImportName, namedImports, statement, required } = info; constant
35 readonly statement: VariableStatement; property
/third_party/typescript/src/services/refactors/
DconvertArrowFunctionOrFunctionExpression.ts39 readonly statement: VariableStatement; property
192 const statement = variableDeclarationList.parent; constant
209 const { variableDeclaration, variableDeclarationList, statement, name } = variableInfo; constant
/third_party/typescript/src/compiler/transformers/
Des2018.ts344 const statement = unwrapInnermostStatementOfLabel(node); constant
439 const statement = concatenate(visited.statements, taggedTemplateStringDeclarations && [ constant
651 const statement = visitNode(node.statement, visitor, isStatement); constant
1034 const statement = factory.createVariableStatement( constant
/third_party/typescript/src/compiler/transformers/module/
Dmodule.ts474 const statement = factory.createReturnStatement(expressionResult); constant
480 const statement = factory.createExpressionStatement( constant
1260 …const statement = setOriginalNode(setTextRange(factory.createExpressionStatement(factory.inlineExp… constant
1588 …const statement = setTextRange(factory.createExpressionStatement(createExportExpression(name, valu… constant
/third_party/glslang/glslang/HLSL/
DhlslGrammar.cpp3379 bool HlslGrammar::acceptSimpleStatement(TIntermNode*& statement) in acceptSimpleStatement()
3417 TIntermNode* statement = nullptr; in acceptCompoundStatement() local
3439 bool HlslGrammar::acceptScopedStatement(TIntermNode*& statement) in acceptScopedStatement()
3448 bool HlslGrammar::acceptScopedCompoundStatement(TIntermNode*& statement) in acceptScopedCompoundStatement()
3470 bool HlslGrammar::acceptStatement(TIntermNode*& statement) in acceptStatement()
3635 bool HlslGrammar::acceptSelectionStatement(TIntermNode*& statement, const TAttributes& attributes) in acceptSelectionStatement()
3688 bool HlslGrammar::acceptSwitchStatement(TIntermNode*& statement, const TAttributes& attributes) in acceptSwitchStatement()
3727 bool HlslGrammar::acceptIterationStatement(TIntermNode*& statement, const TAttributes& attributes) in acceptIterationStatement()
3865 bool HlslGrammar::acceptJumpStatement(TIntermNode*& statement) in acceptJumpStatement()
3926 bool HlslGrammar::acceptCaseLabel(TIntermNode*& statement) in acceptCaseLabel()
[all …]
/third_party/python/Lib/
DcProfile.py15 def run(statement, filename=None, sort=-1): argument
18 def runctx(statement, globals, locals, filename=None, sort=-1): argument
/third_party/ltp/tools/sparse/sparse-src/
Dparse.h47 struct statement { struct
48 enum statement_type type; argument
64 struct statement *if_true; argument

123456