/packages/apps/Email/src/com/android/email/activity/setup/ |
DebugFragment.java | 62 mEnableDebugLoggingView = (CheckBox) UiUtilities.getView(view, R.id.debug_logging); 65 mEnableVerboseLoggingView = (CheckBox) UiUtilities.getView(view, R.id.verbose_logging); 67 (CheckBox) UiUtilities.getView(view, R.id.file_logging); 82 UiUtilities.getView(view, R.id.clear_webview_cache).setOnClickListener(this); 85 UiUtilities.getView(view, R.id.debug_disable_graphics_acceleration); 91 UiUtilities.getView(view, R.id.debug_enable_strict_mode); 101 case R.id.debug_logging: 106 case R.id.verbose_logging: 110 case R.id.file_logging: 114 case R.id.debug_disable_graphics_acceleration [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/ |
ExchangeServiceTest.java | 44 final String id = ExchangeService.getDeviceId(context); local 47 assertTrue(id.matches("^[a-zA-Z0-9]+$")); 56 assertEquals(id, cachedId);
|
/packages/apps/InCallUI/src/com/android/incallui/ |
ConferenceManagerFragment.java | 62 mConferenceTime = (Chronometer) parent.findViewById(R.id.manageConferencePanelHeader); 68 final int[] viewGroupIdList = { R.id.caller0, R.id.caller1, R.id.caller2, 69 R.id.caller3, R.id.caller4 }; 75 mButtonManageConferenceDone = parent.findViewById(R.id.manage_done); 126 R.id.conferenceCallerName); 128 R.id.conferenceCallerNumber); 130 R.id.conferenceCallerNumberType) [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
OpenHelper.java | 40 * Build and start an {@link Intent} to view the download with given ID, 43 public static boolean startViewIntent(Context context, long id, int intentFlags) { 44 final Intent intent = OpenHelper.buildViewIntent(context, id); 46 Log.w(TAG, "No intent built for " + id); 61 * Build an {@link Intent} to view the download with given ID, handling 64 private static Intent buildViewIntent(Context context, long id) { 69 final Cursor cursor = downManager.query(new DownloadManager.Query().setFilterById(id)); 89 intent.putExtra(Intent.EXTRA_REFERRER, getRefererUri(context, id)); 90 intent.putExtra(Intent.EXTRA_ORIGINATING_UID, getOriginatingUid(context, id)); 95 ContentUris.withAppendedId(ALL_DOWNLOADS_CONTENT_URI, id), mimeType) [all...] |
/external/chromium_org/apps/ |
saved_files_service.cc | 61 DCHECK(!file_entries->GetDictionaryWithoutPathExpansion(file_entry.id, NULL)); 68 file_entries->SetWithoutPathExpansion(file_entry.id, file_entry_dict); 80 file_entries->GetDictionaryWithoutPathExpansion(file_entry.id, 143 SavedFileEntry::SavedFileEntry(const std::string& id, 147 : id(id), 157 void RegisterFileEntry(const std::string& id, 160 void EnqueueFileEntry(const std::string& id); 161 bool IsRegistered(const std::string& id) const; 162 const SavedFileEntry* GetFileEntry(const std::string& id) const [all...] |
saved_files_service.h | 38 SavedFileEntry(const std::string& id, 43 // The opaque id of this file entry. 44 std::string id; member in struct:apps::SavedFileEntry 71 const std::string& id, 75 // If the file with |id| is not in the queue of files to be retained 78 // already present, moves it to the back of the queue. The |id| must have been 80 void EnqueueFileEntry(const std::string& extension_id, const std::string& id); 82 // Returns whether the file entry with the given |id| has been registered. 83 bool IsRegistered(const std::string& extension_id, const std::string& id); 85 // Gets a borrowed pointer to the file entry with the specified |id|. Return [all...] |
/external/tinyalsa/ |
mixer.c | 135 ei->id.numid = eid[n].numid; 147 tmp.id.numid = ei->id.numid; 185 struct mixer_ctl *mixer_get_ctl(struct mixer *mixer, unsigned int id) 187 if (mixer && (id < mixer->count)) 188 return mixer->ctl + id; 201 if (!strcmp(name, (char*) mixer->elem_info[n].id.name)) 217 return (const char *)ctl->info->id.name; 284 int mixer_ctl_get_percent(struct mixer_ctl *ctl, unsigned int id) 289 return int_to_percent(ctl->info, mixer_ctl_get_value(ctl, id)); [all...] |
/frameworks/base/core/java/android/app/ |
LocalActivityManager.java | 49 id = _id; 53 final String id; // Unique name of this record. field in class:LocalActivityManager.LocalActivityRecord 76 /** id -> record of all known activities. */ 122 instanceObj = lastNonConfigurationInstances.get(r.id); 131 if (localLOGV) Log.v(TAG, r.id + ": starting " + r.intent); 136 mParent, r.id, r.intent, r.activityInfo, r, r.instanceState, instance); 145 if (localLOGV) Log.v(TAG, r.id + ": resuming"); 162 if (localLOGV) Log.v(TAG, r.id + ": restarting"); 167 if (localLOGV) Log.v(TAG, r.id + ": restarting and resuming"); 177 if (localLOGV) Log.v(TAG, r.id + ": resuming") [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
EditorChanSat.java | 45 public static final int ID = R.id.editorChanSat; 78 super(ID, R.layout.filtershow_default_editor, R.id.basicEditor); 99 mButton = (SwapButton) accessoryViewList.findViewById(R.id.applyEffect); 190 mMainBar = (SeekBar) controls.findViewById(R.id.mainSeekbar); 193 mMainValue = (TextView) controls.findViewById(R.id.mainValue); 194 mRedBar = (SeekBar) controls.findViewById(R.id.redSeekBar); 197 mRedValue = (TextView) controls.findViewById(R.id.redValue); 198 mYellowBar = (SeekBar) controls.findViewById(R.id.yellowSeekBar) [all...] |
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_preferences_unittest.cc | 70 typedef std::map<std::string /*device id*/, MediaGalleryPrefIdSet> 176 void AddGalleryExpectation(MediaGalleryPrefId id, string16 display_name, 180 expected_galleries_[id].pref_id = id; 181 expected_galleries_[id].display_name = display_name; 182 expected_galleries_[id].device_id = device_id; 183 expected_galleries_[id].path = relative_path.NormalizePathSeparators(); 184 expected_galleries_[id].type = type; 187 expected_galleries_for_all.insert(id); 189 expected_device_map[device_id].insert(id); 264 MediaGalleryPrefId auto_id, user_added_id, id; local 339 MediaGalleryPrefId id; local 376 MediaGalleryPrefId id, metadata_id; local 417 MediaGalleryPrefId auto_id, id; local 468 MediaGalleryPrefId id = local 490 MediaGalleryPrefId auto_id, user_added_id, to_blacklist_id, id; local 608 MediaGalleryPrefId auto_id, id; local 705 MediaGalleryPrefId id = AddGalleryWithNameV1( local 767 MediaGalleryPrefId id; local [all...] |
/external/chromium_org/sync/notifier/ |
sync_invalidation_listener_unittest.cc | 144 int GetInvalidationCount(const ObjectId& id) const { 145 ObjectIdCountMap::const_iterator it = invalidation_counts_.find(id); 149 int64 GetVersion(const ObjectId& id) const { 150 ObjectIdInvalidationMap::const_iterator it = invalidations_.find(id); 154 std::string GetPayload(const ObjectId& id) const { 155 ObjectIdInvalidationMap::const_iterator it = invalidations_.find(id); 163 void Acknowledge(const ObjectId& id) { 164 listener_->Acknowledge(id, invalidations_[id].ack_handle); 299 int GetInvalidationCount(const ObjectId& id) const 444 const ObjectId& id = kBookmarksId_; local 459 const ObjectId& id = kBookmarksId_; local 473 const ObjectId& id = kPreferencesId_; local 489 const ObjectId& id = kUnregisteredId; local 508 const ObjectId& id = kPreferencesId_; local 531 const ObjectId& id = kBookmarksId_; local [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
NdefPushSenderActivity.java | 51 TextView text = (TextView) findViewById(R.id.text); 61 byte[] id = new byte[] {1, 3, 3, 7}; 64 new NdefRecord(NdefRecord.TNF_MIME_MEDIA, mimeBytes, id, payload) 89 public Dialog onCreateDialog(int id, Bundle args) { 90 switch (id) { 96 return super.onCreateDialog(id, args);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentContextMenu.java | 45 getFragmentManager().beginTransaction().add(android.R.id.content, content).commit(); 54 registerForContextMenu(root.findViewById(R.id.long_press)); 61 menu.add(Menu.NONE, R.id.a_item, Menu.NONE, "Menu A"); 62 menu.add(Menu.NONE, R.id.b_item, Menu.NONE, "Menu B"); 68 case R.id.a_item: 71 case R.id.b_item:
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ChronometerDemo.java | 42 mChronometer = (Chronometer) findViewById(R.id.chronometer); 45 button = (Button) findViewById(R.id.start); 48 button = (Button) findViewById(R.id.stop); 51 button = (Button) findViewById(R.id.reset); 54 button = (Button) findViewById(R.id.set_format); 57 button = (Button) findViewById(R.id.clear_format);
|
Spinner1.java | 44 Spinner s1 = (Spinner) findViewById(R.id.spinner1); 52 AdapterView<?> parent, View view, int position, long id) { 53 showToast("Spinner1: position=" + position + " id=" + id); 61 Spinner s2 = (Spinner) findViewById(R.id.spinner2); 69 AdapterView<?> parent, View view, int position, long id) { 70 showToast("Spinner2: position=" + position + " id=" + id);
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentContextMenuSupport.java | 45 android.R.id.content, content).commit(); 54 registerForContextMenu(root.findViewById(R.id.long_press)); 61 menu.add(Menu.NONE, R.id.a_item, Menu.NONE, "Menu A"); 62 menu.add(Menu.NONE, R.id.b_item, Menu.NONE, "Menu B"); 68 case R.id.a_item: 71 case R.id.b_item:
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
DemoKitPhone.java | 40 mInputLabel = (TextView) findViewById(R.id.inputLabel); 41 mOutputLabel = (TextView) findViewById(R.id.outputLabel); 42 mInputContainer = (LinearLayout) findViewById(R.id.inputContainer); 43 mOutputContainer = (LinearLayout) findViewById(R.id.outputContainer); 67 case R.id.inputLabel: 71 case R.id.outputLabel:
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRCommonTree.h | 46 - (id) init; 47 - (id) initWithTreeNode:(ANTLRCommonTree *)aNode; 48 - (id) initWithToken:(ANTLRCommonToken *)aToken; 49 - (id) initWithTokenType:(NSInteger)aTokenType; 50 - (id) initWithTokenType:(NSInteger)aTokenType Text:(NSString *)theText; 52 - (id<ANTLRBaseTree>) copyWithZone:(NSZone *)aZone; 82 @property (retain, getter=getParent, setter=setParent:) id<ANTLRBaseTree> parentparent;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
LangParser.h | 33 #define ID 6 116 id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserMemVars */ 127 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserproperties */ 131 + (id) newLangParser:(id<ANTLRTokenStream>)aStream; 139 - (id<ANTLRTreeAdaptor>) getTreeAdaptor; 140 - (void) setTreeAdaptor:(id<ANTLRTreeAdaptor>)theTreeAdaptor; /* AST parsermethodsDecl */
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
SubjectKeyIdentifier.java | 117 byte[] id = new byte[8]; 119 System.arraycopy(dig, dig.length - 8, id, 0, id.length); 121 id[0] &= 0x0f; 122 id[0] |= 0x40; 124 return new SubjectKeyIdentifier(id);
|
/external/chromium/chrome/browser/extensions/ |
external_policy_extension_loader.cc | 20 // Check an extension ID and an URL to be syntactically correct. 21 bool CheckExtension(const std::string& id, const std::string& update_url) { 28 if (!Extension::IdIsValid(id)) { 29 LOG(WARNING) << "Policy specifies invalid ID for external " 30 << "extension: " << id; 63 std::string id = extension_desc.substr(0, pos); local 65 if (CheckExtension(id, update_url)) { 66 result->SetString(id + ".external_update_url", update_url);
|
external_registry_extension_loader_win.cc | 67 std::string id = WideToASCII(iterator.Name()); local 68 StringToLowerASCII(&id); 70 if (!Extension::IdIsValid(id)) { 71 LOG(ERROR) << "Invalid id value " << id 88 id + "." + ExternalExtensionProviderImpl::kExternalVersion, 91 id + "." + ExternalExtensionProviderImpl::kExternalCrx,
|
/external/chromium/chrome/browser/ui/cocoa/translate/ |
translate_infobar_base.h | 34 bool VerifyControlOrderAndSpacing(id before, id after); 41 void AddMenuItem(NSMenu *menu, id target, SEL selector, NSString* title, 83 - (IBAction)showOriginal:(id)sender; 127 - (void)languageMenuChanged:(id)item; 128 - (void)optionsMenuChanged:(id)item;
|
/external/chromium/chrome/common/extensions/ |
extension_set.cc | 25 extensions_[extension->id()] = extension; 28 void ExtensionSet::Remove(const std::string& id) { 29 extensions_.erase(id); 40 return extension->id(); 61 const Extension* ExtensionSet::GetByID(const std::string& id) const { 62 ExtensionMap::const_iterator i = extensions_.find(id);
|
/external/chromium_org/chrome/browser/history/android/ |
android_history_types.cc | 80 std::string HistoryAndBookmarkRow::GetAndroidName(ColumnID id) { 81 return kAndroidBookmarkColumn[id]; 104 std::string SearchRow::GetAndroidName(ColumnID id) { 105 return kAndroidSearchColumn[id]; 121 : id(0), 129 : id(0) {
|