/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | VarOptimizer.java | 216 multi.getCommand().addAll(((AMultipleCommand) command).getCommand()); in addToContents() 218 multi.getCommand().add(command); in addToContents() 269 for (PCommand command : multiCommand.getCommand()) { in optimizeEscapeSequences() 272 addToContents(contentsOf(lastEscapeCommand), escapeCommand.getCommand()); in optimizeEscapeSequences() 290 PCommand escapedCommand = escapeCommand.getCommand(); in contentsOf() 295 multiCommand.getCommand().add(escapedCommand); in contentsOf()
|
D | InlineRewriter.java | 79 PCommand command = node.getCommand(); 102 node.getCommand().apply(WHITESPACE_STRIPPER); in caseAInlineCommand() 103 node.replaceBy(node.getCommand()); in caseAInlineCommand()
|
/external/llvm-project/clang/unittests/Tooling/ |
D | CompilationDatabaseTest.cpp | 728 std::string getCommand(llvm::StringRef F) { in getCommand() function in clang::tooling::InterpolateTest 788 EXPECT_EQ(getCommand("foo.h"), in TEST_F() 791 EXPECT_EQ(getCommand("foo"), "clang -D dir/foo.cpp -x c++-header -std=c++17"); in TEST_F() 793 EXPECT_EQ(getCommand("foo.cce"), in TEST_F() 796 EXPECT_EQ(getCommand("foo.hpp"), "clang -D dir/foo.cpp -std=c++17"); in TEST_F() 798 EXPECT_EQ(getCommand("baz.h"), "clang -D dir/baz.cee -x c-header"); in TEST_F() 800 EXPECT_EQ(getCommand("foo.c"), "clang -D dir/bar.c"); in TEST_F() 803 EXPECT_EQ(getCommand("foo.c"), "clang -D dir/foo.cpp"); in TEST_F() 805 EXPECT_EQ(getCommand("aux.h"), in TEST_F() 812 EXPECT_EQ(getCommand("dir/bar.cpp"), "clang -D dir/foo.cpp -Wall"); in TEST_F() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
D | DepthFirstAdapter.java | 54 List<PCommand> copy = new ArrayList<PCommand>(node.getCommand()); in caseAMultipleCommand() 285 if(node.getCommand() != null) in caseAEscapeCommand() 287 node.getCommand().apply(this); in caseAEscapeCommand() 314 if(node.getCommand() != null) in caseAAutoescapeCommand() 316 node.getCommand().apply(this); in caseAAutoescapeCommand() 347 if(node.getCommand() != null) in caseAWithCommand() 349 node.getCommand().apply(this); in caseAWithCommand() 380 if(node.getCommand() != null) in caseALoopToCommand() 382 node.getCommand().apply(this); in caseALoopToCommand() 417 if(node.getCommand() != null) in caseALoopCommand() [all …]
|
D | ReversedDepthFirstAdapter.java | 54 List<PCommand> copy = new ArrayList<PCommand>(node.getCommand()); in caseAMultipleCommand() 278 if(node.getCommand() != null) in caseAEscapeCommand() 280 node.getCommand().apply(this); in caseAEscapeCommand() 307 if(node.getCommand() != null) in caseAAutoescapeCommand() 309 node.getCommand().apply(this); in caseAAutoescapeCommand() 336 if(node.getCommand() != null) in caseAWithCommand() 338 node.getCommand().apply(this); in caseAWithCommand() 369 if(node.getCommand() != null) in caseALoopToCommand() 371 node.getCommand().apply(this); in caseALoopToCommand() 402 if(node.getCommand() != null) in caseALoopCommand() [all …]
|
/external/connectedappssdk/tests/instrumented/src/main/java/com/google/android/enterprise/connectedapps/instrumented/utils/ |
D | InstrumentedTestUtilities.java | 257 .getCommand()); in turnOffWorkProfile() 263 .getCommand()); in turnOffWorkProfile() 269 .getCommand()); in turnOffWorkProfile() 307 .getCommand()); in turnOnWorkProfile() 313 .getCommand()); in turnOnWorkProfile() 319 .getCommand()); in turnOnWorkProfile()
|
D | ServiceCall.java | 114 public String getCommand() { in getCommand() method in ServiceCall.PreparedServiceCall 184 String getCommand() { in getCommand() method in ServiceCall
|
/external/parameter-framework/upstream/remote-processor/ |
D | RequestMessage.cpp | 57 const string &CRequestMessage::getCommand() const in getCommand() function in CRequestMessage 97 writeString(getCommand()); in fillDataToSend() 131 size_t uiSize = getStringSize(getCommand()); in getDataSize()
|
D | RemoteCommandHandlerTemplate.h | 154 findCommandParserItem(remoteCommand.getCommand()); in remoteCommandProcess() 164 if (remoteCommand.getCommand() == "help") { in remoteCommandProcess()
|
D | RemoteCommand.h | 40 virtual const std::string &getCommand() const = 0;
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | TemplateInterpreter.java | 263 node.getCommand().apply(this); in caseAEscapeCommand() 282 node.getCommand().apply(this); in caseAAutoescapeCommand() 306 node.getCommand().apply(this); in caseAWithCommand() 324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand() 341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand() 365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() 381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); in caseAEachCommand() 397 node.getCommand().apply(this); in caseAAltCommand() 448 context.registerMacro(macroName, new InterpretedMacro(node.getCommand(), template, macroName, in caseADefCommand()
|
/external/llvm-project/clang/lib/Tooling/Refactoring/ |
D | RefactoringActions.cpp | 31 StringRef getCommand() const override { return "extract"; } in getCommand() function in clang::tooling::__anonf0f382440111::ExtractRefactoring 76 StringRef getCommand() const override { return "local-rename"; } in getCommand() function in clang::tooling::__anonf0f382440111::LocalRename
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | TemplateTranslator.java | 316 writeEach(node.getVariable(), parent, node.getCommand()); in caseAEachCommand() 355 node.getCommand().apply(this); in caseAWithCommand() 379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand() 392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand() 406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() 495 node.getCommand().apply(this); in caseAAltCommand() 535 node.getCommand().apply(this); in caseAEscapeCommand() 552 node.getCommand().apply(this); in caseAAutoescapeCommand() 687 node.getCommand().apply(TemplateTranslator.this); in parseDefNode()
|
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/ |
D | CommandParser.java | 29 Command getCommand() { in getCommand() method in CommandParser
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-block-line.m | 59 - (void)serverConnection:(TConnection *)connection getCommand:(NSString *)str 64 // CHECK: define internal void @"__39-[TServer serverConnection:getCommand:]_block_invoke"
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | debug-info-block-line.m | 59 - (void)serverConnection:(TConnection *)connection getCommand:(NSString *)str 64 // CHECK: define internal void @"__39-[TServer serverConnection:getCommand:]_block_invoke"
|
/external/llvm-project/clang/include/clang/Tooling/Refactoring/ |
D | RefactoringAction.h | 45 virtual StringRef getCommand() const = 0;
|
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 118 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 119 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 118 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 119 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 118 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 119 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 119 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 120 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 119 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 120 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 118 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 119 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 119 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 120 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/ |
D | _AbstractTrackingCommandHandlerTest.java | 118 assertSame("1", COMMAND, commandHandler.getInvocation(0).getCommand()); in testGetInvocation() 119 assertSame("2", COMMAND_WITH_ARGS, commandHandler.getInvocation(1).getCommand()); in testGetInvocation()
|