Home | History | Annotate | Download | only in android

Lines Matching full:value

26  * Key code value, followed by one or more space or tab characters.
27 * Display value, followed by one or more space or tab characters.
28 * Number value, followed by one or more space or tab characters.
29 * Base value, followed by one or more space or tab characters.
30 * Caps value, followed by one or more space or tab characters.
31 * Fn value, followed by one or more space or tab characters.
32 * Caps_fn value, followed by one or more space or tab characters.
33 * All values, except for the key code value must be either in character
34 * form ('X', where X is the value), or in hexadecimal form (0xXXXX, where
35 * XXXX is hexadecimal representation of the value). Note that if value is
36 * in hexadecimal form, it must not exceed value that can be contained in
51 /* Maps symbol name from .kcm file to a keycode value. */
56 /* Key code value for the symbol. */
272 * Returns a non-zero value if ch is an EOL character. Returns
273 * zero value if ch is not an EOL character.
282 * Returns a non-zero value if ch is a token separator.
283 * Returns zero value if ch is not a token separator.
293 * Returns a non-zero value if ch is a path separator.
294 * Returns zero value if ch is not a path separator.
362 * Returns non-zero value if token represents a comment, or zero otherwise.
371 * key_code - Upon success contains key code value for the key_name.
372 * Returns a zero value on success, or -1 if key code was not found
388 /* Gets unsigned short hexadecimal value for a token.
389 * token - Token to get hexadecimal value for. Note that this
392 * val - Upon success contains hexadecimal value for the token.
393 * Returns a zero value on success, or -1 on error.
398 // Make sure token format was ok and value doesn't exceed unsigned short.
408 /* Gets a character or hexadecimal value represented by a token.
409 * token - Token to get value from.
411 * value represented by a token.
412 * Returns a zero value on success, or -1 on error.
433 /* Gets first token for the line and calculates its value.
434 * line - Line to get token's value from.
436 * value represented by the first token in the line.
495 derror("Invalid format of charmap file %s. Invalid display value in line %d",
503 derror("Invalid format of charmap file %s. Invalid number value in line %d",
511 derror("Invalid format of charmap file %s. Invalid base value in line %d",
519 derror("Invalid format of charmap file %s. Invalid caps value in line %d",
527 derror("Invalid format of charmap file %s. Invalid fn value in line %d",
535 derror("Invalid format of charmap file %s. Invalid caps_fn value in line %d",
610 * Returns a zero value on success, or -1 on failure.