/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
H A D | UserID.java | 38 private String userID;
field in class:UserID 40 public UserID(String userID) {
argument 41 this.userID = userID;
45 return this.userID;
69 String userID = parser.getAttributeValue("", "id");
74 return new UserID(userID);
|
H A D | OfferRevokeProvider.java | 36 // Default the userID to the JID.
37 String userID = userJID;
54 userID = parser.getAttributeValue("", "id");
63 return new OfferRevokePacket(userJID, userID, reason, sessionID);
69 private String userID;
field in class:OfferRevokeProvider.OfferRevokePacket 73 public OfferRevokePacket (String userJID, String userID, String cause, String sessionID) {
argument 75 this.userID = userID;
85 return this.userID;
98 buf.append("<offer-revoke xmlns=\"http://jabber.org/protocol/workgroup\" jid=\"").append(userID) [all...] |
H A D | AgentStatus.java | 117 private String userID;
field in class:AgentStatus.ChatInfo 123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
argument 125 this.userID = userID;
145 * then the userID will be the value of the ID attribute of the USER element. Otherwise,
146 * the userID will be the bare JID of the user that made the request.
151 return userID;
197 if (userID != null) {
198 buf.append(" userID=\"").append(userID) [all...] |
H A D | Transcripts.java | 41 private String userID;
field in class:Transcripts 46 * Creates a transcripts request for the given userID.
48 * @param userID the id of the user to get his conversations transcripts.
50 public Transcripts(String userID) {
argument 51 this.userID = userID;
58 * @param userID the id of the user. Could be a real JID or a unique String that identifies
62 public Transcripts(String userID, List<Transcripts.TranscriptSummary> summaries) {
argument 63 this.userID = userID;
[all...] |
H A D | OfferRequestProvider.java | 60 // Default userID to the JID.
61 String userID = userJID;
79 userID = parser.getAttributeValue("", "id");
104 new OfferRequestPacket(userJID, userID, timeout, metaData, sessionID, content);
113 private String userID;
field in class:OfferRequestProvider.OfferRequestPacket 119 public OfferRequestPacket(String userJID, String userID, int timeout, Map<String, List<String>> metaData,
argument 123 this.userID = userID;
131 * Returns the userID, which is either the same as the userJID or a special
137 return userID;
[all...] |
H A D | TranscriptsProvider.java | 52 String userID = parser.getAttributeValue("", "userID");
70 return new Transcripts(userID, summaries);
|
/external/smack/src/org/jivesoftware/smackx/workgroup/ |
H A D | QueueUser.java | 33 private String userID;
field in class:QueueUser 48 this.userID = uid;
58 return this.userID;
|
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
H A D | RevokedOffer.java | 33 private String userID;
field in class:RevokedOffer 42 * @param userID the user ID of the user for which this revocation was issued.
48 RevokedOffer(String userJID, String userID, String workgroupName, String sessionID,
argument 53 this.userID = userID;
68 return this.userID;
|
H A D | Offer.java | 45 private String userID;
field in class:Offer 59 * @param userID the userID of the user from which the offer originates.
68 Offer(Connection conn, AgentSession agentSession, String userID,
argument 74 this.userID = userID;
104 * Returns the userID that the offer originates from. In most cases, the
105 * userID will simply be the JID of the requesting user. However, users can
106 * also manually specify a userID for their request. In that case, that value will
109 * @return the userID o [all...] |
H A D | TranscriptManager.java | 76 * @param userID the id of the user to get his conversations.
81 public Transcripts getTranscripts(String workgroupJID, String userID) throws XMPPException {
argument 82 Transcripts request = new Transcripts(userID);
|
H A D | AgentSession.java | 441 * @param userID the ID of the user to remove.
444 public void dequeueUser(String userID) throws XMPPException {
argument 456 * @param userID the id of the user to get his conversations.
460 public Transcripts getTranscripts(String userID) throws XMPPException {
argument 461 return transcriptManager.getTranscripts(workgroupJID, userID);
|
/external/sonivox/jet_tools/JetCreator/ |
H A D | JetDebug.py | 36 print("userID: %d" % queueSeg.userID)
48 print("userID: %d" % segment.userID)
|
H A D | JetPreview.py | 120 userID = 0
135 self.queueSegs.append(QueueSeg(self.segment.segname, userID, seg_num, dls_num, self.segment.repeat, self.segment.transpose, self.segment.mute_flags))
|
H A D | JetUtils.py | 101 jet.QueueSegment(queueSeg.userID, queueSeg.seg_num, queueSeg.dls_num, queueSeg.repeat, queueSeg.transpose, queueSeg.mute_flags)
105 def __init__ (self, name, userID, seg_num, dls_num=-1, repeat=0, transpose=0, mute_flags=0, status=''):
107 self.userID = userID
|
H A D | JetAudition.py | 276 userID = len(self.queueSegs)
281 self.queueSegs.append(QueueSeg(segment.segname, userID, segNum, dls_num, segment.repeat, segment.transpose, segment.mute_flags, STATUS_PENDING))
|
/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
H A D | FileTransferManager.java | 128 * @param userID
132 * @exception IllegalArgumentException if userID is null or not a full JID
134 public OutgoingFileTransfer createOutgoingFileTransfer(String userID) {
argument 135 if (userID == null) {
136 throw new IllegalArgumentException("userID was null");
141 else if (!StringUtils.isFullJID(userID)) {
145 return new OutgoingFileTransfer(connection.getUser(), userID,
|
H A D | FileTransferNegotiator.java | 387 * @param userID The userID of the user to whom the file will be sent.
398 public StreamNegotiator negotiateOutgoingTransfer(final String userID,
argument 412 si.setTo(userID);
|
/external/smack/src/org/jivesoftware/smackx/ |
H A D | XHTMLManager.java | 130 * @param userID the user to check. A fully qualified xmpp ID, e.g. jdoe@example.com 133 public static boolean isServiceEnabled(Connection connection, String userID) { argument 136 ServiceDiscoveryManager.getInstanceFor(connection).discoverInfo(userID);
|
/external/smack/src/org/jivesoftware/smackx/workgroup/user/ |
H A D | Workgroup.java | 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
313 * or <tt>null</tt> if a userID shoul 318 joinQueue(Form answerForm, String userID) argument 379 joinQueue(Map<String,Object> metadata, String userID) argument 590 private String userID = null; field in class:Workgroup.JoinQueuePacket 593 JoinQueuePacket(String workgroup, Form answerForm, String userID) argument [all...] |
/external/sonivox/arm-wt-22k/host_src/ |
H A D | jet.h | 143 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID);
|
/external/sonivox/arm-wt-22k/lib_src/ |
H A D | jet_data.h | 110 EAS_U8 userID; member in struct:s_jet_segment_tag
|
H A D | jet.c | 538 pStatus->currentUserID = pSeg->userID; 599 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID) argument 621 p->userID = userID; 1056 event |= easHandle->jetHandle->segQueue[(segTrack & JET_EVENT_SEG_MASK) >> JET_EVENT_SEG_SHIFT].userID << JET_EVENT_SEG_SHIFT;
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
H A D | picasa_client.js | 136 get userID() {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.ecf_3.1.0.v20100529-0735.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant-starteam.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |