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

1 2 3 4 5 6 78 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
MaxForwardsParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
57 String number = this.lexer.number();
59 this.lexer.SPorHT();
60 this.lexer.match('\n');
88 * CVS: If this change addresses one or more issues,
91 * CVS: If this change has been taken from another system,
92 * CVS: then name the system in this line, otherwise delete it
    [all...]
MimeVersionParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
76 String majorVersion = this.lexer.number();
78 this.lexer.match('.');
79 String minorVersion = this.lexer.number();
85 this.lexer.SPorHT();
87 this.lexer.match('\n');
112 * CVS: If this change addresses one or more issues
    [all...]
MinExpiresParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
76 String number = this.lexer.number();
82 this.lexer.SPorHT();
84 this.lexer.match('\n');
109 * CVS: If this change addresses one or more issues,
112 * CVS: If this change has been taken from another system,
113 * CVS: then name the system in this line, otherwise delete it
    [all...]
ParametersParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
53 this.lexer.SPorHT();
55 this.lexer.consume(1);
57 this.lexer.SPorHT();
61 this.lexer.SPorHT();
71 this.lexer.SPorHT();
75 this.lexer.SPorHT()
    [all...]
RAckParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
79 String number = this.lexer.number();
81 this.lexer.SPorHT();
82 number = this.lexer.number();
84 this.lexer.SPorHT();
85 this.lexer.match(TokenTypes.ID);
92 this.lexer.SPorHT()
    [all...]
RSeqParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
75 String number = this.lexer.number();
81 this.lexer.SPorHT();
83 this.lexer.match('\n');
121 * CVS: If this change addresses one or more issues,
124 * CVS: If this change has been taken from another system,
125 * CVS: then name the system in this line, otherwise delete it
    [all...]
TimeStampParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
75 this.lexer.SPorHT();
76 String firstNumber = this.lexer.number();
81 this.lexer.match('.');
82 String secondNumber = this.lexer.number();
99 this.lexer.SPorHT();
101 firstNumber = this.lexer.number()
    [all...]
UserAgentParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
78 if (this.lexer.lookAhead(0) == '\n')
86 while (this.lexer.lookAhead(0) != '\n'
87 && this.lexer.lookAhead(0) != '\0') {
89 if (this.lexer.lookAhead(0) == '(') {
90 String comment = this.lexer.comment();
95 // The RFC Does NOT allow this space but we are generous in what we accep
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 49 this.lexer.SPorHT();
51 this.lexer.SPorHT();
ReplacesParser.java 51 this.lexer.SPorHT();
53 this.lexer.SPorHT();
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PChargingFunctionAddressesParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
98 this.parseParameter(chargingFunctionAddresses);
99 this.lexer.SPorHT();
104 this.lexer.match(';');
105 this.lexer.SPorHT();
126 NameValue nv = this.nameValue('=');
PMediaAuthorizationParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
90 this.lexer.match(TokenTypes.ID);
99 this.lexer.SPorHT();
102 this.lexer.match(',');
105 this.lexer.SPorHT();
PPreferredServiceParser.java 5 * This software was developed by employees of the National Institute of
12 * This software is provided by NIST as a service and is expressly
21 * Permission to use this software is contingent upon your acceptance
22 * of the terms of this agreement
42 * Parse this:
79 * This last para is a little ambiguous.I will only check that atleast
85 * or sub-applications. This is bound to cause an error at the recepient later.
99 this.lexer.match(TokenTypes.P_PREFERRED_SERVICE);
100 this.lexer.SPorHT();
101 this.lexer.match(':')
    [all...]
PUserDatabaseParser.java 5 * This software was developed by employees of the National Institute of
12 * This software is provided by NIST as a service and is expressly
21 * Permission to use this software is contingent upon your acceptance
22 * of the terms of this agreement
40 * This is the parser for the P-user-database header.
77 this.lexer.match(TokenTypes.P_USER_DATABASE);
78 this.lexer.SPorHT();
79 this.lexer.match(':');
80 this.lexer.SPorHT();
83 this.parseheader(userDatabase)
    [all...]
PrivacyParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
84 this.headerName(TokenTypes.PRIVACY);
87 this.lexer.SPorHT();
92 this.lexer.match(TokenTypes.ID);
95 this.lexer.SPorHT();
101 this.lexer.match(';');
102 this.lexer.SPorHT()
    [all...]
SecurityAgreeParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
72 NameValue nv = this.nameValue('=');
98 this.lexer.SPorHT();
102 this.lexer.SPorHT();
111 this.lexer.match(';');
113 this.lexer.SPorHT();
119 this.parseParameter(header)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageChannel.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
93 * Get the SIPStack object from this message channel.
95 * @return SIPStack object of this message channel
100 * Get transport string of this message channel.
102 * @return Transport string of this message channel.
107 * Get whether this channel is reliable or not.
114 * Return true if this is a secure channel
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/disk/
SDL_diskaudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
22 This file written by Ryan C. Gordon (icculus@icculus.org)
80 SDL_AudioDevice *this; local
84 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
85 if ( this ) {
86 SDL_memset(this, 0, (sizeof *this));
87 this->hidden = (struct SDL_PrivateAudioData *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/mme/
SDL_mmeaudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free
62 SDL_AudioDevice *this; local
65 this = SDL_malloc(sizeof(SDL_AudioDevice));
66 if ( this ) {
67 SDL_memset(this, 0, (sizeof *this));
68 this->hidden = SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
97 SDL_VideoDevice *this = current_video; local
111 succeeded = video->SetGamma(this, red, green, blue);
117 so this function isn't officially supported.
123 SDL_VideoDevice *this = current_video; local
139 succeeded = video->GetGamma(this, red, green, blue);
148 SDL_VideoDevice *this = current_video; local
189 succeeded = video->SetGammaRamp(this, video->gamma)
199 SDL_VideoDevice *this = current_video; local
    [all...]
SDL_yuv.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
24 /* This is the implementation of the YUV video surface support */
36 SDL_VideoDevice *this = current_video; local
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fb3dfx.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
63 if ( dst == this->screen ) {
87 if ( dst == this->screen ) {
96 SDL_VideoDevice *this = current_video; local
110 if ( dst == this->screen ) {
163 if ( dst == this->screen ) {
178 if ( ! this->info.blit_hw_A ) {
183 if ( ! this->info.blit_hw_CC )
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamSession.java 3 * you may not use this file except in compliance with the License.
46 * In-band bytestreams are bidirectional and this session encapsulates the streams for both
61 /* the In-Band Bytestream open request for this session */
65 * the input stream for this session (either IQIBBInputStream or MessageIBBInputStream)
70 * the output stream for this session (either IQIBBOutputStream or MessageIBBOutputStream)
87 * @param byteStreamRequest the In-Band Bytestream open request for this session
92 this.connection = connection;
93 this.byteStreamRequest = byteStreamRequest;
94 this.remoteJID = remoteJID;
99 this.inputStream = new IQIBBInputStream();
    [all...]
InitiationListener.java 3 * you may not use this file except in compliance with the License.
36 * for this connection are rejected with an <resource-constraint/> error. The maximum block
59 this.manager = manager;
76 if (ibbRequest.getBlockSize() > this.manager.getMaximumBlockSize()) {
77 this.manager.replyResourceConstraintPacket(ibbRequest);
82 if (this.manager.getIgnoredBytestreamRequests().remove(ibbRequest.getSessionID()))
86 InBandBytestreamRequest request = new InBandBytestreamRequest(this.manager, ibbRequest);
89 BytestreamListener userListener = this.manager.getUserListener(ibbRequest.getFrom());
94 else if (!this.manager.getAllRequestListeners().isEmpty()) {
98 for (BytestreamListener listener : this.manager.getAllRequestListeners()) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 7 * you may not use this file except in compliance with the License.
38 /* flag to indicate if this session is a direct or mediated connection */
42 this.socket = socket;
43 this.isDirect = isDirect;
54 return this.isDirect;
59 * if this session is established through a direct connection between the initiator and target.
65 return !this.isDirect;
69 return this.socket.getInputStream();
73 return this.socket.getOutputStream();
78 return this.socket.getSoTimeout();
    [all...]

Completed in 1005 milliseconds

1 2 3 4 5 6 78 91011>>