/external/lldb/include/lldb/Core/ |
UserID.h | 1 //===-- UserID.h ------------------------------------------------*- C++ -*-===// 19 /// @class UserID UserID.h "lldb/Core/UserID.h" 22 /// UserID is desinged as a mix in class that can contain an integer 33 struct UserID 38 UserID (lldb::user_id_t uid = LLDB_INVALID_UID) : m_uid(uid) {} 43 ~UserID () 78 /// from UserID: 81 /// pos = std::find_if (coll.begin(), coll.end(), UserID::IDMatches(blockID)) [all...] |
Debugger.h | 30 #include "lldb/Core/UserID.h" 51 public UserID,
|
Section.h | 19 #include "lldb/Core/UserID.h" 108 public UserID,
|
ValueObject.h | 26 #include "lldb/Core/UserID.h" 66 class ValueObject : public UserID [all...] |
/external/lldb/source/Core/ |
UserID.cpp | 1 //===-- UserID.cpp ----------------------------------------------*- C++ -*-===// 10 #include "lldb/Core/UserID.h" 19 lldb_private::operator << (Stream& strm, const UserID& uid)
|
Android.mk | 66 UserID.cpp \
|
Section.cpp | 29 UserID (sect_id), 60 UserID (sect_id),
|
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
UserID.java | 26 public class UserID implements PacketExtension {
38 private String userID;
40 public UserID(String userID) {
41 this.userID = userID;
45 return this.userID;
69 String userID = parser.getAttributeValue("", "id");
74 return new UserID(userID);
[all...] |
OfferRevokeProvider.java | 36 // Default the userID to the JID.
37 String userID = userJID;
53 && parser.getName().equals(UserID.ELEMENT_NAME)) {
54 userID = parser.getAttributeValue("", "id");
63 return new OfferRevokePacket(userJID, userID, reason, sessionID);
69 private String userID;
73 public OfferRevokePacket (String userJID, String userID, String cause, String sessionID) {
75 this.userID = userID;
85 return this.userID;
[all...] |
OfferRequestProvider.java | 60 // Default userID to the JID.
61 String userID = userJID;
78 else if (UserID.ELEMENT_NAME.equals(elemName)) {
79 userID = parser.getAttributeValue("", "id");
104 new OfferRequestPacket(userJID, userID, timeout, metaData, sessionID, content);
113 private String userID;
119 public OfferRequestPacket(String userJID, String userID, int timeout, Map<String, List<String>> metaData,
123 this.userID = userID;
131 * Returns the userID, which is either the same as the userJID or a special [all...] |
/external/lldb/include/lldb/Symbol/ |
CompileUnit.h | 18 #include "lldb/Core/UserID.h" 26 /// The UserID of the compile unit is specified by the SymbolFile 38 public UserID,
|
Variable.h | 18 #include "lldb/Core/UserID.h" 24 class Variable : public UserID
|
Type.h | 16 #include "lldb/Core/UserID.h" 26 public UserID 30 UserID (uid), 55 public UserID
|
Block.h | 17 #include "lldb/Core/UserID.h" 42 public UserID,
|
Function.h | 19 #include "lldb/Core/UserID.h" 310 /// have unique user IDs (Function::UserID), know how to reconstruct 330 public UserID,
|
/external/lldb/source/Symbol/ |
CompileUnit.cpp | 23 UserID(cu_sym_id), 40 UserID(cu_sym_id), 89 *s << "id = " << (const UserID&)*this << ", file = \"" << (const FileSpec&)*this << "\", language = \"" << language << '"'; 104 *s << "CompileUnit" << (const UserID&)*this
|
Function.cpp | 205 UserID (func_uid), 229 UserID (func_uid), 343 *s << "id = " << (const UserID&)*this << ", name = \"" << name << "\", range = "; 358 *s << "Function" << (const UserID&)*this;
|
Type.cpp | 90 UserID (uid), 107 UserID (0), 125 UserID (rhs), 152 *s << "id = " << (const UserID&)*this; 206 *s << "Type" << (const UserID&)*this << ' ';
|
Block.cpp | 26 UserID(uid), 45 *s << "id = " << ((const UserID&)*this); 88 *s << "Block" << ((const UserID&)*this);
|
Variable.cpp | 48 UserID(uid), 98 *s << "Variable" << (const UserID&)*this; [all...] |
/external/lldb/include/lldb/Target/ |
ThreadPlan.h | 19 #include "lldb/Core/UserID.h" 226 public UserID
|
Thread.h | 17 #include "lldb/Core/UserID.h" 55 public UserID, [all...] |
Target.h | 988 class StopHook : public UserID [all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/user/ |
Workgroup.java | 26 import org.jivesoftware.smackx.workgroup.packet.UserID;
234 * cookie or a username obtained via the session. A userID can be explicitly
236 * that userID will be used instead of the user's JID to track conversations. The
237 * server will ignore a manually specified userID if the user's connection to the server
270 * cookie or a username obtained via the session. A userID can be explicitly
272 * that userID will be used instead of the user's JID to track conversations. The
273 * server will ignore a manually specified userID if the user's connection to the server
307 * cookie or a username obtained via the session. When specified, that userID will
309 * manually specified userID if the user's connection to the server is not anonymous.
312 * @param userID String that represents the ID of the user when using anonymous sessions [all...] |
/ndk/sources/host-tools/make-3.81/ |
arscan.c | 268 # define ar_uid UserID
|