HomeSort by relevance Sort by last modified time
    Searched defs:Token (Results 1 - 25 of 34) sorted by null

1 2

  /external/libvpx/vp8/encoder/
tokenize.h 22 int Token;
39 /* TODO: The Token field should be broken out into a separate char array to
  /external/nist-sip/java/gov/nist/core/
Token.java 29 * Base token class.
37 public class Token {
  /external/chromium/third_party/icu/public/i18n/unicode/
translit.h 267 union Token {
269 * This token, interpreted as a 32-bit integer.
274 * This token, interpreted as a native pointer.
281 * Return a token containing an integer.
282 * @return a token containing an integer.
285 inline static Token integerToken(int32_t);
288 * Return a token containing a pointer.
289 * @return a token containing a pointer.
292 inline static Token pointerToken(void*);
309 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context)
    [all...]
  /external/icu4c/i18n/unicode/
translit.h 267 union Token {
269 * This token, interpreted as a 32-bit integer.
274 * This token, interpreted as a native pointer.
281 * Return a token containing an integer.
282 * @return a token containing an integer.
285 inline static Token integerToken(int32_t);
288 * Return a token containing a pointer.
289 * @return a token containing a pointer.
292 inline static Token pointerToken(void*);
309 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context)
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 439 // if the current optdef calls for more values, consume the next token
1334 final Token token = (Token) KEYWORDS.get (value.toString ()); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /external/v8/src/
token.h 36 // symbolic token name, string is the corresponding syntactic symbol
38 // The parameters are invoked for token categories as follows:
198 /* Illegal token - not able to scan. */ \
205 class Token {
207 // All token values.
215 // Returns a string corresponding to the C++ token name
216 // (e.g. "LT" for the token LT).
247 // Returns a string corresponding to the JS token string
248 // (.e., "<" for the token LT) or NULL if the token doesn'
    [all...]
  /external/webkit/WebCore/xml/
XPathParser.h 47 struct Token {
54 Token(int t) : type(t) {}
55 Token(int t, const String& v): type(t), str(v) {}
56 Token(int t, Step::Axis v): type(t), axis(v) {}
57 Token(int t, NumericOp::Opcode v): type(t), numop(v) {}
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {}
96 Token makeTokenAndAdvance(int type, int advance = 1);
97 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
98 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
102 Token lexString()
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
spectrumMngmntMgr.c 89 TI_UINT8 Token;
216 measurementToken - The Request IE token
236 *measurementToken = (TI_UINT16)dot11hReqIEHdr->Token;
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/AirLink/Measurement/dot11h/
spectrumMngmntMgr.c 92 UINT8 Token;
219 measurementToken - The Request IE token
239 *measurementToken = (UINT16)dot11hReqIEHdr->Token;
  /system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/
spectrumMngmntMgr.c 89 TI_UINT8 Token;
216 measurementToken - The Request IE token
236 *measurementToken = (TI_UINT16)dot11hReqIEHdr->Token;
  /external/chromium/base/json/
json_reader.h 50 // A struct to hold a JS token.
51 class Token {
68 Token(Type t, const wchar_t* b, int len)
73 // A pointer into JSONReader::json_pos_ that's the beginning of this token.
76 // End should be one char past the end of the token.
79 // Get the character that's one past the end of this token.
139 // Parses a sequence of characters into a Token::NUMBER. If the sequence of
140 // characters is not a valid number, returns a Token::INVALID_TOKEN. Note
143 Token ParseNumberToken();
145 // Try and convert the substring that token holds into an int or a double. I
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.h 101 // is NOT included in the token; it's up to the parser to
114 // Structure representing a token read from the token stream.
115 struct Token {
117 string text; // The exact text of the token as it appeared in
122 // the token within the input stream. They are zero-based.
127 // Get the current token. This is updated when Next() is called. Before
129 const Token& current();
131 // Advance to the next token. Returns false if the end of the input is
137 // Parses a TYPE_FLOAT token. This never fails, so long as the text actuall
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
HanziToPinyin.java 308 public static class Token {
318 public Token() {
321 public Token(int type, String source, String target) {
327 * Type of this token, ASCII, PINYIN or UNKNOWN.
364 private Token getToken(char character) {
365 Token token = new Token(); local
367 token.source = letter;
371 token.type = Token.LATIN
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
LevenshteinDistance.java 33 private final Token[] mSource;
34 private final Token[] mTarget;
38 public LevenshteinDistance(Token[] source, Token[] target) {
65 final Token[] src = mSource;
66 final Token[] trg = mTarget;
72 Token sourceToken = src[s-1];
74 Token targetToken = trg[t-1];
99 * Gets the list of operations which were applied to each target token; {@link #calculate} must
101 * @return A list of {@link EditOperation}s indicating the origin of each token in the targe
    [all...]
  /external/chromium/net/base/
cookie_monster.h 247 // The maximum number of Token/Value pairs. Shouldn't have more than 8.
258 const std::string& Token() const { return Name(); }
286 // 0th index is the user supplied token/value, not an attribute.
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
console.h 91 /* Add token */
93 const char *name, /* Token name. Shouldn't be allocated on stack! */
94 const char *help, /* Token help. Shouldn't be allocated on stack! */
95 FuncToken_t p_func, /* Token handler */
96 ConParm_t p_parms[]);/* Array of token parameters. */
103 Monitor token handler can call consoleStop() to exit the
169 typedef enum { Dir, Token } ConEntry_type_t;
174 /* Monitor token structure */
191 FuncToken_t f_tokenFunc; /* Token handler */
194 } token; member in union:ConEntry_t::__anon16132
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
console.c 59 Token
62 /* Token types */
76 /* Monitor token structure */
94 FuncToken_t f_tokenFunc; /* Token handler */
98 } token; member in union:ConEntry_t::__anon10216
132 Make a preliminary analizis of <name> token.
133 Returns a token type (Empty, Up, Root, Break, Name)
330 /* Returns number of parameters of the given token
335 if ( !p_token->u.token.parm )
338 (i<p_token->u.token.totalParams) &
    [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
console.c 59 Token
62 /* Token types */
76 /* Monitor token structure */
94 FuncToken_t f_tokenFunc; /* Token handler */
98 } token; member in union:ConEntry_t::__anon16937
132 Make a preliminary analizis of <name> token.
133 Returns a token type (Empty, Up, Root, Break, Name)
330 /* Returns number of parameters of the given token
335 if ( !p_token->u.token.parm )
338 (i<p_token->u.token.totalParams) &
    [all...]
  /external/webkit/WebCore/html/
HTMLTokenizer.h 58 struct Token {
59 Token()
65 ~Token() { }
219 Token m_currentToken;
  /sdk/emulator/gps/
gps_qemu.c 61 } Token;
67 Token tokens[ MAX_NMEA_TOKENS ];
116 static Token
119 Token tok;
251 nmea_reader_update_time( NmeaReader* r, Token tok )
288 nmea_reader_update_date( NmeaReader* r, Token date, Token time )
290 Token tok = date;
315 convert_from_hhmm( Token tok )
327 Token latitude
    [all...]
  /bionic/libc/kernel/tools/
cpp.py 61 class Token:
62 """a simple class to hold information about a given token.
63 each token has a position in the source code, as well as
65 the token's class, while the value is the string of the
66 original token itself.
139 """a small class to iterate over a list of Token objects"""
154 """retrieve the id of the current token"""
160 """retrieve the current token. does not change position"""
166 """increase current token position"""
179 """skip an optional token"""
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 73 private ArrayList<Token> tokens;
105 this.tokens = new ArrayList<Token>();
130 // first token)
189 * Get a the appropriate Token for a given URL
195 public static Token tokenForUrl(String url, String text) {
235 Token token = tokens.get(i); local
236 if (token.isMedia() || (parts.size() == 0) || lastPart().isMedia()) {
239 lastPart().add(token);
453 // Figure out the appropriate token type
    [all...]

Completed in 2115 milliseconds

1 2