HomeSort by relevance Sort by last modified time
    Searched refs:details (Results 1 - 25 of 844) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/upstream/parameter/log/include/log/
Logger.h 62 details::Info info() { return details::Info(mLogger, mProlog); }
69 details::Warning warning() { return details::Warning(mLogger, mProlog); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceTag.java 23 public SystraceTag(String tagName, String details) {
25 info = details;
  /external/parameter-framework/upstream/parameter/
LoggingElementBuilderTemplate.cpp 34 namespace details namespace
LoggingElementBuilderTemplate.h 37 namespace details namespace
90 return new ElementType(details::getName(xmlElement), mLogger);
  /external/v8/src/
property.cc 31 explicit FastPropertyDetails(const PropertyDetails& v) : details(v) {}
32 const PropertyDetails details; member in struct:v8::internal::FastPropertyDetails
36 // Outputs PropertyDetails as a dictionary details.
37 std::ostream& operator<<(std::ostream& os, const PropertyDetails& details) {
39 if (details.location() == kDescriptor) {
42 os << (details.kind() == kData ? "data" : "accessor");
43 return os << ", dictionary_index: " << details.dictionary_index()
44 << ", attrs: " << details.attributes() << ")";
48 // Outputs PropertyDetails as a descriptor array details.
51 const PropertyDetails& details = details_fast.details local
    [all...]
layout-descriptor.cc 43 Handle<Map> map, PropertyDetails details) {
49 if (!InobjectUnboxedField(map->GetInObjectProperties(), details)) {
50 DCHECK(details.location() != kField ||
51 layout_descriptor->IsTagged(details.field_index()));
54 int field_index = details.field_index();
56 isolate, layout_descriptor, field_index + details.field_width_in_words());
61 if (details.field_width_in_words() > 1) {
69 Handle<Map> map, PropertyDetails details,
76 if (!InobjectUnboxedField(map->GetInObjectProperties(), details)) {
77 DCHECK(details.location() != kField |
264 PropertyDetails details = descriptors->GetDetails(i); local
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneCallDetailsHelper.java 87 /** Fills the call details views with content. */
88 public void setPhoneCallDetails(PhoneCallDetailsViews views, PhoneCallDetails details) {
91 int count = details.callTypes.length;
94 views.callTypeIcons.add(details.callTypes[index]);
96 isVoicemail = details.callTypes[index] == Calls.VOICEMAIL_TYPE;
102 (details.features & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO);
115 setDetailText(views, callCount, details);
118 String accountLabel = mCallLogCache.getAccountLabel(details.accountHandle);
119 if (!TextUtils.isEmpty(details.viaNumber)) {
122 accountLabel, details.viaNumber)
    [all...]
CallLogListItemHelper.java 36 /** Helper for populating the details of a phone call. */
45 * @param phoneCallDetailsHelper used to set the details of a phone call
62 * @param details the details of a phone call needed to fill in the data
66 PhoneCallDetails details) {
67 mPhoneCallDetailsHelper.setPhoneCallDetails(views.phoneCallDetailsViews, details);
70 views.quickContactView.setContentDescription(getContactBadgeDescription(details));
73 views.primaryActionView.setContentDescription(getCallDescription(details));
77 views.nameOrNumber = getNameOrNumber(details);
81 views.callTypeOrLocation = mPhoneCallDetailsHelper.getCallTypeOrLocation(details);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageDetailsDialog.java 105 final StringBuilder details = new StringBuilder(); local
108 details.append(res.getString(R.string.message_type_label));
109 details.append(res.getString(R.string.text_message));
115 details.append('\n');
116 details.append(res.getString(R.string.from_label));
117 details.append(rawSender);
122 details.append('\n');
123 details.append(res.getString(R.string.to_address_label));
124 details.append(rawRecipients);
130 details.append('\n')
162 final StringBuilder details = new StringBuilder(); local
    [all...]
  /external/wpa_supplicant_8/hostapd/logwatch/
hostapd 29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
32 $details =~ s/^(associated) .*$/$1/i;
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
48 print " $details";
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 84 MediaDetails details = super.getDetails(); local
85 details.addDetail(MediaDetails.INDEX_PATH, filePath);
86 details.addDetail(MediaDetails.INDEX_TITLE, caption);
88 details.addDetail(MediaDetails.INDEX_DATETIME,
90 details.addDetail(MediaDetails.INDEX_WIDTH, width);
91 details.addDetail(MediaDetails.INDEX_HEIGHT, height);
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
96 if (fileSize > 0) details.addDetail(MediaDetails.INDEX_SIZE, fileSize);
97 return details;
MediaDetails.java 112 private static void setExifData(MediaDetails details, ExifTag tag,
127 details.addDetail(key, state);
129 details.addDetail(key, value);
134 public static void extractExifInfo(MediaDetails details, String filePath) {
145 setExifData(details, exif.getTag(ExifInterface.TAG_FLASH),
147 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_WIDTH),
149 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_LENGTH),
151 setExifData(details, exif.getTag(ExifInterface.TAG_MAKE),
153 setExifData(details, exif.getTag(ExifInterface.TAG_MODEL),
155 setExifData(details, exif.getTag(ExifInterface.TAG_APERTURE_VALUE)
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogListItemHelperTest.java 110 PhoneCallDetails details = local
112 mHelper.setPhoneCallDetails(mViewHolder, details);
117 PhoneCallDetails details = local
119 mHelper.setPhoneCallDetails(mViewHolder, details);
197 PhoneCallDetails details = local
199 CharSequence description = mHelper.getCallDescription(details);
214 PhoneCallDetails details = getPhoneCallDetailsWithTypes( local
216 CharSequence description = mHelper.getCallDescription(details);
226 PhoneCallDetails details = getPhoneCallDetailsWithTypes( local
228 details.features = Calls.FEATURES_VIDEO
264 PhoneCallDetails details = getPhoneCallDetails( local
272 PhoneCallDetails details = new PhoneCallDetails( local
285 PhoneCallDetails details = new PhoneCallDetails( local
    [all...]
PhoneCallDetailsHelperTest.java 243 PhoneCallDetails details = getPhoneCallDetails(); local
244 details.features = Calls.FEATURES_VIDEO;
245 mHelper.setPhoneCallDetails(mViews, details);
254 PhoneCallDetails details = getPhoneCallDetails(); local
255 details.features = 0;
256 mHelper.setPhoneCallDetails(mViews, details);
342 PhoneCallDetails details = getPhoneCallDetails( local
346 mHelper.setCallDetailsHeader(mNameView, details);
362 PhoneCallDetails details = getPhoneCallDetails(); local
363 details.geocode = null
370 PhoneCallDetails details = getPhoneCallDetails("", Calls.PRESENTATION_ALLOWED, local
461 PhoneCallDetails details = getPhoneCallDetails(number, presentation, formattedNumber); local
468 PhoneCallDetails details = getPhoneCallDetails(); local
476 PhoneCallDetails details = getPhoneCallDetails(); local
483 PhoneCallDetails details = getPhoneCallDetails(); local
491 PhoneCallDetails details = getPhoneCallDetails(); local
499 PhoneCallDetails details = getPhoneCallDetails( local
507 PhoneCallDetails details = getPhoneCallDetails(); local
513 PhoneCallDetails details = getPhoneCallDetails(); local
521 PhoneCallDetails details = getPhoneCallDetails(); local
529 PhoneCallDetails details = getPhoneCallDetails(); local
540 PhoneCallDetails details = getPhoneCallDetails(); local
546 PhoneCallDetails details = new PhoneCallDetails( local
559 PhoneCallDetails details = new PhoneCallDetails( local
    [all...]
  /tools/test/connectivity/acts/framework/tests/
acts_records_test.py 28 self.details = "Some details about the test execution."
32 def verify_record(self, record, result, details, extras):
36 self.assertEqual(record.details, details)
46 d[records.TestResultEnums.RECORD_DETAILS] = details
69 details=None,
75 s = signals.TestPass(self.details, self.float_extra)
79 details=self.details,
    [all...]
  /tools/test/connectivity/acts/framework/acts/
signals.py 42 def __init__(self, details, extras=None):
43 if not isinstance(details, str):
45 super(TestSignal, self).__init__(details)
46 self.details = details
54 return "Details=%s, Extras=%s" % (self.details, self.extras)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentLayout.java 74 // During initial setup, plug in the details fragment.
75 DetailsFragment details = new DetailsFragment(); local
76 details.setArguments(getIntent().getExtras());
77 getFragmentManager().beginTransaction().add(android.R.id.content, details).commit();
101 // Check to see if we have a frame in which to embed the details
103 View detailsFrame = getActivity().findViewById(R.id.details);
131 * Helper function to show the details of a selected item, either by
144 DetailsFragment details = (DetailsFragment) local
145 getFragmentManager().findFragmentById(R.id.details);
146 if (details == null || details.getShownIndex() != index)
    [all...]
  /external/valgrind/gdbserver_tests/
mcleak.stderr.exp 2 expecting details 10 bytes reachable
7 expecting to have NO details
8 expecting details +10 bytes lost, +21 bytes reachable
9 expecting details +65 bytes reachable
10 expecting to have NO details
11 expecting details +10 bytes reachable
12 expecting details -10 bytes reachable, +10 bytes lost
13 expecting details -10 bytes lost, +10 bytes reachable
14 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentLayoutSupport.java 75 // During initial setup, plug in the details fragment.
76 DetailsFragment details = new DetailsFragment(); local
77 details.setArguments(getIntent().getExtras());
79 android.R.id.content, details).commit();
104 // Check to see if we have a frame in which to embed the details
106 View detailsFrame = getActivity().findViewById(R.id.details);
134 * Helper function to show the details of a selected item, either by
147 DetailsFragment details = (DetailsFragment) local
148 getFragmentManager().findFragmentById(R.id.details);
149 if (details == null || details.getShownIndex() != index)
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
DetailsActivity.java 21 * A wrapper class for details activity
31 setContentView(R.layout.details);
  /packages/apps/Settings/src/com/android/settings/
ConfirmDeviceCredentialActivity.java 41 public static Intent createIntent(CharSequence title, CharSequence details) {
46 intent.putExtra(KeyguardManager.EXTRA_DESCRIPTION, details);
50 public static Intent createIntent(CharSequence title, CharSequence details, long challenge) {
55 intent.putExtra(KeyguardManager.EXTRA_DESCRIPTION, details);
67 String details = intent.getStringExtra(KeyguardManager.EXTRA_DESCRIPTION); local
93 0 /* request code */, null /* title */, title, details, true /* isExternal */,
97 title, details, false /* returnCredentials */, true /* isExternal */, userId);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 144 details = self.getNodeDetails(currentNode)
145 type, details = details[0], details[1:]
149 yield self.doctype(*details)
152 for token in self.text(*details):
156 namespace, name, attributes, hasChildren = details
166 yield self.comment(details[0])
169 yield self.entity(details[0])
175 yield self.unknown(details[0]
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/security/
DigestAuthentication.java 35 Map details; field in class:DigestAuthentication
37 public DigestAuthentication(Realm realm, Map details)
40 this.details=details;
51 buffer.append(", ").append("realm").append('=').append('"').append(String.valueOf(details.get("realm"))).append('"');
53 buffer.append(", ").append("nonce").append('=').append('"').append(String.valueOf(details.get("nonce"))).append('"');
57 buffer.append(", ").append("algorithm").append('=').append(String.valueOf(details.get("algorithm")));
59 String cnonce = newCnonce(exchange, securityRealm, details);
62 exchange, securityRealm, details)).append('"');
64 buffer.append(", ").append("qop").append('=').append(String.valueOf(details.get("qop")))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
MediaDetails.java 111 private static void setExifData(MediaDetails details, ExifTag tag,
126 details.addDetail(key, state);
128 details.addDetail(key, value);
137 public static void extractExifInfo(MediaDetails details, String filePath) {
147 setExifData(details, exif.getTag(ExifInterface.TAG_FLASH),
149 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_WIDTH),
151 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_LENGTH),
153 setExifData(details, exif.getTag(ExifInterface.TAG_MAKE),
155 setExifData(details, exif.getTag(ExifInterface.TAG_MODEL),
157 setExifData(details, exif.getTag(ExifInterface.TAG_APERTURE_VALUE)
    [all...]
  /external/autotest/frontend/server/
models.py 70 """Get a dictionary with all server details.
80 @return: A dictionary with all server details.
82 details = {}
83 details['hostname'] = self.hostname
84 details['status'] = self.status
85 details['roles'] = self.get_role_names()
88 details['attributes'] = attributes
89 details['date_created'] = self.date_created
90 details['date_modified'] = self.date_modified
91 details['note'] = self.not
    [all...]

Completed in 954 milliseconds

1 2 3 4 5 6 7 8 91011>>