HomeSort by relevance Sort by last modified time
    Searched refs:ID (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_find_cipher_id.c 15 Find cipher by ID, Tom St Denis
19 Find a cipher by ID number
20 @param ID The ID (not same as index) of the cipher to find
23 int find_cipher_id(unsigned char ID)
28 if (cipher_descriptor[x].ID == ID) {
crypt_find_hash_id.c 15 Find hash by ID, Tom St Denis
19 Find a hash by ID number
20 @param ID The ID (not same as index) of the hash to find
23 int find_hash_id(unsigned char ID)
28 if (hash_descriptor[x].ID == ID) {
crypt_find_hash_oid.c 18 int find_hash_oid(const unsigned long *ID, unsigned long IDlen)
21 LTC_ARGCHK(ID != NULL);
24 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
crypt_register_cipher.c 32 if (cipher_descriptor[x].name != NULL && cipher_descriptor[x].ID == cipher->ID) {
crypt_unregister_cipher.c 34 cipher_descriptor[x].ID = 255;
  /bootable/bootloader/legacy/include/boot/
usb_descriptors.h 57 0xD1, 0x18, // vendor id
58 0x0D, 0xD0, // product id
140 unsigned short id; member in struct:__anon589
143 #define ID(type,num) ((type << 8) | num)
146 { device_desc, sizeof(device_desc), ID(TYPE_DEVICE, 0) },
147 { config_desc, sizeof(config_desc), ID(TYPE_CONFIGURATION, 0) },
148 { manufacturer_string, sizeof(manufacturer_string), ID(TYPE_STRING, 1) },
149 { product_string, sizeof(product_string), ID(TYPE_STRING, 2) },
150 { default_string, sizeof(default_string), ID(TYPE_STRING, 4) },
151 { language_table, sizeof(language_table), ID(TYPE_STRING, 0) }
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
Perspective.java 43 folder.addPlaceholder(LogCatView.ID + ":*"); //$NON-NLS-1$
44 folder.addView(LogCatView.ID);
48 folder.addPlaceholder(DeviceView.ID + ":*"); //$NON-NLS-1$
49 folder.addView(DeviceView.ID);
53 folder.addPlaceholder(EmulatorControlView.ID + ":*"); //$NON-NLS-1$
54 folder.addView(EmulatorControlView.ID);
58 folder.addPlaceholder(ThreadView.ID + ":*"); //$NON-NLS-1$
59 folder.addView(ThreadView.ID);
60 folder.addView(HeapView.ID);
61 folder.addView(AllocTrackerView.ID);
    [all...]
  /external/chromium/third_party/icu/source/i18n/
esctrn.cpp 35 static Transliterator* _createEscUnicode(const UnicodeString& ID, Transliterator::Token /*context*/) {
37 return new EscapeTransliterator(ID, UNIPRE, EMPTY, 16, 4, TRUE, NULL);
39 static Transliterator* _createEscJava(const UnicodeString& ID, Transliterator::Token /*context*/) {
41 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, FALSE, NULL);
43 static Transliterator* _createEscC(const UnicodeString& ID, Transliterator::Token /*context*/) {
45 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, TRUE,
48 static Transliterator* _createEscXML(const UnicodeString& ID, Transliterator::Token /*context*/) {
50 return new EscapeTransliterator(ID, XMLPRE, SEMI, 16, 1, TRUE, NULL);
52 static Transliterator* _createEscXML10(const UnicodeString& ID, Transliterator::Token /*context*/) {
54 return new EscapeTransliterator(ID, XML10PRE, SEMI, 10, 1, TRUE, NULL)
    [all...]
transreg.h 33 * A TransliteratorAlias object is returned by get() if the given ID
45 * @param aliasID the given id.
52 TransliteratorAlias(const UnicodeString& ID, const UnicodeString& idBlocks,
103 // Here ID is the ID, aliasID is the idBlock, trans is the
108 // Here ID is the ID, aliasID is the rules string.
110 UnicodeString ID;
160 * Given a simple ID (forward direction, no inline filter, not
164 * Return a non-NULL aliasReturn value if the ID points to an alias
    [all...]
unesctrn.cpp 95 static Transliterator* _createUnicode(const UnicodeString& ID, Transliterator::Token /*context*/) {
96 return new UnescapeTransliterator(ID, SPEC_Unicode);
98 static Transliterator* _createJava(const UnicodeString& ID, Transliterator::Token /*context*/) {
99 return new UnescapeTransliterator(ID, SPEC_Java);
101 static Transliterator* _createC(const UnicodeString& ID, Transliterator::Token /*context*/) {
102 return new UnescapeTransliterator(ID, SPEC_C);
104 static Transliterator* _createXML(const UnicodeString& ID, Transliterator::Token /*context*/) {
105 return new UnescapeTransliterator(ID, SPEC_XML);
107 static Transliterator* _createXML10(const UnicodeString& ID, Transliterator::Token /*context*/) {
108 return new UnescapeTransliterator(ID, SPEC_XML10)
    [all...]
unesctrn.h 59 * @param ID the string identifier for this transliterator
62 UnescapeTransliterator(const UnicodeString& ID,
  /external/icu4c/i18n/
esctrn.cpp 35 static Transliterator* _createEscUnicode(const UnicodeString& ID, Transliterator::Token /*context*/) {
37 return new EscapeTransliterator(ID, UNIPRE, EMPTY, 16, 4, TRUE, NULL);
39 static Transliterator* _createEscJava(const UnicodeString& ID, Transliterator::Token /*context*/) {
41 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, FALSE, NULL);
43 static Transliterator* _createEscC(const UnicodeString& ID, Transliterator::Token /*context*/) {
45 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, TRUE,
48 static Transliterator* _createEscXML(const UnicodeString& ID, Transliterator::Token /*context*/) {
50 return new EscapeTransliterator(ID, XMLPRE, SEMI, 16, 1, TRUE, NULL);
52 static Transliterator* _createEscXML10(const UnicodeString& ID, Transliterator::Token /*context*/) {
54 return new EscapeTransliterator(ID, XML10PRE, SEMI, 10, 1, TRUE, NULL)
    [all...]
transreg.h 33 * A TransliteratorAlias object is returned by get() if the given ID
45 * @param aliasID the given id.
52 TransliteratorAlias(const UnicodeString& ID, const UnicodeString& idBlocks,
103 // Here ID is the ID, aliasID is the idBlock, trans is the
108 // Here ID is the ID, aliasID is the rules string.
110 UnicodeString ID;
160 * Given a simple ID (forward direction, no inline filter, not
164 * Return a non-NULL aliasReturn value if the ID points to an alias
    [all...]
unesctrn.cpp 95 static Transliterator* _createUnicode(const UnicodeString& ID, Transliterator::Token /*context*/) {
96 return new UnescapeTransliterator(ID, SPEC_Unicode);
98 static Transliterator* _createJava(const UnicodeString& ID, Transliterator::Token /*context*/) {
99 return new UnescapeTransliterator(ID, SPEC_Java);
101 static Transliterator* _createC(const UnicodeString& ID, Transliterator::Token /*context*/) {
102 return new UnescapeTransliterator(ID, SPEC_C);
104 static Transliterator* _createXML(const UnicodeString& ID, Transliterator::Token /*context*/) {
105 return new UnescapeTransliterator(ID, SPEC_XML);
107 static Transliterator* _createXML10(const UnicodeString& ID, Transliterator::Token /*context*/) {
108 return new UnescapeTransliterator(ID, SPEC_XML10)
    [all...]
  /cts/tools/dasm/src/java_cup/
sym.java 21 static final int ID = 21;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 78 this.lexer.match(TokenTypes.ID);
82 this.lexer.match(TokenTypes.ID);
96 this.lexer.match(TokenTypes.ID);
100 this.lexer.match(TokenTypes.ID);
InReplyToParser.java 78 this.lexer.match(TokenTypes.ID);
82 this.lexer.match(TokenTypes.ID);
100 this.lexer.match(TokenTypes.ID);
104 this.lexer.match(TokenTypes.ID);
SubscriptionStateParser.java 77 lexer.match(TokenTypes.ID);
84 lexer.match(TokenTypes.ID);
90 lexer.match(TokenTypes.ID);
97 lexer.match(TokenTypes.ID);
111 lexer.match(TokenTypes.ID);
125 lexer.match(TokenTypes.ID);
WarningParser.java 87 this.lexer.match(TokenTypes.ID);
100 this.lexer.match(TokenTypes.ID);
105 this.lexer.match(TokenTypes.ID);
129 this.lexer.match(TokenTypes.ID);
142 this.lexer.match(TokenTypes.ID);
149 this.lexer.match(TokenTypes.ID);
ContentTypeParser.java 66 lexer.match(TokenTypes.ID);
73 lexer.match(TokenTypes.ID);
  /external/chromium/third_party/icu/public/i18n/unicode/
translit.h 190 * <em>ID</em>. IDs follow the format <em>source-destination</em>,
211 * transliterator given its ID. Valid IDs may be enumerated using
213 * multiple calls to {@link #createInstance } with the same ID will
219 * acts a template; future calls to {@link #createInstance } with the ID
248 UnicodeString ID;
296 * invoked, it will be passed the ID string that is being
300 * functions that are registered to more than one ID may use the
301 * ID or the context parameter to parameterize the transliterator
303 * @param ID the string identifier for this transliterator
305 * later passed to the factory function when an ID matchin
    [all...]
timezone.h 60 * with a time zone ID. For instance, the time zone ID for the US Pacific
70 * supported ID to get a <code>TimeZone</code>.
72 * supported IDs, then you can create a custom time zone ID with
82 * time zone ID. The <code>TimeZone</code> that is returned
83 * when you specify a custom time zone ID does not include
96 * <li>An ID. This is a text string that uniquely identifies the time zone.</li>
99 * (Only the ID is actually implemented in TimeZone; subclasses of TimeZone may handle
105 * world, each with a unique ID. Each ID consists of a region (usually a continent o
    [all...]
  /external/icu4c/i18n/unicode/
translit.h 190 * <em>ID</em>. IDs follow the format <em>source-destination</em>,
211 * transliterator given its ID. Valid IDs may be enumerated using
213 * multiple calls to {@link #createInstance } with the same ID will
219 * acts a template; future calls to {@link #createInstance } with the ID
248 UnicodeString ID;
296 * invoked, it will be passed the ID string that is being
300 * functions that are registered to more than one ID may use the
301 * ID or the context parameter to parameterize the transliterator
303 * @param ID the string identifier for this transliterator
305 * later passed to the factory function when an ID matchin
    [all...]
timezone.h 60 * with a time zone ID. For instance, the time zone ID for the US Pacific
70 * supported ID to get a <code>TimeZone</code>.
72 * supported IDs, then you can create a custom time zone ID with
82 * time zone ID. The <code>TimeZone</code> that is returned
83 * when you specify a custom time zone ID does not include
96 * <li>An ID. This is a text string that uniquely identifies the time zone.</li>
99 * (Only the ID is actually implemented in TimeZone; subclasses of TimeZone may handle
105 * world, each with a unique ID. Each ID consists of a region (usually a continent o
    [all...]
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
CompletionInfoTest.java 30 private static final int ID = 1;
83 new CompletionInfo(ID, POSITION, TEXT);
84 CompletionInfo info = new CompletionInfo(ID, POSITION, TEXT, LABEL);
99 assertEquals(ID, info.getId());

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011