OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:addKeyword
(Results
1 - 3
of
3
) sorted by null
/external/nist-sip/java/gov/nist/core/
LexerCore.java
96
protected void
addKeyword
(String name, int value) {
97
// System.out.println("
addKeyword
" + name + " value = " + value);
/external/icu4c/common/
uloc.c
636
* Both
addKeyword
and addValue must already be in canonical form.
637
* Either both
addKeyword
and addValue are NULL, or neither is NULL.
639
* If
addKeyword
is not NULL is must have length small enough to fit in KeywordStruct.keyword.
647
const char*
addKeyword
,
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java
99
addKeyword
(TokenNames.REGISTER, TokenTypes.REGISTER);
100
addKeyword
(TokenNames.ACK, TokenTypes.ACK);
101
addKeyword
(TokenNames.OPTIONS, TokenTypes.OPTIONS);
102
addKeyword
(TokenNames.BYE, TokenTypes.BYE);
103
addKeyword
(TokenNames.INVITE, TokenTypes.INVITE);
104
addKeyword
(TokenNames.SIP.toUpperCase(), TokenTypes.SIP);
105
addKeyword
(TokenNames.SIPS.toUpperCase(), TokenTypes.SIPS);
106
addKeyword
(TokenNames.SUBSCRIBE, TokenTypes.SUBSCRIBE);
107
addKeyword
(TokenNames.NOTIFY, TokenTypes.NOTIFY);
108
addKeyword
(TokenNames.MESSAGE, TokenTypes.MESSAGE)
[
all
...]
Completed in 4831 milliseconds