HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 301 - 325 of 5198) sorted by null

<<11121314151617181920>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
StatCommandHandler.java 50 // Do not initialize replyCode -- will be set dynamically
55 invocationRecord.set(PATHNAME_KEY, pathname);
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
67 * Set the contents of the status to send back as the reply text for this command
TypeCommandHandler.java 54 invocationRecord.set(TYPE_INFO_KEY, new String[]{type, format});
UserCommandHandler.java 47 // Do not initialize replyCode -- will be set dynamically
54 invocationRecord.set(USERNAME_KEY, command.getRequiredParameter(0));
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
75 * Set true to indicate that a password is required. If true, this command handler returns a reply
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AlloCommandHandler.java 62 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(parametersString));
67 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(tokenizer.nextToken()));
69 invocationRecord.set(RECORD_SIZE_KEY, Integer.valueOf(tokenizer.nextToken()));
AppeCommandHandler.java 50 invocationRecord.set(PATHNAME_KEY, filename);
60 invocationRecord.set(FILE_CONTENTS_KEY, data);
HelpCommandHandler.java 56 invocationRecord.set(COMMAND_NAME_KEY, command.getOptionalString(0));
61 * Set the help message String to be returned by this command
ListCommandHandler.java 56 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
67 * Set the contents of the directoryListing to send back on the data connection for this command.
69 * @param directoryListing - the directoryListing to set
MkdCommandHandler.java 52 invocationRecord.set(PATHNAME_KEY, pathname);
NlstCommandHandler.java 49 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
60 * Set the contents of the directoryListing to send back on the data connection for this command.
62 * @param directoryListing - the directoryListing to set
RestCommandHandler.java 52 invocationRecord.set(MARKER_KEY, marker);
StatCommandHandler.java 52 // Do not initialize replyCode -- will be set dynamically
60 invocationRecord.set(PATHNAME_KEY, pathname);
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
73 * Set the contents of the status to send back as the reply text for this command
StorCommandHandler.java 50 invocationRecord.set(PATHNAME_KEY, filename);
60 invocationRecord.set(FILE_CONTENTS_KEY, data);
StouCommandHandler.java 56 invocationRecord.set(FILE_CONTENTS_KEY, data);
69 * Set the filename returned with the final reply of the STOU command
TypeCommandHandler.java 58 invocationRecord.set(TYPE_INFO_KEY, new String[] {type, format});
UserCommandHandler.java 52 // Do not initialize replyCode -- will be set dynamically
60 invocationRecord.set(USERNAME_KEY, command.getRequiredString(0));
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
81 * Set true to indicate that a password is required. If true, this command handler returns a reply
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodDispatcher.java 24 public static void set(String identifier, MockMethodDispatcher dispatcher) { method in class:MockMethodDispatcher
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldSetter.java 17 field.set(target, value);
  /external/mockito/src/test/java/org/mockitousage/bugs/
ShouldMocksCompareToBeConsistentWithEqualsTest.java 12 import java.util.Set;
28 Set<Date> set = new TreeSet<Date>(); local
29 set.add(today);
30 set.add(tomorrow);
33 assertEquals(2, set.size());
42 Set<Date> set = new TreeSet<Date>(); local
43 set.add(today);
44 set.add(today)
    [all...]
  /external/mockito/src/test/java/org/mockitousage/verification/
VerificationOnMultipleMocksUsingMatchersTest.java 15 import java.util.Set;
46 Set<?> set = mock(Set.class); local
62 verifyZeroInteractions(set);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
io_control.hpp 47 // Set the value of the I/O control command.
48 void set(bool value) function in class:asio::detail::io_control::non_blocking_io
97 // Set the value of the I/O control command.
98 void set(std::size_t value) function in class:asio::detail::io_control::bytes_readable
posix_fd_set_adapter.hpp 45 bool set(socket_type descriptor) function in class:asio::detail::posix_fd_set_adapter
57 void set(reactor_op_queue<socket_type>& operations, op_queue<operation>& ops) function in class:asio::detail::posix_fd_set_adapter
63 if (!set(op_iter->first))
  /external/parameter-framework/upstream/test/test-fixed-point-parameter/
Main.py 134 """ Checks if we are able to set valueToSet via the parameter-framework
136 valueToSet -- the value we are trying to set
138 returns: the value we are trying to set
139 returns: True if we are able to set, False otherwise
141 (success, errorMsg) = self._pfwClient.set(self._paramPath, str(valueToSet))
148 as we attempted to set. The value can have a slight round error which
151 valuePreviouslySet -- the value we had previously set
154 returns: True if we are able to set, False otherwise
175 """ Checks if we are able to set the value that the parameter framework
178 valuePreviouslyGotten -- the value we are trying to set
218 def set(self, parameter, value): member in class:PfwClient
    [all...]
  /external/pdfium/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.cpp 41 void CBC_BarcodeMatrix::set(int32_t x, int32_t y, uint8_t value) { function in class:CBC_BarcodeMatrix
42 m_matrix[y]->set(x, value);
45 set(x, y, (uint8_t)(black ? 1 : 0));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
LazyStringList.java 107 * @throws UnsupportedOperationException if the <tt>set</tt> operation
112 void set(int index, ByteString element); method in interface:LazyStringList
120 * @throws UnsupportedOperationException if the <tt>set</tt> operation
125 void set(int index, byte[] element); method in interface:LazyStringList
  /external/python/cpython2/Demo/curses/
life.py 36 set(y,x) -- set the given cell to Live; doesn't refresh the screen
63 def set(self, y, x): member in class:LifeBoard
64 """Set a cell to the live state"""
130 self.set(j,i)

Completed in 598 milliseconds

<<11121314151617181920>>