HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 801 - 825 of 3477) sorted by null

<<31323334353637383940>>

  /development/ndk/platforms/android-L/include/linux/
bsg.h 61 __u32 info; member in struct:sg_io_v4
cycx_cfm.h 64 struct cycx_fw_info info; member in struct:cycx_firmware
  /development/ndk/sources/android/libportable/arch-mips/
syscall.c 328 siginfo_portable_t *info; local
334 info = va_arg(ap, siginfo_portable_t *);
339 ret = WRAP(__rt_sigtimedwait)(set, info, timeout, sigsetsize);
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 82 ResolveInfo info = list.get(i); local
83 CharSequence labelSeq = info.loadLabel(pm);
86 : info.activityInfo.name;
96 info.activityInfo.applicationInfo.packageName,
97 info.activityInfo.name));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 75 ActivityInfo info = pm.getActivityInfo(this.getComponentName(), local
77 labelSeq = info.loadLabel(pm);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 63 ExpandableListContextMenuInfo info = (ExpandableListContextMenuInfo) item.getMenuInfo(); local
65 String title = ((TextView) info.targetView).getText().toString();
67 int type = ExpandableListView.getPackedPositionType(info.packedPosition);
69 int groupPos = ExpandableListView.getPackedPositionGroup(info.packedPosition);
70 int childPos = ExpandableListView.getPackedPositionChild(info.packedPosition);
75 int groupPos = ExpandableListView.getPackedPositionGroup(info.packedPosition);
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java 46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos); local
47 startActivity(info.intent);
62 final ResolveInfo info = infos.get(i); local
63 final CharSequence labelSeq = info.loadLabel(pm);
64 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name;
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 82 ResolveInfo info = list.get(i); local
83 CharSequence labelSeq = info.loadLabel(pm);
86 : info.activityInfo.name;
96 info.activityInfo.applicationInfo.packageName,
97 info.activityInfo.name));
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
ActionBarTabsPager.java 110 TabInfo info = new TabInfo(clss, args); local
111 tab.setTag(info);
113 mTabs.add(info);
125 TabInfo info = mTabs.get(position); local
126 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
FragmentNestingPagerSupport.java 108 TabInfo info = new TabInfo(clss, args); local
109 tab.setTag(info);
111 mTabs.add(info);
123 TabInfo info = mTabs.get(position); local
124 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
FragmentNestingStatePagerSupport.java 108 TabInfo info = new TabInfo(clss, args); local
109 tab.setTag(info);
111 mTabs.add(info);
123 TabInfo info = mTabs.get(position); local
124 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 82 ResolveInfo info = list.get(i); local
83 CharSequence labelSeq = info.loadLabel(pm);
86 : info.activityInfo.name;
96 info.activityInfo.applicationInfo.packageName,
97 info.activityInfo.name));
  /development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java 82 ResolveInfo info = list.get(i); local
83 CharSequence labelSeq = info.loadLabel(pm);
86 : info.activityInfo.name;
96 info.activityInfo.applicationInfo.packageName,
97 info.activityInfo.name));
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
AppNavHomeActivity.java 46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos); local
47 startActivity(info.intent);
62 final ResolveInfo info = infos.get(i); local
63 final CharSequence labelSeq = info.loadLabel(pm);
64 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name;
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 116 PackageInfo info = manager.getPackageInfo(context.getPackageName(), 0); local
118 info.packageName, info.versionName);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 123 PackageInfo info = manager.getPackageInfo(context.getPackageName(), 0); local
125 info.packageName, info.versionName);
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 97 AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo(); local
98 mDbHelper.deleteNote(info.id);
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 187 * Logs a message with <code>java.util.logging.Level.INFO</code>.
190 * @see org.apache.commons.logging.Log#info(Object)
192 public void info(Object message) { method in class:Jdk14Logger
193 log(Level.INFO, String.valueOf(message), null);
198 * Logs a message with <code>java.util.logging.Level.INFO</code>.
202 * @see org.apache.commons.logging.Log#info(Object, Throwable)
204 public void info(Object message, Throwable exception) { method in class:Jdk14Logger
205 log(Level.INFO, String.valueOf(message), exception);
234 * Is info logging currently enabled?
237 return (getLogger().isLoggable(Level.INFO));
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPublicKey.java 32 private transient SubjectPublicKeyInfo info; field in class:BCDHPublicKey
64 SubjectPublicKeyInfo info)
66 this.info = info;
71 derY = (ASN1Integer)info.parsePublicKey();
75 throw new IllegalArgumentException("invalid info structure in DH public key");
80 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithm().getParameters());
81 ASN1ObjectIdentifier id = info.getAlgorithm().getAlgorithm();
121 if (info != null)
123 return KeyUtil.getEncodedSubjectPublicKeyInfo(info);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProvider.java 47 private static String info = "BouncyCastle Security Provider v1.50"; field in class:BouncyCastleProvider
142 super(PROVIDER_NAME, 1.50, info);
JCEDHPrivateKey.java 37 private PrivateKeyInfo info; field in class:JCEDHPrivateKey
60 PrivateKeyInfo info)
63 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
64 DERInteger derX = DERInteger.getInstance(info.parsePrivateKey());
65 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm();
67 this.info = info;
127 if (info != null)
129 return info.getEncoded(ASN1Encoding.DER);
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter (…) local
    [all...]
JCEDHPublicKey.java 31 private SubjectPublicKeyInfo info; field in class:JCEDHPublicKey
63 SubjectPublicKeyInfo info)
65 this.info = info;
70 derY = (DERInteger)info.parsePublicKey();
74 throw new IllegalArgumentException("invalid info structure in DH public key");
79 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
80 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm();
120 if (info != null)
122 return KeyUtil.getEncodedSubjectPublicKeyInfo(info);
    [all...]
JDKDSAPrivateKey.java 56 PrivateKeyInfo info)
59 DSAParameter params = DSAParameter.getInstance(info.getPrivateKeyAlgorithm().getParameters());
60 DERInteger derX = ASN1Integer.getInstance(info.parsePrivateKey());
98 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(getX())); local
100 return info.getEncoded(ASN1Encoding.DER);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
GetTitleTest.java 78 * When the data has title info, the page title is set to it.
117 * When url-file has the title info, the page title is set to it.
123 final PageInfo info = loadFromUrlAndGetTitle(getHtml(TITLE), GET_TITLE_TEST_PATH); local
124 assertEquals("Title should be " + TITLE, TITLE, info.mTitle);
135 final PageInfo info = loadFromUrlAndGetTitle(getHtml(""), GET_TITLE_TEST_EMPTY_PATH); local
136 assertEquals("Incorrect title :: " , info.mUrl, info.mTitle);
147 final PageInfo info = loadFromUrlAndGetTitle(getHtml(null), GET_TITLE_TEST_NO_TITLE_PATH); local
148 assertEquals("Incorrect title :: " , info.mUrl, info.mTitle)
    [all...]
  /external/chromium_org/ash/desktop_background/
desktop_background_view.cc 56 DisplayInfo info = display_manager->GetDisplayInfo(display.id()); variable
57 float ui_scale = info.GetEffectiveUIScale();

Completed in 611 milliseconds

<<31323334353637383940>>