/external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/ |
D | ChangeSet.java | 37 private final Set<Change> changes = new LinkedHashSet<>(); 46 addDeletion(new Change(filename, Change.TYPE_DELETE)); in delete() 56 addDeletion(new Change(dirName, Change.TYPE_DELETE_DIR)); in deleteDir() 84 addAddition(new Change(pEntry, pInput, replace)); in add() 93 private void addAddition(final Change pChange) { in addAddition() 94 if (Change.TYPE_ADD != pChange.type() || in addAddition() 100 for (final Iterator<Change> it = changes.iterator(); it.hasNext();) { in addAddition() 101 final Change change = it.next(); in addAddition() 102 if (change.type() == Change.TYPE_ADD in addAddition() 127 private void addDeletion(final Change pChange) { in addDeletion() [all …]
|
D | ChangeSetPerformer.java | 45 private final Set<Change> changes; 116 final Set<Change> workingSet = new LinkedHashSet<>(changes); in perform() 118 for (final Iterator<Change> it = workingSet.iterator(); it.hasNext();) { in perform() 119 final Change change = it.next(); in perform() 121 if (change.type() == Change.TYPE_ADD && change.isReplaceMode()) { in perform() 132 for (final Iterator<Change> it = workingSet.iterator(); it.hasNext();) { in perform() 133 final Change change = it.next(); in perform() 137 if (type == Change.TYPE_DELETE && name != null) { in perform() 144 } else if (type == Change.TYPE_DELETE_DIR && name != null) { in perform() 163 for (final Iterator<Change> it = workingSet.iterator(); it.hasNext();) { in perform() [all …]
|
D | Change.java | 30 class Change { class 49 Change(final String pFilename, final int type) { in Change() method in Change 66 Change(final ArchiveEntry pEntry, final InputStream pInput, final boolean replace) { in Change() method in Change
|
/external/clang/lib/Format/ |
D | WhitespaceManager.cpp | 21 bool WhitespaceManager::Change::IsBeforeInFile:: 22 operator()(const Change &C1, const Change &C2) const { in operator ()() 28 WhitespaceManager::Change::Change( in Change() function in clang::format::WhitespaceManager::Change 58 Change(/*CreateReplacement=*/true, Tok.WhitespaceRange, IndentLevel, in replaceWhitespace() 69 Changes.push_back(Change( in addUntouchableToken() 84 Changes.push_back(Change( in replaceWhitespaceInToken() 97 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr)); in generateReplacements() 110 Change *LastOutsideTokenChange = &Changes[0]; in calculateLineBreakInformation() 142 const WhitespaceManager::Change *LastBlockComment = nullptr; in calculateLineBreakInformation() 143 for (auto &Change : Changes) { in calculateLineBreakInformation() local [all …]
|
D | WhitespaceManager.h | 86 struct Change { struct 91 bool operator()(const Change &C1, const Change &C2) const; argument 97 Change() {} in Change() argument 108 Change(bool CreateReplacement, SourceRange OriginalWhitespaceRange, 163 const Change *StartOfBlockComment; argument 205 SmallVector<Change, 16> Changes;
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/changes/ |
D | ChangeTest.java | 41 Change change = new Change(memoryArchiveEntry, null, false); in testFailsToCreateChangeTakingFourArgumentsThrowsNullPointerExceptionOne() 51 Change change = new Change(null, pipedInputStream, false); in testFailsToCreateChangeTakingFourArgumentsThrowsNullPointerExceptionTwo() 59 Change change = new Change(null, (-407)); in testFailsToCreateChangeTakingThreeArgumentsThrowsNullPointerException()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device_unittest.cpp | 19 enum class Change { kNo, kYes }; enum 24 Change m_change; 73 if (state.m_change == State::Change::kYes) { in CommonTest() 149 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes, in TEST() 152 {State::Change::kNo, State::Save::kYes, State::Clip::kDifferentPath, in TEST() 154 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes, State::Clip::kNo, in TEST() 156 Harness(&CommonTest, {State::Change::kYes, State::Save::kNo, State::Clip::kNo, in TEST() 158 Harness(&CommonTest, {State::Change::kNo, State::Save::kNo, State::Clip::kNo, in TEST() 165 {State::Change::kNo, State::Save::kYes, State::Clip::kDifferentMatrix, in TEST() 167 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes, in TEST()
|
/external/v8/src/compiler/ |
D | js-intrinsic-lowering.cc | 91 return Change(node, javascript()->CreateIterResultObject(), value, done, in ReduceCreateIterResultObject() 102 return Change(node, op, value, effect, control); in ReduceDebugIsActive() 147 return Change(node, op, generator, closed, effect, control); in ReduceGeneratorClose() 157 return Change(node, op, generator, effect, control); in ReduceGeneratorGetInputOrDebugPos() 161 return Change( in ReduceAsyncGeneratorReject() 167 return Change( in ReduceAsyncGeneratorResolve() 173 return Change( in ReduceAsyncGeneratorYield() 185 return Change(node, op, generator, effect, control); in ReduceGeneratorGetResumeMode() 225 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue, in ReduceIsInstanceType() 231 return Change(node, simplified()->ObjectIsReceiver()); in ReduceIsJSReceiver() [all …]
|
D | js-intrinsic-lowering.h | 66 Reduction Change(Node* node, const Operator* op); in NON_EXPORTED_BASE() 67 Reduction Change(Node* node, const Operator* op, Node* a, Node* b); in NON_EXPORTED_BASE() 68 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); in NON_EXPORTED_BASE() 69 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c, in NON_EXPORTED_BASE() 71 Reduction Change(Node* node, Callable const& callable, in NON_EXPORTED_BASE()
|
D | simplified-operator-reducer.cc | 93 return Change(node, machine()->ChangeInt32ToFloat64(), m.InputAt(0)); in Reduce() 96 return Change(node, machine()->ChangeUint32ToFloat64(), m.InputAt(0)); in Reduce() 105 return Change(node, machine()->ChangeFloat64ToInt32(), m.InputAt(0)); in Reduce() 116 return Change(node, machine()->ChangeFloat64ToUint32(), m.InputAt(0)); in Reduce() 134 return Change(node, machine()->TruncateFloat64ToWord32(), m.InputAt(0)); in Reduce() 229 Reduction SimplifiedOperatorReducer::Change(Node* node, const Operator* op, in Change() function in v8::internal::compiler::SimplifiedOperatorReducer
|
/external/antlr/runtime/C/ |
D | ChangeLog | 7 Change 5641 on 2009/02/20 by jimi@jimi.jimi.antlr3 13 Change 5639 on 2009/02/20 by jimi@jimi.jimi.antlr3 19 Change 5577 on 2009/02/12 by jimi@jimi.jimi.antlr3 34 Change 5576 on 2009/02/11 by jimi@jimi.jimi.antlr3 40 Change 5575 on 2009/02/08 by jimi@jimi.jimi.antlr3 104 Change 5563 on 2009/01/28 by jimi@jimi.jimi.antlr3 109 Change 5562 on 2009/01/28 by jimi@jimi.jimi.antlr3 114 Change 5561 on 2009/01/28 by jimi@jimi.jimi.antlr3 119 Change 5558 on 2009/01/28 by jimi@jimi.jimi.antlr3 145 Change 5555 on 2009/01/26 by jimi@jimi.jimi.antlr3 [all …]
|
/external/ppp/pppd/plugins/radius/etc/ |
D | dictionary.microsoft | 32 ATTRIBUTE MS-ARAP-PW-Change-Reason 21 integer Microsoft 60 # MS-ARAP-Password-Change-Reason Values 62 VALUE MS-ARAP-PW-Change-Reason Just-Change-Password 1 63 VALUE MS-ARAP-PW-Change-Reason Expired-Password 2 64 VALUE MS-ARAP-PW-Change-Reason Admin-Requires-Password-Change 3 65 VALUE MS-ARAP-PW-Change-Reason Password-Too-Short 4
|
/external/clang/include/clang/Rewrite/Core/ |
D | RewriteBuffer.h | 104 void AddInsertDelta(unsigned OrigOffset, int Change) { in AddInsertDelta() argument 105 return Deltas.AddDelta(2*OrigOffset, Change); in AddInsertDelta() 110 void AddReplaceDelta(unsigned OrigOffset, int Change) { in AddReplaceDelta() argument 111 return Deltas.AddDelta(2*OrigOffset+1, Change); in AddReplaceDelta()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 8 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 23 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 35 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 38 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 65 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 14 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 29 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 41 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 44 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 71 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.4/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 9 - Change “pom.xml” to use SFTP to deploy to Maven repo. 27 * Change fake RNTO and RNFR CommandHandlers to allow renaming directories. 31 - FakeFtpServer (AbstractFakeFileSystem): Change rename() to fail if the TO file already exists. 78 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 93 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 105 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 108 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 135 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.0/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 21 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 36 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 48 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 51 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 78 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.2/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 8 * Change fake RNTO and RNFR CommandHandlers to allow renaming directories. 12 - FakeFtpServer (AbstractFakeFileSystem): Change rename() to fail if the TO file already exists. 59 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 74 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 86 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 89 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 116 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.0.2/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 35 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 50 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 62 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 65 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 92 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.0.1/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 29 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 44 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 56 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 59 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 86 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.5/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 19 - Change “pom.xml” to use SFTP to deploy to Maven repo. 37 * Change fake RNTO and RNFR CommandHandlers to allow renaming directories. 41 - FakeFtpServer (AbstractFakeFileSystem): Change rename() to fail if the TO file already exists. 88 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 103 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 115 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 118 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 145 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/MockFtpServer/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 19 - Change “pom.xml” to use SFTP to deploy to Maven repo. 37 * Change fake RNTO and RNFR CommandHandlers to allow renaming directories. 41 - FakeFtpServer (AbstractFakeFileSystem): Change rename() to fail if the TO file already exists. 88 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 103 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 115 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 118 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 145 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.3/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 19 * Change fake RNTO and RNFR CommandHandlers to allow renaming directories. 23 - FakeFtpServer (AbstractFakeFileSystem): Change rename() to fail if the TO file already exists. 70 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 85 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 97 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 100 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 127 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/mockftpserver/tags/2.1/ |
D | CHANGELOG.txt | 1 MockFtpServer Change Log 45 …ndlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler… 60 - Change "assembly.xml" to include "fakeftpserver*.xml" files. 72 - Change default org.mockftpserver.stub.command.CdupCommandHandler CDUP reply code from 250 to 200. 75 - Change StubFtpServer CommandHandlers to reply with 501 if required command parameters are missing… 102 - Change Maven POM (pom.xml) to enable sync-ing with central Maven repository (ibiblio).
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | TailRecursionElimination.cpp | 186 bool Change = ProcessReturningBlock(Ret, OldEntry, TailCallsAreMarkedTail, in runOnFunction() local 188 if (!Change && BB->getFirstNonPHIOrDbg() == Ret) in runOnFunction() 189 Change = FoldReturnAndProcessPred(BB, Ret, OldEntry, in runOnFunction() 192 MadeChange |= Change; in runOnFunction() 591 bool Change = false; in FoldReturnAndProcessPred() local 616 Change = true; in FoldReturnAndProcessPred() 620 return Change; in FoldReturnAndProcessPred()
|