/frameworks/base/core/tests/coretests/src/android/app/activity/ |
ActivityManagerTest.java | 119 ActivityManager.ProcessErrorStateInfo info = iter.next(); local 120 assertNotNull(info); 122 assertTrue((info.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) || 123 (info.condition == ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING)); 127 assertNotNull(info.processName); 128 // reasonableness test for info.pid ? 129 assertNotNull(info.longMsg); 130 assertNotNull(info.shortMsg);
|
/frameworks/base/drm/java/android/drm/ |
DrmSupportInfo.java | 146 DrmSupportInfo info = (DrmSupportInfo) object; local 147 return mFileSuffixList.equals(info.mFileSuffixList) && 148 mMimeTypeList.equals(info.mMimeTypeList) && 149 mDescription.equals(info.mDescription);
|
/frameworks/base/services/java/com/android/server/wm/ |
StackTapPointerEventListener.java | 43 DisplayInfo info = displayContent.getDisplayInfo(); local 44 mMotionSlop = (int)(info.logicalDensityDpi * TAP_MOTION_SLOP_INCHES);
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfo.java | 46 Set<ClassPathPackageInfo> info = Sets.newHashSet(); local 48 info.add(source.getPackageInfo(name)); 50 return info; 61 for (ClassPathPackageInfo info : getSubpackages()) { 62 info.addTopLevelClassesTo(set);
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Log.java | 32 info(format, args); method 44 public void info(String format, Object... args) { method in class:Log
|
/frameworks/compile/mclinker/lib/LD/ |
NamePool.cpp | 26 FreeInfoSet::iterator info, iEnd = m_FreeInfoSet.end(); local 27 for (info = m_FreeInfoSet.begin(); info != iEnd; ++info) { 28 ResolveInfo::Destroy(*info); 91 pResult.info = new_symbol; 106 pResult.info = old_symbol; 152 ResolveInfo* info = findInfo(pName); local 153 if (NULL == info) 155 return info->outSymbol() 161 const ResolveInfo* info = findInfo(pName); local [all...] |
/hardware/libhardware/tests/camera2/ |
CameraModuleTests.cpp | 113 struct camera_info info; local 114 ASSERT_EQ(OK, mModule->get_camera_info(i, &info)); 125 struct camera_info info; local 126 EXPECT_NE(OK, mModule->get_camera_info(idx[i], &info)); 127 EXPECT_EQ(-ENODEV, mModule->get_camera_info(idx[i], &info))
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldDriverPropertyInfoTest.java | 53 DriverPropertyInfo[] info = d.getPropertyInfo(connectionURL, local 56 String name = info[0].name; 59 String[] choices = info[0].choices; 61 boolean required = info[0].required; 63 String description = info[0].description;
|
/packages/apps/Browser/src/com/android/browser/ |
NetworkStateHandler.java | 49 NetworkInfo info = cm.getActiveNetworkInfo(); local 50 if (info != null) { 51 mIsNetworkUp = info.isAvailable(); 66 NetworkInfo info = intent.getParcelableExtra( 68 String typeName = info.getTypeName(); 69 String subtypeName = info.getSubtypeName();
|
/packages/apps/Browser/src/com/android/browser/search/ |
SearchEngines.java | 42 SearchEngineInfo info = new SearchEngineInfo(context, name); local 43 searchEngineInfos.add(info);
|
/packages/apps/Email/src/com/android/email/activity/ |
EventViewer.java | 42 PackedString info = new PackedString(msg.mMeetingInfo); local 43 String uid = info.get(MeetingInfo.MEETING_UID); 66 Utility.parseEmailDateTimeToMillis(info.get(MeetingInfo.MEETING_DTSTART));
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PendingAddItemInfo.java | 57 AppWidgetProviderInfo info; field in class:PendingAddWidgetInfo 68 this.info = i; 90 info = copy.info;
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
PendingAddItemInfo.java | 57 AppWidgetProviderInfo info; field in class:PendingAddWidgetInfo 68 this.info = i; 90 info = copy.info;
|
LiveWallpaperListAdapter.java | 116 public LiveWallpaperTile(Drawable thumbnail, WallpaperInfo info, Intent intent) { 118 mInfo = info; 162 WallpaperInfo info = null; local 164 info = new WallpaperInfo(mContext, resolveInfo); 174 Drawable thumb = info.loadThumbnail(packageManager); 176 launchIntent.setClassName(info.getPackageName(), info.getServiceName()); 177 LiveWallpaperTile wallpaper = new LiveWallpaperTile(thumb, info, launchIntent); 188 for (LiveWallpaperTile info : infos) { 189 if (info == null) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
CreateShortcut.java | 66 ResolveInfo info = activities.get(i); local 67 if (info.activityInfo.name.endsWith(TetherSettingsActivity.class.getSimpleName())) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 7 INFO = 2 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 39 def info(self, msg, *args): member in class:Log 40 self._log(INFO, msg, args) 54 info = _global_log.info variable 69 set_threshold(INFO)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 7 INFO = 2 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 39 def info(self, msg, *args): member in class:Log 40 self._log(INFO, msg, args) 54 info = _global_log.info variable 69 set_threshold(INFO)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AdtConsoleSdkLog.java | 41 public void info(@NonNull String msgFormat, Object... args) { method in class:AdtConsoleSdkLog 52 info(msgFormat, args); method
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeViewRefactoringTest.java | 48 TestContext info = setupTestContext(file, basename); local 49 TestLayoutEditorDelegate layoutEditor = info.mLayoutEditorDelegate; 50 List<Element> selectedElements = getElements(info.mElement, ids);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttributeInfoTest.java | 55 AttributeInfo info = new AttributeInfo("test", EnumSet.noneOf(Format.class)); local 56 assertTrue(info.isValid("", null, null)); 57 assertTrue(info.isValid("a b c", null, null)); 58 assertTrue(info.isValid("@android foo bar", null, null)); 62 AttributeInfo info = new AttributeInfo("test", Format.STRING_SET); local 63 assertTrue(info.isValid("", null, null)); 64 assertTrue(info.isValid("a b c", null, null)); 65 assertTrue(info.isValid("@android foo bar", null, null)); 69 AttributeInfo info = new AttributeInfo("test", Format.BOOLEAN_SET); local 70 assertTrue(info.isValid("true", null, null)) 80 AttributeInfo info = new AttributeInfo("test", Format.INTEGER_SET); local 95 AttributeInfo info = new AttributeInfo("test", Format.FLOAT_SET); local 115 AttributeInfo info = new AttributeInfo("test", Format.DIMENSION_SET); local 133 AttributeInfo info = new AttributeInfo("test", Format.COLOR_SET); local 146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION)); local 158 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local 174 AttributeInfo info = new AttributeInfo("test", Format.ENUM_SET); local 184 AttributeInfo info = new AttributeInfo("test", Format.FLAG_SET); local 196 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.INTEGER, local 204 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.COLOR, local 212 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.STRING, local 219 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.ENUM, local 233 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local 351 AttributeInfo info = map.get(name); local [all...] |
/system/core/libsync/ |
sync_test.c | 37 struct sync_fence_info_data *info; local 51 info = sync_fence_info(sync_data->fd[i]); 52 if (info) { 54 printf(" fence %s %d\n", info->name, info->status); 56 while ((pt_info = sync_pt_info(info, pt_info))) { 67 sync_fence_info_free(info);
|
/development/apps/Development/src/com/android/development/ |
PackageBrowser.java | 47 PackageInfo info; field in class:PackageBrowser.MyPackageInfo 62 MyPackageInfo info = new MyPackageInfo(); local 63 info.info = pkgs.get(i); 64 info.label = info.info.applicationInfo.loadLabel(getPackageManager()).toString(); 65 mPackageInfoList.add(info); 74 public void bindView(View view, MyPackageInfo info) { 78 icon.setImageDrawable(info.info.applicationInfo.loadIcon(getPackageManager())) 190 MyPackageInfo info = local [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
CameraBrowser.java | 84 MtpDeviceInfo info = device.getDeviceInfo(); local 85 if (info != null) { 86 textView1.setText(info.getManufacturer()); 87 textView2.setText(info.getModel());
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
DocumentInfo.java | 146 final DocumentInfo info = new DocumentInfo(); local 147 info.updateFromCursor(cursor, authority); 148 return info; 168 final DocumentInfo info = new DocumentInfo(); local 169 info.updateFromUri(resolver, uri); 170 return info;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
ConnectivityServiceTest.java | 92 public NetworkInfo info; field in class:ConnectivityServiceTest.MockNetwork 97 info = new NetworkInfo(type, -1, getNetworkTypeName(type), null); 103 doReturn(new NetworkInfo(info)).when(tracker).getNetworkInfo(); 143 mTrackerHandler.getLooper().setMessageLogging(new LogPrinter(Log.INFO, TAG)); 155 mMobile.info.setDetailedState(DetailedState.CONNECTED, null, null); 162 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mMobile.info).sendToTarget(); 176 mMobile.info.setDetailedState(DetailedState.CONNECTED, null, null); 183 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mMobile.info).sendToTarget(); 189 mWifi.info.setDetailedState(DetailedState.CONNECTED, null, null); 199 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mWifi.info).sendToTarget() [all...] |