HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 151 - 175 of 524) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
ChallengeParser.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
71 NameValue nv = this.nameValue('=');
88 this.lexer.SPorHT();
91 this.lexer.SPorHT();
97 this.parseParameter(header);
98 this.lexer.SPorHT();
102 this.lexer.match(',')
    [all...]
ContentDispositionParser.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 this.lexer.SPorHT();
77 this.lexer.match(TokenTypes.ID);
81 this.lexer.SPorHT();
84 this.lexer.SPorHT();
85 this.lexer.match('\n');
112 * CVS: If this change addresses one or more issues
    [all...]
ContentEncodingParser.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
80 this.lexer.SPorHT();
81 this.lexer.match(TokenTypes.ID);
86 this.lexer.SPorHT();
91 this.lexer.match(',');
92 this.lexer.SPorHT();
93 this.lexer.match(TokenTypes.ID)
    [all...]
ContentLengthParser.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
58 String number = this.lexer.number();
60 this.lexer.SPorHT();
61 this.lexer.match('\n');
89 * CVS: If this change addresses one or more issues,
92 * CVS: If this change has been taken from another system,
93 * CVS: then name the system in this line, otherwise delete it
    [all...]
ContentTypeParser.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
63 this.headerName(TokenTypes.CONTENT_TYPE);
68 this.lexer.SPorHT();
75 this.lexer.SPorHT();
78 this.lexer.match('\n');
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.12/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.12/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.12/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...]

Completed in 89 milliseconds

1 2 3 4 5 67 8 91011>>