/external/mdnsresponder/mDNSShared/ |
dnsextd_parser.y | 54 char key[ 256 ]; 73 char key[ 256 ]; 111 %token KEY 198 KEY QUOTEDSTRING OBRACE SECRET QUOTEDSTRING SEMICOLON EBRACE 233 strcpy( zoneSpec->key, g_zoneSpec.key ); 255 strcpy( zoneSpec->key, g_zoneSpec.key ); 328 KEY DOMAINNAME 401 DomainAuthInfo * key; [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
Stopwatches.java | 49 public static final String KEY = "sw";
|
/external/chromium_org/third_party/sqlite/src/test/ |
fuzz_common.tcl | 301 {INTEGER PRIMARY KEY} 303 {PRIMARY KEY}
|
collate5.test | 76 CREATE TABLE tkt3376(a COLLATE nocase PRIMARY KEY); 86 CREATE TABLE tkt3376(a COLLATE nocase PRIMARY KEY);
|
collate4.test | 50 # collate4-3.* constraints (primary key, unique). 53 # collate4-6.* INTEGER PRIMARY KEY indices. 103 a PRIMARY KEY COLLATE NOCASE, 135 UNIQUE(a), PRIMARY KEY(b) 236 PRIMARY KEY(a, b) 460 # UNIQUE and PRIMARY KEY constraints operate correctly with user 465 CREATE TABLE collate4t1(a PRIMARY KEY COLLATE NOCASE); 669 # These tests - collate4.6.* - ensure that implict INTEGER PRIMARY KEY 673 # create another index on an INTEGER PRIMARY KEY column, so we don't have 679 CREATE TABLE collate4t1(a INTEGER PRIMARY KEY); [all...] |
collateA.test | 24 a INTEGER PRIMARY KEY,
|
/packages/apps/Gallery2/src/com/android/photos/data/ |
PhotoProvider.java | 99 /** Long foreign key to Accounts._ID */ 138 /** Long foreign key to Accounts._ID */ 174 /** Foreign key to photo_id. Long value. */ 176 /** Metadata key. String value */ 177 public static final String KEY = "key"; 179 * Metadata value. Type is based on key. 215 + Metadata.KEY + " = ?"; 424 values.getAsString(Metadata.PHOTO_ID), values.getAsString(Metadata.KEY),
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 10 import java.security.Key; 74 static final int KEY = 2; 79 // key types 127 Key key, 156 encodeKey(key, dOut); 210 if (obj instanceof Key) 252 Key k = null; 277 // reencrypt key with correct cipher. 316 // if we get to here key was saved as byte data, whic 716 Key key = decodeKey(dIn); local [all...] |
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 368 map.put(Settings.KEY, Settings.KEY); 405 Bookmarks._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," + 430 History._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," + 449 Searches._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," + 455 Settings.KEY + " TEXT PRIMARY KEY," + 478 Thumbnails._ID + " INTEGER PRIMARY KEY," + 485 values.put(Settings.KEY, Settings.KEY_SYNC_ENABLED); 1646 String key = values.getAsString(Settings.KEY); local [all...] |
/external/clang/include/clang/AST/ |
ExprObjC.h | 198 /// \brief The key for the dictionary element. 199 Expr *Key; 224 /// \brief Key/value pair used to store the key and value of a given element. 228 Expr *Key; 251 /// key/value pairs, which provide the locations of the ellipses (if 309 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None }; 773 /// array[4] = array[3]; dictionary[key] = dictionary[alt_key]; 781 enum { BASE, KEY, END_EXPR }; 792 ObjCSubscriptRefExpr(Expr *base, Expr *key, QualType T [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 1256 String key = values.getAsString(android.provider.Contacts.Settings.KEY); local 1292 final String key = values.getAsString(android.provider.Contacts.Settings.KEY); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
Sdk.java | [all...] |
/external/webrtc/src/system_wrappers/source/ |
sort.cc | 60 (static_cast<const SortKey*>(SORT_KEY_X)->key)); \ 62 (static_cast<const SortKey*>(SORT_KEY_Y)->key)); \ 67 #define KEY_QSORT(SORT_KEY, KEY, NUM_OF_ELEMENTS, KEY_TYPE, COMPARE_FUNC) \ 70 KEY_TYPE* keyT = (KEY_TYPE*)(key); \ 73 ptrSortKey[i].key = &keyT[i]; \ 87 void* key; member in struct:webrtc::SortKey 94 KeyType key; 208 return sortKeyX.key < sortKeyY.key; 218 return sortKey.key >> offset [all...] |
/external/grub/stage2/ |
fsys_reiserfs.c | 124 * directories use this key as well as old files 161 struct key struct 176 #define KEY_SIZE (sizeof (struct key)) 185 struct key blk_right_delim_key; /* Right delimiting key for this block (supported for leaf level nodes 193 struct key ih_key; /* Everything in the tree is found by searching for it based on its key.*/ 199 stat data item. Note that the key, not this field, is used to determine 248 __u32 deh_offset; /* third component of the directory entry key */ 350 #define KEY(cache) ((struct key *) ((int) cache + BLKH_SIZE) 836 struct key *key; local [all...] |
/frameworks/base/core/java/android/provider/ |
Contacts.java | 121 * The key of this setting. 126 public static final String KEY = "key"; 168 public static final String DEFAULT_SORT_ORDER = "key ASC"; 187 public static String getSetting(ContentResolver cr, String account, String key) { 196 ? "_sync_account is null AND key=?" 197 : "_sync_account=? AND key=?"; 198 // : "_sync_account=? AND _sync_account_type=? AND key=?"; 200 ? new String[]{key} 201 : new String[]{account, key}; [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3.c | 39 ** KEY: 566 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY"); 581 "CREATE TABLE %Q.'%q_segments'(blockid INTEGER PRIMARY KEY, block BLOB);", 592 "PRIMARY KEY(level, idx)" 598 "CREATE TABLE %Q.'%q_docsize'(docid INTEGER PRIMARY KEY, size BLOB);", 604 "CREATE TABLE %Q.'%q_stat'(id INTEGER PRIMARY KEY, value BLOB);", 647 ** <key> = <value> 650 ** term may be quoted, but the <key> may not. [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 95 ** An instance of this structure holds the ATTACH key and the key type. 97 struct AttachKey { int type; Token key; }; 172 // datatype, and other keywords such as PRIMARY KEY, UNIQUE, REFERENCES, 200 QUERY KEY OF OFFSET PRAGMA RAISE RELEASE REPLACE RESTRICT ROW ROLLBACK 290 // In addition to the type name, we also care about the primary key and 295 ccons ::= PRIMARY KEY sortorder(Z) onconf(R) autoinc(I). 337 // key and UNIQUE. Both create indices. 345 tcons ::= PRIMARY KEY LP idxlist(X) autoinc(I) RP onconf(R). 351 tcons ::= FOREIGN KEY LP idxlist(FA) R [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | [all...] |
/external/oprofile/utils/ |
opcontrol | [all...] |
/external/qemu/android/ |
hw-events.h | 21 EV_TYPE(KEY,0x01) \ 42 * The Android "Menu" key is KEY_SOFT1, *not* KEY_MENU
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraSettings.java | 40 public static final String KEY_RECORD_LOCATION = RecordLocationPreference.KEY; 116 PreferenceGroup group, String key) { 117 removePreference(group, key); 235 private static boolean removePreference(PreferenceGroup group, String key) { 239 if (removePreference((PreferenceGroup) child, key)) { 244 ((ListPreference) child).getKey().equals(key)) {
|
/external/chromium_org/chrome/browser/resources/file_manager/js/ |
util.js | 62 for (var key in FileError) { 63 if (key.search(/_ERR$/) != -1 && FileError[key] == code) 64 return key; 75 for (var key in FileError) { 76 var match = /(.*)_ERR$/.exec(key); 77 if (match && FileError[key] == code) { 837 * @param {string} key Preference name. 840 getPreference: function(key, callback) { 841 chrome.storage.local.get(key, function(items) [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-reference.js | 400 /* HANDLE KEY EVENTS 407 var control = mac ? e.metaKey && !e.ctrlKey : e.ctrlKey; // get ctrl key
|
/external/chromium_org/native_client_sdk/src/tools/ |
common.mk | 428 # Each element should be specified as KEY=VALUE, with whitespace separating 429 # key-value pairs. e.g.
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-reference.js | 381 /* HANDLE KEY EVENTS 388 var control = mac ? e.metaKey && !e.ctrlKey : e.ctrlKey; // get ctrl key
|