HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 176 - 200 of 3150) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/lldb/source/Plugins/Process/Utility/
DynamicRegisterInfo.cpp 88 PythonString set_pystr("set");
97 // { 'name':'rcx' , 'bitsize' : 64, 'offset' : 16, 'encoding':'uint' , 'format':'hex' , 'set': 0, 'gcc' : 2, 'dwarf' : 2, 'generic':'arg4', 'alt-name':'arg4', },
143 const int64_t set = reg_info_dict.GetItemForKeyAsInteger(set_pystr, -1); local
144 if (set >= m_sets.size())
160 m_set_reg_nums[set].push_back(i);
187 uint32_t set = GetRegisterSetIndexByName (set_name, true); local
188 assert (set < m_sets.size());
189 assert (set < m_set_reg_nums.size());
190 assert (set < m_set_names.size());
191 m_set_reg_nums[set].push_back(reg_num)
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAttribute.h 24 void set(dw_attr_t attr, dw_form_t form) { m_attr_form = (attr << 16) | form; } function in class:DWARFAttribute
  /external/llvm/include/llvm/MC/
MachineLocation.h 60 void set(unsigned R) { function
66 void set(unsigned R, int O) { function
  /external/llvm/include/llvm/Support/
ThreadLocal.h 54 // set - Associates a pointer to an object with the current thread.
55 void set(T* d) { setInstance(d); } function in class:llvm::sys::ThreadLocal
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_blorp.cpp 47 brw_blorp_mip_info::set(struct intel_mipmap_tree *mt, function in class:brw_blorp_mip_info
67 brw_blorp_surface_info::set(struct brw_context *brw, function in class:brw_blorp_surface_info
71 brw_blorp_mip_info::set(mt, level, layer);
79 /* The miptree is a W-tiled stencil buffer. Surface states can't be set
190 depth.set(mt, level, layer);
  /external/mesa3d/src/mesa/main/
stencil.c 34 * front OR back face state (as set by glActiveStencilFaceEXT) is set.
97 * Set the clear value for the stencil buffer.
122 * Set the function and reference value for stencil testing.
158 /* set both front and back state */
181 * Set the function and reference value for stencil testing.
229 /* set both front and back state */
252 * Set the stencil writing mask.
289 /* set both front and back state */
306 * Set the stencil test actions
422 GLboolean set = GL_FALSE; local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AlloCommandHandler.java 61 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(parametersString));
65 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(tokenizer.nextToken()));
67 invocationRecord.set(RECORD_SIZE_KEY, Integer.valueOf(tokenizer.nextToken()));
EprtCommandHandler.java 66 invocationRecord.set(HOST_KEY, client.host);
67 invocationRecord.set(PORT_KEY, new Integer(client.port));
HelpCommandHandler.java 55 invocationRecord.set(COMMAND_NAME_KEY, command.getOptionalString(0));
60 * Set the help message String to be returned by this command
ListCommandHandler.java 71 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
82 * Set the contents of the directoryListing to send back on the data connection for this command.
85 * @param directoryListing - the directoryListing to set
MkdCommandHandler.java 51 invocationRecord.set(PATHNAME_KEY, pathname);
NlstCommandHandler.java 48 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
59 * Set the contents of the directoryListing to send back on the data connection for this command.
62 * @param directoryListing - the directoryListing to set
PortCommandHandler.java 63 invocationRecord.set(HOST_KEY, client.host);
64 invocationRecord.set(PORT_KEY, new Integer(client.port));
RestCommandHandler.java 51 invocationRecord.set(MARKER_KEY, marker);
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

Completed in 187 milliseconds

1 2 3 4 5 6 78 91011>>