/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atm_zatm.h | 35 struct zatm_pool_info info; /* actual information */ member in struct:zatm_pool_req
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atm_zatm.h | 35 struct zatm_pool_info info; /* actual information */ member in struct:zatm_pool_req
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atm_zatm.h | 35 struct zatm_pool_info info; /* actual information */ member in struct:zatm_pool_req
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
math_emu.h | 17 struct info { struct
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
math_emu.h | 17 struct info { struct
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
math_emu.h | 17 struct info { struct
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
math_emu.h | 17 struct info { struct
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
math_emu.h | 17 struct info { struct
|
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/ |
math_emu.h | 22 struct info { struct
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/ |
math_emu.h | 22 struct info { struct
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
SensorActivity.java | 199 for (DisplayInfo info : mDisplayedSensors.values()) { 200 info.release(); 262 DisplayInfo info = null; local 265 info = mDisplayedSensors.get(msg.obj); 266 if (info != null) { 267 info.updateState(); 271 info = mDisplayedSensors.get(msg.obj); 272 if (info != null) { 273 info.updateValue();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoringTest.java | 45 TestContext info = setupTestContext(file, basename); local 46 TestLayoutEditorDelegate layoutEditor = info.mLayoutEditorDelegate; 47 List<Element> selectedElements = getElements(info.mElement, id);
|
WrapInRefactoringTest.java | 49 TestContext info = setupTestContext(file, basename); local 50 TestLayoutEditorDelegate layoutEditor = info.mLayoutEditorDelegate; 51 List<Element> selectedElements = getElements(info.mElement, ids);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
AndroidPackageRenameParticipantTest.java | 223 ManifestInfo info = ManifestInfo.get(project); local 224 String currentPackage = info.getPackage(); 255 "<INFO\n" + 257 "INFO: You are refactoring the same package as your application's package (specified in the manifest).\n" + 263 "INFO: Note that this refactoring does NOT also update your application package.\n" + 268 "INFO: The application package defines your application's identity.\n" + 273 "INFO: If you change it, then it is considered to be a different application.\n" + 278 "INFO: (Users of the previous version cannot update to the new version.)\n" + 283 "INFO: The application package, and the package containing the code, can differ.\n" + 288 "INFO: To really change application package, choose \"Android Tools\" > \"Rename Application Package.\" (…) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
ApplicationPackageNameRefactoringTest.java | 117 ManifestInfo info = ManifestInfo.get(project); local 118 String currentPackage = info.getPackage();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttrsXmlParserTest.java | 57 ViewClassInfo info = new ViewClassInfo( local 61 mParser.loadViewAttributes(info); 64 info.getJavaDoc()); 65 AttributeInfo[] attrs = info.getAttributes(); 67 assertEquals("scrollbarSize", info.getAttributes()[0].getName()); 68 assertEquals(1, info.getAttributes()[0].getFormats().size()); 69 assertEquals(Format.DIMENSION, info.getAttributes()[0].getFormats().iterator().next());
|
/system/extras/tests/framebuffer/ |
refresh.c | 49 struct fb_var_screeninfo info; local 50 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1) 53 info.reserved[0] = 0; 54 info.reserved[1] = 0; 55 info.reserved[2] = 0; 56 info.xoffset = 0; 57 info.yoffset = 0; 58 info.bits_per_pixel = 16; 59 info.activate = FB_ACTIVATE_NOW; 61 if (ioctl(fd, FBIOPUT_VSCREENINFO, &info) == -1) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Grid3.java | 88 ResolveInfo info = mApps.get(position); local 89 i.setImageDrawable(info.activityInfo.loadIcon(getPackageManager()));
|
/external/smack/src/org/jivesoftware/smackx/entitycaps/cache/ |
SimpleDirectoryPersistentCache.java | 88 public void addDiscoverInfoByNodePersistent(String node, DiscoverInfo info) { 93 writeInfoToFile(nodeFile, info); 104 DiscoverInfo info = restoreInfoFromFile(f); local 105 if (info == null) 108 EntityCapsManager.addDiscoverInfoByNode(node, info); 123 * @param info 126 private static void writeInfoToFile(File file, DiscoverInfo info) throws IOException { 129 dos.writeUTF(info.toXML());
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ElementsTreeOutline.js | [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeInfoCache.java | 30 * accessibility id to an info. The cache allows storing of 121 * @param accessibilityNodeId The info accessibility node id. 127 AccessibilityNodeInfo info = mCacheImpl.get(accessibilityNodeId); local 128 if (info != null) { 130 // will wipe the data of the cached info. 131 info = AccessibilityNodeInfo.obtain(info); 134 Log.i(LOG_TAG, "get(" + accessibilityNodeId + ") = " + info); 136 return info; 146 * @param info The {@link AccessibilityNodeInfo} to cache 201 AccessibilityNodeInfo info = mCacheImpl.valueAt(i); local 236 AccessibilityNodeInfo info = mCacheImpl.valueAt(i); local 253 AccessibilityNodeInfo info = mCacheImpl.valueAt(i); local 332 AccessibilityNodeInfo info = mCacheImpl.valueAt(i); local [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectViewer.java | 117 MtpObjectInfo info = mClient.getObjectInfo(mDeviceName, mObjectID); local 118 if (info != null) { 120 mFileName = info.getName(); 123 view.setText(Integer.toHexString(info.getFormat()).toUpperCase()); 125 view.setText(Long.toString(info.getCompressedSize())); 127 view.setText(Long.toString(info.getThumbPixWidth())); 129 view.setText(Long.toString(info.getThumbPixHeight())); 131 view.setText(Long.toString(info.getThumbCompressedSize())); 133 view.setText(Long.toString(info.getImagePixWidth())); 135 view.setText(Long.toString(info.getImagePixHeight())) [all...] |
/frameworks/opt/datetimepicker/src/com/googlecode/eyesfree/utils/ |
TouchExplorationHelper.java | 253 final AccessibilityNodeInfoCompat info = AccessibilityNodeInfoCompat.obtain(mParentView); local 254 ViewCompat.onInitializeAccessibilityNodeInfo(mParentView, info); 261 info.addChild(mParentView, virtualDescendantId); 264 return info; 340 // We have attach info so this view is attached and there is no 369 public void onInitializeAccessibilityNodeInfo(View view, AccessibilityNodeInfoCompat info) { 370 super.onInitializeAccessibilityNodeInfo(view, info); 371 info.setClassName(view.getClass().getName());
|
/packages/apps/Contacts/src/com/android/contacts/ |
SplitAggregateView.java | 163 RawContactInfo info = rawContactInfos.get(rawContactId); local 164 if (info == null) { 165 info = new RawContactInfo(rawContactId); 166 rawContactInfos.put(rawContactId, info); 167 info.accountType = cursor.getString(SplitQuery.ACCOUNT_TYPE); 168 info.dataSet = cursor.getString(SplitQuery.DATA_SET); 173 loadStructuredName(cursor, info); 175 loadPhoneNumber(cursor, info); 177 loadEmail(cursor, info); 179 loadNickname(cursor, info); 246 final RawContactInfo info = getItem(position); local [all...] |
/development/apps/CustomLocale/src/com/android/customlocale2/ |
CustomLocaleActivity.java | 316 LocaleInfo info = getCheckedLocale(); local 317 if (info != null) { 321 getString(R.string.select_locale_1s_button, info.getLocale())); 324 mRemoveLocaleButton.setEnabled(info.isCustom()); 342 LocaleInfo info = getCheckedLocale(); local 343 if (info != null) { 344 changeSystemLocale(info.getLocale()); 354 LocaleInfo info = getCheckedLocale(); local 355 final String localeToRemove = info == null ? "<error>" : info.getLocale() [all...] |