HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 326 - 350 of 1199) sorted by null

<<11121314151617181920>>

  /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);
  /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/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/bluetooth/glib/gio/
gfileinputstream.c 138 GFileInfo *info; local
147 info = NULL;
154 info = class->query_info (stream, attributes, cancellable, error);
164 return info;
244 * Finishes an asynchronous info query operation.
393 GFileInfo *info; member in struct:__anon1966
399 if (data->info)
400 g_object_unref (data->info);
413 GFileInfo *info; local
417 info = NULL
    [all...]
  /external/bluetooth/glib/gobject/
genums.c 93 static GTypeInfo info = { local
115 info.class_size = sizeof (GEnumClass);
116 type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
122 info.class_size = sizeof (GFlagsClass);
123 type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
260 * @info: the #GTypeInfo struct to be filled in
273 * GTypeInfo *info,
282 * g_enum_complete_type_info (type, info, values);
288 GTypeInfo *info,
292 g_return_if_fail (info != NULL)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProvider.java 46 private static String info = "BouncyCastle Security Provider v1.46"; field in class:BouncyCastleProvider
85 super(PROVIDER_NAME, 1.46, info);
    [all...]
JCEDHPrivateKey.java 34 private PrivateKeyInfo info; field in class:JCEDHPrivateKey
57 PrivateKeyInfo info)
59 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
60 DERInteger derX = (DERInteger)info.getPrivateKey();
61 DERObjectIdentifier id = info.getAlgorithmId().getObjectId();
63 this.info = info;
121 if (info != null)
123 return info.getDEREncoded();
126 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter (…) local
    [all...]
JCEDHPublicKey.java 30 private SubjectPublicKeyInfo info; field in class:JCEDHPublicKey
62 SubjectPublicKeyInfo info)
64 this.info = info;
69 derY = (DERInteger)info.getPublicKey();
73 throw new IllegalArgumentException("invalid info structure in DH public key");
78 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
79 DERObjectIdentifier id = info.getAlgorithmId().getObjectId();
119 if (info != null)
121 return info.getDEREncoded()
124 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(y)); local
    [all...]
JDKDSAPrivateKey.java 53 PrivateKeyInfo info)
55 DSAParameter params = new DSAParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
56 DERInteger derX = (DERInteger)info.getPrivateKey();
92 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX())); local
94 return info.getDEREncoded();
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
MiscPEMGenerator.java 141 PrivateKeyInfo info = new PrivateKeyInfo( local
148 encoding = info.getPrivateKey().getEncoded();
154 DSAParameter p = DSAParameter.getInstance(info.getAlgorithmId().getParameters());
174 encoding = info.getPrivateKey().getEncoded();
313 headers.add(new PemHeader("DEK-Info", dekAlgName + "," + getHexEncoded(iv)));
  /external/chromium/base/
platform_file_unittest.cc 263 // Get info for a newly created file.
264 base::PlatformFileInfo info; local
265 EXPECT_TRUE(base::GetPlatformFileInfo(file, &info));
270 EXPECT_EQ(0, info.size);
271 EXPECT_FALSE(info.is_directory);
272 EXPECT_FALSE(info.is_symbolic_link);
273 EXPECT_LE(info.last_accessed.ToInternalValue(), now.ToInternalValue());
274 EXPECT_LE(info.last_modified.ToInternalValue(), now.ToInternalValue());
275 EXPECT_LE(info.creation_time.ToInternalValue(), now.ToInternalValue());
276 base::Time creation_time = info.creation_time
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk_unittest.cc 134 RunInfo info = RunInfoForAttrType(location, local
137 return info.length_;
143 RunInfo info = RunInfoForAttrType(location, local
147 return info.attr_ && pango_attribute_equal(info.attr_, attribute);
history_quick_provider.cc 124 const history::URLRow& info = history_match.url_info; local
141 AutocompleteMatch match(this, score, !!info.visit_count(),
146 match.destination_url = info.url();
153 AutocompleteInput::FormattedStringWithEquivalentMeaning(info.url(),
154 net::FormatUrl(info.url(), languages_, net::kFormatUrlOmitAll,
165 net::FormatUrlWithOffsets(info.url(), languages_, net::kFormatUrlOmitAll,
173 match.description = info.title();
  /external/chromium/chrome/browser/
background_mode_manager.cc 136 Details<UnloadedExtensionInfo> info = local
142 if (info->already_disabled)
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.cc 104 ResourceInfo* info = GetResourceInfo(source.id); local
105 if (!info)
114 info->request_headers.push_back(std::make_pair(it.name(),
122 info->http_status_code = response_headers.response_code();
123 info->http_status_text = response_headers.GetStatusText();
127 info->response_headers.push_back(std::make_pair(name, value));
  /external/chromium/chrome/browser/download/
download_file_unittest.cc 58 DownloadCreateInfo info; local
59 info.download_id = kDummyDownloadId + offset;
60 info.child_id = kDummyChildId;
61 info.request_id = kDummyRequestId - offset;
62 info.save_info.file_stream = file_stream_;
63 file->reset(new DownloadFile(&info, download_manager_));
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 220 MONITORINFO info = {sizeof(info)}; local
221 if (!GetMonitorInfoW(monitor, &info)) {
227 int left = is_RTL ? info.rcWork.left : info.rcWork.right - width;
228 int top = info.rcWork.bottom - height;
  /external/chromium/chrome/browser/password_manager/
password_store_win.cc 98 IE7PasswordInfo info; local
99 info.url_hash = ie7_password::GetUrlHash(UTF8ToWide(url.spec()));
100 WebDataService::Handle handle = web_data_service_->GetIE7Login(info, this);
111 IE7PasswordInfo info = r->GetValue(); local
113 if (!info.encrypted_data.empty()) {
117 web_data_service_->RemoveIE7Login(info);
121 if (!ie7_password::DecryptPassword(url, info.encrypted_data,
131 autofill->date_created = info.date_created;
  /external/chromium/chrome/browser/sync/
sync_ui_util.cc 182 // Returns the status info for use on the new tab page, where we want slightly
425 syncable::AutofillMigrationDebugInfo info = local
430 info.bookmarks_added_during_migration);
433 info.autofill_entries_added_during_migration);
436 info.autofill_profile_added_during_migration);
440 val->SetString("stat_value", ConstructTime(info.autofill_migration_time));
  /external/chromium/chrome/common/
chrome_content_client.cc 97 PepperPluginInfo info; local
98 info.is_internal = true;
99 info.path = FilePath(FILE_PATH_LITERAL("internal-chromoting"));
103 info.mime_types.push_back(remoting_mime_type);
104 info.internal_entry_points.get_interface = remoting::PPP_GetInterface;
105 info.internal_entry_points.initialize_module =
107 info.internal_entry_points.shutdown_module = remoting::PPP_ShutdownModule;
109 plugins->push_back(info);

Completed in 1027 milliseconds

<<11121314151617181920>>