Home
last modified time | relevance | path

Searched refs:Compound (Results 1 – 25 of 106) sorted by relevance

12345

/external/rust/crates/serde_json/src/
Dser.rs65 type SerializeSeq = Compound<'a, W, F>;
66 type SerializeTuple = Compound<'a, W, F>;
67 type SerializeTupleStruct = Compound<'a, W, F>;
68 type SerializeTupleVariant = Compound<'a, W, F>;
69 type SerializeMap = Compound<'a, W, F>;
70 type SerializeStruct = Compound<'a, W, F>;
71 type SerializeStructVariant = Compound<'a, W, F>;
328 Ok(Compound::Map { in serialize_seq()
337 Ok(Compound::Map { in serialize_seq()
397 Ok(Compound::Map { in serialize_map()
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DDeleteNullPointerCheck.cpp56 const auto *Compound = Result.Nodes.getNodeAs<CompoundStmt>("compound"); in check() local
72 if (Compound) { in check()
74 CharSourceRange::getTokenRange(Compound->getLBracLoc())); in check()
76 CharSourceRange::getTokenRange(Compound->getRBracLoc())); in check()
DSimplifyBooleanExprCheck.cpp309 if (const auto *Compound = dyn_cast<CompoundStmt>(IfRet->getThen())) { in stmtReturnsBool() local
310 if (Compound->size() == 1) { in stmtReturnsBool()
311 if (const auto *CompoundRet = dyn_cast<ReturnStmt>(Compound->body_back())) in stmtReturnsBool()
576 else if (const auto *Compound = in check() local
578 replaceCompoundReturnWithCondition(Result, Compound); in check()
579 else if (const auto *Compound = in check() local
581 replaceCompoundReturnWithCondition(Result, Compound, true); in check()
636 const MatchFinder::MatchResult &Result, const CompoundStmt *Compound, in replaceCompoundReturnWithCondition() argument
646 assert(Compound->size() >= 2); in replaceCompoundReturnWithCondition()
648 CompoundStmt::const_body_iterator Current = Compound->body_begin(); in replaceCompoundReturnWithCondition()
[all …]
DSimplifyBooleanExprCheck.h75 const CompoundStmt *Compound, bool Negated = false);
DElseAfterReturnCheck.cpp110 if (const auto *Compound = dyn_cast<CompoundStmt>(Node)) in containsDeclInScope() local
111 return llvm::any_of(Compound->body(), [](const Stmt *SubNode) { in containsDeclInScope()
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseEqualsDefaultCheck.cpp133 const auto *Compound = cast<CompoundStmt>(Operator->getBody()); in isCopyAssignmentAndCanBeDefaulted() local
138 if (Compound->body_empty() || in isCopyAssignmentAndCanBeDefaulted()
143 *Compound->body_back(), *Context) in isCopyAssignmentAndCanBeDefaulted()
172 *Compound, *Context) in isCopyAssignmentAndCanBeDefaulted()
194 *Compound, *Context) in isCopyAssignmentAndCanBeDefaulted()
200 return Compound->size() == BasesToInit.size() + FieldsToInit.size() + 1; in isCopyAssignmentAndCanBeDefaulted()
/external/python/pycparser/pycparser/
Dast_transforms.py65 if not isinstance(switch_node.stmt, c_ast.Compound):
70 new_compound = c_ast.Compound([], switch_node.stmt.coord)
D_c_ast.cfg36 # Compound statement in C99 is a list of block items (declarations or
39 Compound: [block_items**]
41 # Compound literal (anonymous aggregate) for C99.
Dc_generator.py353 elif typ in (c_ast.Compound,):
/external/python/pycparser/tests/
Dtest_c_ast.py89 comp = c_ast.Compound(
112 comp = c_ast.Compound(
Dtest_c_parser.py582 self.assertIsInstance(compound, Compound)
1556 self.assertIsInstance(s1_ast.ext[0].body.block_items[1].stmt, Compound)
1560 self.assertIsInstance(s1_ast.ext[0].body.block_items[2].stmt, Compound)
1564 self.assertIsInstance(s1_ast.ext[0].body.block_items[3].stmt, Compound)
1568 self.assertIsInstance(s1_ast.ext[0].body.block_items[4].iftrue, Compound)
1572 self.assertIsInstance(s1_ast.ext[0].body.block_items[5].stmt.stmts[0], Compound)
/external/deqp/data/gles2/shaders/
Dmisc.test1 group compound_assignment "Compound assignments with interesting lvalues"
/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DExprSequence.cpp120 } else if (const auto *Compound = dyn_cast<CompoundStmt>(Parent)) { in getSequenceSuccessor() local
124 for (const auto *Child : Compound->body()) { in getSequenceSuccessor()
/external/lzma/CPP/7zip/
DGuid.txt200 E5 Compound
/external/icu/icu4c/source/data/brkitr/dictionaries/
Dlaodict.txt10 # Compound words have mostly been reduced to their respective parts.
/external/llvm-project/llvm/include/llvm/Bitcode/
DBitcodeConvenience.h42 template <bool Compound = false> class BCField {
44 static const bool IsCompound = Compound;
/external/adhd/cras/src/tests/
Dexpr_unittest.cc91 TEST(ExprTest, Compound) { in TEST() argument
/external/python/cpython2/Doc/library/
Dtix.rst453 * `Compound
462 ….. \ulink{Compound Image In Buttons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg.…
464 ….. \ulink{Compound Image In NoteBook}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg…
466 ….. \ulink{Compound Image Notebook Color Tabs}{http://tix.sourceforge.net/dist/current/demos/sample…
468 .. \ulink{Compound Image Icons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg3.tcl}
/external/python/cpython3/Doc/library/
Dtkinter.tix.rst441 * `Compound
450 ….. \ulink{Compound Image In Buttons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg.…
452 ….. \ulink{Compound Image In NoteBook}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg…
454 ….. \ulink{Compound Image Notebook Color Tabs}{http://tix.sourceforge.net/dist/current/demos/sample…
456 .. \ulink{Compound Image Icons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg3.tcl}
/external/cldr/tools/java/org/unicode/cldr/util/data/
DPathHeader.txt250 …dUnitPattern1[@count="%A"][@gender="%A"][@case="%A"] ; Units ; Compound Units ; $2 ; &uni…
251 …="%A"]/compoundUnitPattern1[@count="%A"][@case="%A"] ; Units ; Compound Units ; $2 ; &uni…
252 …%A"]/compoundUnitPattern1[@count="%A"][@gender="%A"] ; Units ; Compound Units ; $2 ; &uni…
253 …ndUnit[@type="%A"]/compoundUnitPattern1[@count="%A"] ; Units ; Compound Units ; $2 ; &uni…
256 …poundUnit[@type="%A"]/compoundUnitPattern ; Units ; Compound Units ; $2 ; $1
257 …gth[@type="%L"]/compoundUnit[@type="%A"]/unitPrefixPattern ; Units ; Compound Units ; $2 ; $1
/external/llvm-project/clang/lib/Parse/
DParseStmt.cpp1084 ParsedStmtContext::Compound | in ParseCompoundStatementBody()
2509 StmtResult Compound = ParseCompoundStatement(); in ParseMicrosoftIfExistsStatement() local
2510 if (Compound.isInvalid()) in ParseMicrosoftIfExistsStatement()
2517 Compound.get()); in ParseMicrosoftIfExistsStatement()
2545 ParseStatementOrDeclaration(Stmts, ParsedStmtContext::Compound); in ParseMicrosoftIfExistsStatement()
/external/clang/lib/Parse/
DParseStmt.cpp2198 StmtResult Compound = ParseCompoundStatement(); in ParseMicrosoftIfExistsStatement() local
2199 if (Compound.isInvalid()) in ParseMicrosoftIfExistsStatement()
2206 Compound.get()); in ParseMicrosoftIfExistsStatement()
/external/mockito/lib/
Dbyte-buddy-agent-1.8.15.jarMETA-INF/MANIFEST.MF META-INF/ net/ net/bytebuddy/ net/ ...
/external/llvm/lib/Target/Hexagon/
DHexagonScheduleV60.td217 // Duplex and Compound
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst4 Compound statements
9 Compound statements contain (groups of) other statements; they affect or control
23 Compound statements consist of one or more 'clauses.' A clause consists of a

12345