Home
last modified time | relevance | path

Searched refs:kept (Results 1 – 25 of 452) sorted by relevance

12345678910>>...19

/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DDifferenceTest.java91 assertEquals(kept(new CsmChild(cu.getType(0))), diff.getElements().get(1)); in compilationUnitExampleWithPackageSetDiff()
92 assertEquals(kept(new CsmToken(eolTokenKind())), diff.getElements().get(2)); in compilationUnitExampleWithPackageSetDiff()
107 … assertEquals(kept(new CsmToken(GeneratedJavaParserConstants.AT)), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
108 …assertEquals(kept(new CsmToken(GeneratedJavaParserConstants.INTERFACE)), diff.getElements().get(i+… in annotationDeclarationExampleWithModifierAdded()
109 assertEquals(kept(new CsmToken(spaceTokenKind())), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
110 … assertEquals(kept(new CsmChild(annotationDeclaration.getName())), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
111 assertEquals(kept(new CsmToken(spaceTokenKind())), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
112 …assertEquals(kept(new CsmToken(GeneratedJavaParserConstants.LBRACE)), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
113 assertEquals(kept(new CsmToken(eolTokenKind())), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
114 … assertEquals(kept(new CsmChild(annotationDeclaration.getMember(0))), diff.getElements().get(i++)); in annotationDeclarationExampleWithModifierAdded()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
DDifference.java41 static DifferenceElement kept(CsmElement element) { in kept() method
155 Kept kept = (Kept) o; in equals()
157 return element.equals(kept.element); in equals()
495 Kept kept = (Kept) diffEl; in apply() local
496 if (kept.element instanceof CsmToken) { in apply()
497 CsmToken csmToken = (CsmToken) kept.element; in apply()
585 Kept kept = (Kept)diffEl; in apply()
588 … } else if ((kept.element instanceof CsmChild) && nodeTextEl instanceof ChildTextElement) { in apply()
591 … } else if ((kept.element instanceof CsmChild) && nodeTextEl instanceof TokenTextElement) { in apply()
595 if (kept.element instanceof CsmChild) { in apply()
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_response_cache.cc151 std::unordered_map<string, std::shared_ptr<WorkerCacheEntry>> kept; in MaybeCleanup() local
158 kept.insert(pair); in MaybeCleanup()
171 kept.insert(pair); in MaybeCleanup()
178 << kept.size(); in MaybeCleanup()
180 std::swap(requests_, kept); in MaybeCleanup()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/docs/
DDESCRIPTION19 - Strings are kept, except that escaped newlines are stripped
22 space is kept if it's outside a ruleset.)
25 - Optional space after unicode escapes is kept, resp. replaced by a simple
28 - Comments starting with an exclamation mark (``!``) can be kept optionally.
/external/grpc-grpc-java/testing/src/main/resources/certs/
Dserver1-openssl.cnf24 dir = . # Where everything is kept
25 certs = $dir # Where the issued certs are kept
26 crl_dir = $dir # Where the issued crl are kept
/external/wpa_supplicant_8/hs20/server/ca/
Dopenssl-root.cnf18 dir = ./rootCA # Where everything is kept
19 certs = $dir/certs # Where the issued certs are kept
20 crl_dir = $dir/crl # Where the issued crl are kept
Dopenssl.cnf18 dir = ./demoCA # Where everything is kept
19 certs = $dir/certs # Where the issued certs are kept
20 crl_dir = $dir/crl # Where the issued crl are kept
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dglobal-merge.ll9 ; Global variables marked with "used" attribute must be kept
14 ; Global used in landing pad instruction must be kept
65 ; Global variables that can be placed in BSS should be kept together in a
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/
DREADME.rst36 - Strings are kept, except that escaped newlines are stripped
39 space is kept if it's outside a ruleset.)
42 - Optional space after unicode escapes is kept, resp. replaced by a simple
45 - Comments starting with an exclamation mark (``!``) can be kept optionally.
/external/llvm/test/CodeGen/ARM/
Dglobal-merge.ll9 ; Global variables marked with "used" attribute must be kept
14 ; Global used in landing pad instruction must be kept
65 ; Global variables that can be placed in BSS should be kept together in a
/external/tensorflow/tensorflow/core/protobuf/
Dsaver.proto29 // "max_to_keep" checkpoints are kept; if specified, in addition to keeping
30 // the last "max_to_keep" checkpoints, an additional checkpoint will be kept
/external/skia/src/pathops/
DSkOpCoincidence.cpp1289 void SkOpCoincidence::fixUp(SkOpPtT* deleted, const SkOpPtT* kept) { in fixUp() argument
1290 SkOPASSERT(deleted != kept); in fixUp()
1292 this->fixUp(fHead, deleted, kept); in fixUp()
1295 this->fixUp(fTop, deleted, kept); in fixUp()
1299 void SkOpCoincidence::fixUp(SkCoincidentSpans* coin, SkOpPtT* deleted, const SkOpPtT* kept) { in fixUp() argument
1303 if (coin->coinPtTEnd()->span() == kept->span()) { in fixUp()
1307 coin->setCoinPtTStart(kept); in fixUp()
1310 if (coin->coinPtTStart()->span() == kept->span()) { in fixUp()
1314 coin->setCoinPtTEnd(kept); in fixUp()
1317 if (coin->oppPtTEnd()->span() == kept->span()) { in fixUp()
[all …]
DSkOpSpan.cpp440 void SkOpSpan::release(const SkOpPtT* kept) { in release() argument
442 SkOPASSERT(kept->span() != this); in release()
453 coincidence->fixUp(this->ptT(), kept); in release()
458 const SkOpSpanBase* keptSpan = kept->span(); in release()
/external/skqp/src/pathops/
DSkOpCoincidence.cpp1289 void SkOpCoincidence::fixUp(SkOpPtT* deleted, const SkOpPtT* kept) { in fixUp() argument
1290 SkOPASSERT(deleted != kept); in fixUp()
1292 this->fixUp(fHead, deleted, kept); in fixUp()
1295 this->fixUp(fTop, deleted, kept); in fixUp()
1299 void SkOpCoincidence::fixUp(SkCoincidentSpans* coin, SkOpPtT* deleted, const SkOpPtT* kept) { in fixUp() argument
1303 if (coin->coinPtTEnd()->span() == kept->span()) { in fixUp()
1307 coin->setCoinPtTStart(kept); in fixUp()
1310 if (coin->coinPtTStart()->span() == kept->span()) { in fixUp()
1314 coin->setCoinPtTEnd(kept); in fixUp()
1317 if (coin->oppPtTEnd()->span() == kept->span()) { in fixUp()
[all …]
DSkOpSpan.cpp440 void SkOpSpan::release(const SkOpPtT* kept) { in release() argument
442 SkOPASSERT(kept->span() != this); in release()
453 coincidence->fixUp(this->ptT(), kept); in release()
458 const SkOpSpanBase* keptSpan = kept->span(); in release()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopUnroll/
Dfull-unroll-keep-first-exit.ll4 ; Unroll twice, with first loop exit kept
31 ; Unroll thrice, with first loop exit kept
107 ; Unroll twice, with first loop exit kept
134 ; Unroll thrice, with first loop exit kept
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
Dpreserve-strings.css6 content: "/* test */"; /* <---- this is not a comment, should be be kept */
/external/python/cpython3/Doc/library/
Dsuperseded.rst7 The modules described in this chapter are deprecated and only kept for
Dfaulthandler.rst67 The *file* must be kept open until the fault handler is disabled: see
99 The *file* must be kept open until the traceback is dumped or
123 The *file* must be kept open until the signal is unregistered by
/external/snakeyaml/src/test/resources/pyyaml/
Dsloppy-indentation.data3 indentation should be kept: {
Dsloppy-indentation.canonical6 ? !!str "indentation should be kept"
/external/tensorflow/tensorflow/contrib/autograph/
DBUILD24 # This module is kept for backward compatibility only. To depend on AutoGraph,
/external/llvm/test/YAMLParser/
Dsloppy-indentation.test5 indentation should be kept: {
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dsloppy-indentation.test5 indentation should be kept: {
/external/u-boot/arch/arm/include/asm/mach-imx/
Dimximage.cfg8 * NOTE: This file must be kept in sync with tools/imximage.h because

12345678910>>...19