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

1 2 3 4 5 6 78 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
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/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
Buffer.java 6 * you may not use this file except in compliance with the License.
37 * of copying bytes from one place in memory to another, this class just changes
40 * <p><strong>This buffer grows with your data.</strong> Just like ArrayList,
43 * <p><strong>This buffer pools its byte arrays.</strong> When you allocate a
46 * This class avoids zero-fill and GC churn by pooling byte arrays.
47 * @hide This class is not part of the Android public SDK API
60 /** Returns the number of bytes currently in this buffer. */
66 return this;
76 Buffer.this.write(data, offset, byteCount);
86 return this + ".outputStream()"
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyRepeatedField.java 11 * notice, this list of conditions and the following disclaimer.
13 * copyright notice, this list of conditions and the following disclaimer
18 * this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 this(runtime, klazz);
66 this.fieldType = fieldType;
67 this.storage = runtime.newArray();
68 this.typeClass = typeClass;
74 this.storage = runtime.newArray()
    [all...]
  /external/setupdesign/main/src/com/google/android/setupdesign/template/
RecyclerViewScrollHandlingDelegate.java 5 * you may not use this file except in compliance with the License.
39 this.requireScrollMixin = requireScrollMixin;
40 this.recyclerView = recyclerView;
56 if (this.recyclerView != null) {
57 this.recyclerView.addOnScrollListener(
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
LabelMethodItem.java 10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
15 * derived from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 this.options = options;
45 this.labelPrefix = labelPrefix;
72 return this.compareTo((MethodItem)o) == 0;
82 writer.printUnsignedLongAsHex(this.getLabelAddress());
92 return this.getCodeAddress()
    [all...]
  /external/snakeyaml/src/test/java/examples/
CustomImplicitResolverTest.java 5 * you may not use this file except in compliance with the License.
61 this.yamlConstructors.put(CUSTOM_TAG, new ConstructBig());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
ImmutablesRepresenter.java 5 * you may not use this file except in compliance with the License.
33 this.representers.put(java.awt.Color.class, new RepresentColor());
34 this.representers.put(Insets.class, new RepresentInsets());
35 this.representers.put(MatteBorder.class, new RepresentMatteBorder());
36 this.representers.put(Rectangle.class, new RepresentRectangle());

Completed in 532 milliseconds

1 2 3 4 5 6 78 91011>>