/external/chromium_org/third_party/sqlite/src/test/ |
collateA.test | 24 a INTEGER PRIMARY KEY,
|
/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/chromium_org/media/cast/sender/ |
audio_encoder.cc | 128 audio_frame->dependency = EncodedFrame::KEY;
|
vp8_encoder.cc | 105 // set the maximum target size of any key-frame. 203 encoded_image->dependency = EncodedFrame::KEY; 265 // We have nothing to reference, it's kind of like a key frame, 348 // Update at most one buffer, except for key-frames. 407 // Calculate the max size of the key frame relative to a normal delta frame.
|
external_video_encoder.cc | 224 // Do not send video until we have encountered the first key frame. 226 // with the first key frame. 232 encoded_frame->dependency = key_frame ? EncodedFrame::KEY : 475 // Inform the encoder to encode the next frame as a key frame.
|
/external/clang/include/clang/AST/ |
ExprObjC.h | 199 /// \brief The key for the dictionary element. 200 Expr *Key; 225 /// \brief Key/value pair used to store the key and value of a given element. 229 Expr *Key; 252 /// key/value pairs, which provide the locations of the ellipses (if 310 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None }; 774 /// array[4] = array[3]; dictionary[key] = dictionary[alt_key]; 782 enum { BASE, KEY, END_EXPR }; 793 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/chromium_org/third_party/webrtc/system_wrappers/source/ |
sort.cc | 61 #define KEY_QSORT(SORT_KEY, KEY, NUM_OF_ELEMENTS, KEY_TYPE, COMPARE_FUNC) \ 63 KEY_TYPE* key_type = (KEY_TYPE*)(key); \ 206 inline int32_t SetupKeySort(void* key, 214 KeyType* key_type = static_cast<KeyType*>(key); 246 inline int32_t IntegerKeySort(void* data, void* key, 250 if (SetupKeySort<KeyType>(key, ptr_sort_key, num_of_elements) != 0) { 266 inline int32_t StdKeySort(void* data, void* key, 270 if (SetupKeySort<KeyType>(key, ptr_sort_key, num_of_elements) != 0) { 366 int32_t KeySort(void* data, void* key, uint32_t num_of_elements, 372 if (key == NULL) [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/chromium_org/media/test/data/eme_player_js/ |
utils.js | 17 var key = keys[i]; 18 var option = new Option(key, keyValueOptions[key]); 19 option.title = keyValueOptions[key]; 20 if (disabledOptions.indexOf(key) >= 0) 45 Utils.createJWKData = function(keyId, key) { 57 // Creates a JWK from raw key ID and key. 58 function createJWK(keyId, key) { 62 jwk += base64Encode(key); [all...] |
/frameworks/base/core/java/android/provider/ |
Contacts.java | 120 * The key of this setting. 125 public static final String KEY = "key"; 167 public static final String DEFAULT_SORT_ORDER = "key ASC"; 186 public static String getSetting(ContentResolver cr, String account, String key) { 195 ? "_sync_account is null AND key=?" 196 : "_sync_account=? AND key=?"; 197 // : "_sync_account=? AND _sync_account_type=? AND key=?"; 199 ? new String[]{key} 200 : new String[]{account, key}; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
windns.h | 465 BYTE Key[1]; 671 DNS_KEY_DATA KEY,Key; 704 DNS_KEY_DATA KEY,Key;
|
/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/ui/file_manager/file_manager/common/js/ |
util.js | 594 * AppCache is a persistent timestamped key-value storage backed by 606 * Local storage key. 608 util.AppCache.KEY = 'AppCache'; 621 * @param {string} key Key. 624 util.AppCache.getValue = function(key, callback) { 626 var entry = map[key]; 634 * @param {string} key Key. 635 * @param {string} value Value. Remove the key if value is null [all...] |
/external/deqp/framework/qphelper/ |
qpTestLog.c | 143 int key; member in struct:qpKeyStringMap_s 182 /* Key tag to string mapping. */ 261 #define QP_LOOKUP_STRING(KEYMAP, KEY) qpLookupString(KEYMAP, DE_LENGTH_OF_ARRAY(KEYMAP), (int)(KEY)) 263 static const char* qpLookupString (const qpKeyStringMap* keyMap, int keyMapSize, int key) 266 DE_ASSERT(deInBounds32(key, 0, keyMapSize)); 267 DE_ASSERT(keyMap[key].key == key); 269 return keyMap[key].string [all...] |
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-2.0/1.5/ |
gmaven-runtime-2.0-1.5.jar | |
/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 | 442 # Each element should be specified as KEY=VALUE, with whitespace separating 443 # key-value pairs. e.g.
|
/external/chromium_org/third_party/sqlite/src/tool/ |
spaceanal.tcl | 492 The number of indices used to implement PRIMARY KEY or UNIQUE constraints 513 The total number of B-Tree key/value pairs stored under this category. 524 part of table entries and the key part of index entries. The percentage 562 This is the number of pages in a table B-tree that hold only key (rowid) 567 This is the number of B-tree pages that hold both key and data.
|