HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 276 - 300 of 4356) sorted by null

<<11121314151617181920>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
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/cglib-and-asm/src/org/mockito/asm/
Item.java 141 void set(final int intVal) { method in class:Item
152 void set(final long longVal) { method in class:Item
163 void set(final float floatVal) { method in class:Item
174 void set(final double doubleVal) { method in class:Item
188 void set( method in class:Item
  /external/mockito/src/org/mockito/internal/configuration/
SpyAnnotationEngine.java 65 field.set(testInstance, Mockito.mock(instance.getClass(), withSettings()
  /external/mockito/src/org/mockito/internal/util/reflection/
Whitebox.java 18 throw new RuntimeException("Unable to set internal state on a private field. Please report to mockito mailing list.", e);
27 f.set(target, value);
29 throw new RuntimeException("Unable to set internal state on a private field. Please report to mockito mailing list.", e);
41 "You want me to set value to this field: '" + field +
  /external/opencv3/modules/core/misc/java/src/java/
core+Point.java 19 set(vals);
22 public void set(double[] vals) { method in class:Point
core+Scalar.java 29 set(vals);
33 public void set(double[] vals) { method in class:Scalar
core+Size.java 23 set(vals);
26 public void set(double[] vals) { method in class:Size
  /external/opencv3/modules/flann/include/opencv2/flann/
dynamic_bitset.h 90 /** set all the bits to 0
97 /** @brief set one bit to 0
106 * This function is useful when resetting a given set of bits so that the
125 /** set a bit to true
126 * @param index the index of the bit to set to 1
128 void set(size_t index) function in class:cvflann::DynamicBitset
140 /** check if a bit is set
142 * @return true if the bit is set
  /external/opencv3/samples/winrt/ImageManipulations/
MainPage.xaml.h 41 void set(Windows::UI::ViewManagement::ApplicationViewState value) function
69 void set(bool value) function
  /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/pdfium/core/src/fxcodec/jbig2/
JBig2_List.h 41 void set(size_t index, TYPE* pItem) { function in class:CJBig2_List
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.cpp 45 void CBC_BarcodeMatrix::set(int32_t x, int32_t y, uint8_t value) { function in class:CBC_BarcodeMatrix
46 ((CBC_BarcodeRow*)m_matrix[y])->set(x, value);
49 set(x, y, (uint8_t)(black ? 1 : 0));

Completed in 572 milliseconds

<<11121314151617181920>>