Home
last modified time | relevance | path

Searched refs:getName (Results 1 – 25 of 74) sorted by relevance

123

/development/tools/apkcheck/src/com/android/apkcheck/
DApkCheck.java255 PackageInfo pubPkgInfo = pubList.getPackage(apkPkgInfo.getName()); in check()
276 apkPkgInfo.getName() + "." + apkClassInfo.getName()); in check()
279 apkPkgInfo.getName() + "." + apkClassInfo.getName()); in check()
296 ClassInfo pubClassInfo = pubPkgInfo.getClass(classInfo.getName()); in checkClass()
301 pubPkgInfo.getName() + "." + classInfo.getName()); in checkClass()
304 pubPkgInfo.getName() + "." + classInfo.getName()); in checkClass()
307 pubPkgInfo.getName() + "." + classInfo.getName()); in checkClass()
323 apkWarning("Enum field ref: " + pubPkgInfo.getName() + in checkClass()
324 "." + classInfo.getName() + "." + nameAndType); in checkClass()
326 apkError("Illegal field ref: " + pubPkgInfo.getName() + in checkClass()
[all …]
DApiDescrHandler.java108 String className = mCurrentClass.getName(); in startElement()
115 mCurrentMethod.addParameter(mCurrentPackage.getName() + in startElement()
DPackageInfo.java34 public String getName() { in getName() method in PackageInfo
/development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
DLogBuildNumber.java52 new UiSelector().className(android.widget.TextView.class.getName());
62 new UiSelector().className(android.widget.ListView.class.getName());
64 new UiSelector().className(android.widget.LinearLayout.class.getName());
84 new UiSelector().className(android.widget.TabWidget.class.getName()) in testDemo()
146 new UiSelector().className(android.widget.TextView.class.getName()).instance(1)); in getAboutItem()
DSetTwoMinuteAlarm.java41 new UiSelector().className(android.widget.TextView.class.getName());
62 new UiSelector().className(android.widget.TabWidget.class.getName()) in testDemo()
80 .className(TextView.class.getName()).text("Alarm")); in testDemo()
106 android.widget.NumberPicker.class.getName()).instance(1); in setAlarm()
108 new UiSelector().className(android.widget.Button.class.getName()).instance(1)); in setAlarm()
DLaunchSettings.java87 new UiSelector().className(android.widget.TextView.class.getName()), "Settings"); in testDemo()
/development/tools/idegen/src/com/android/idegen/
DModule.java50 private static final Logger logger = Logger.getLogger(Module.class.getName());
99 File.separatorChar + getName() + "_intermediates" + File.separator + "src"; in Module()
144 public String getName() { in getName() method in Module
145 return moduleRoot.getName(); in getName()
261 .append(module.getName()).append("\" />\n"); in buildImlFile()
265 imlFile = new File(moduleDir, getName() + ".iml"); in buildImlFile()
365 return Objects.hashCode(getName()); in hashCode()
377 return Objects.equal(getName(), other.getName()); in equals()
383 .add("name", getName()) in toString()
DIntellijProject.java38 private static final Logger logger = Logger.getLogger(IntellijProject.class.getName());
101 createNameFile(ideaDir, projectPath.getName()); in createProjectFiles()
162 File destDir = new File(toDir, file.getName()); in copyTemplates()
168 File toFile = new File(toDir, file.getName()); in copyTemplates()
DDirectorySearch.java39 private static final Logger logger = Logger.getLogger(DirectorySearch.class.getName());
153 if (SOURCE_DIRS.contains(child.getName())) { in findSourceDirs()
181 Matcher matcher = EXCLUDE_PATTERN.matcher(child.getName()); in findExcludeDirs()
/development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
DSpellCheckerSettingsActivity.java35 modIntent.putExtra(EXTRA_SHOW_FRAGMENT, SpellCheckerSettingsFragment.class.getName()); in getIntent()
42 return SpellCheckerSettingsFragment.class.getName().equals(fragmentName); in isValidFragment()
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DRemoteControlClientCompat.java58 Field realField = sRemoteControlClientClass.getField(field.getName());
62 Log.w(TAG, "Could not get real field: " + field.getName());
64 Log.w(TAG, "Error trying to pull field value for: " + field.getName()
67 Log.w(TAG, "Error trying to pull field value for: " + field.getName()
122 Log.e(TAG, "Error creating new instance of " + sRemoteControlClientClass.getName(), e); in RemoteControlClientCompat()
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
DImePreferences.java31 modIntent.putExtra(EXTRA_SHOW_FRAGMENT, Settings.class.getName()); in getIntent()
46 return Settings.class.getName().equals(fragmentName); in isValidFragment()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DRemoteService.java104 if (IRemoteService.class.getName().equals(intent.getAction())) { in onBind()
107 if (ISecondary.class.getName().equals(intent.getAction())) { in onBind()
364 bindService(new Intent(IRemoteService.class.getName()),
366 bindService(new Intent(ISecondary.class.getName()),
551 if (bindService(new Intent(IRemoteService.class.getName()),
565 if (bindService(new Intent(IRemoteService.class.getName()),
579 if (bindService(new Intent(IRemoteService.class.getName()),
593 if (bindService(new Intent(IRemoteService.class.getName()),
607 if (bindService(new Intent(IRemoteService.class.getName()),
621 if (bindService(new Intent(IRemoteService.class.getName()),
[all …]
/development/samples/LunarLander/src/com/example/android/lunarlander/
DLunarLander.java139 Log.w(this.getClass().getName(), "SIS is null"); in onCreate()
143 Log.w(this.getClass().getName(), "SIS is nonnull"); in onCreate()
167 Log.w(this.getClass().getName(), "SIS called"); in onSaveInstanceState()
/development/samples/training/network-usage/src/com/example/android/networkusage/
DStackOverflowXmlParser.java57 String name = parser.getName(); in readFeed()
94 String name = parser.getName(); in readEntry()
120 String tag = parser.getName(); in readLink()
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DDirectoryCategory.java28 public String getName() { in getName() method in DirectoryCategory
DDirectoryEntry.java33 public String getName() { in getName() method in DirectoryEntry
/development/samples/training/threadsample/src/com/example/android/threadsample/
DRSSPullParser.java127 String eventName = localXmlPullParser.getName(); in parseXml()
186 && (localXmlPullParser.getName().equalsIgnoreCase(ITEM)) in parseXml()
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
DFeedParser.java95 String name = parser.getName(); in readFeed()
138 String name = parser.getName(); in readEntry()
214 String tag = parser.getName(); in readAlternateLink()
/development/tools/rmtypedefs/test/com/android/tools/rmtypedefs/
DRmTypeDefsTest.java220 String fileName = file.getName(); in list()
235 return o1.getName().compareTo(o2.getName()); in list()
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
DItem.java66 public String getName() { in getName() method in Item
/development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/
DSamplePresentation.java61 final String name = getDisplay().getName(); in onCreate()
/development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/
DAuthenticatorActivityTest.java69 mInstrumentation.addMonitor(AuthenticatorActivity.class.getName(), null, false); in testLoginOffered()
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
DDeviceListActivity.java121 pairedDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress()); in onCreate()
202 mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DDeviceListActivity.java112 mPairedDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress()); in onCreate()
188 mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());

123