/system/vold/ |
main.cpp | 181 char *type, *label, *mount_point; local 193 if (!(label = strsep(&next, " \t"))) { 194 SLOGE("Error parsing label"); 216 dv = new DirectVolume(vm, label, mount_point, -1); 218 dv = new DirectVolume(vm, label, mount_point, atoi(part)); 224 label);
|
/external/openssl/crypto/aes/asm/ |
aes-586.pl | 291 &jb (&label("loop")); 295 &jle (&label("10rounds")); 297 &jle (&label("12rounds")); 451 &call (&label("pic_point")); # make it PIC! 454 &lea ("ebp",&DWP(&label("AES_Te")."-".&label("pic_point"),"ebp")); 570 &jb (&label("loop")); 574 &jle (&label("10rounds")); 576 &jle (&label("12rounds")); 742 &call (&label("pic_point")); # make it PIC [all...] |
/external/openssl/crypto/perlasm/ |
x86unix.pl | 5 $label="L000"; 200 foreach $i (%label) 201 { if ($label{$i} eq $_[0]) { $pre=''; last; } } 426 %label=(); 457 %label=(); 513 $label{$_[0]}="${under}${_[0]}" if (!defined($label{$_[0]})); 514 push(@out,".globl\t$label{$_[0]}\n"); 517 sub main'label 519 if (!defined($label{$_[0]}) [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
ScreenViewer.java | 376 JLabel label; local 378 add(label = new JLabel("#ffffff"), new GridBagConstraints(0, 2, 1, 1, 0.0f, 0.0f, 381 label.setForeground(Color.WHITE); 382 hLabel = label; 384 add(label = new JLabel("R:"), new GridBagConstraints(1, 0, 1, 1, 0.0f, 0.0f, 387 label.setForeground(Color.WHITE); 388 add(label = new JLabel("255"), new GridBagConstraints(2, 0, 1, 1, 0.0f, 0.0f, 391 label.setForeground(Color.WHITE); 392 rLabel = label; 394 add(label = new JLabel("G:"), new GridBagConstraints(1, 1, 1, 1, 0.0f, 0.0f [all...] |
/frameworks/base/core/java/android/content/pm/ |
ResolveInfo.java | 94 * match's label. From the "label" attribute or, if not set, 0. 118 * Retrieve the current textual label associated with this resolution. This 119 * will call back on the given PackageManager to load the label from 122 * @param pm A PackageManager from which the label can be loaded; usually 125 * @return Returns a CharSequence containing the resolutions's label. If the 126 * item does not have a label, its name is returned. 132 CharSequence label; local 134 label = pm.getText(resolvePackageName, labelRes, null); 135 if (label != null) [all...] |
LabeledIntent.java | 25 * A special subclass of Intent that can have a custom label/icon 35 * Create a labeled intent from the given intent, supplying the label 39 * @param sourcePackage The package in which the label and icon live. 40 * @param labelRes Resource containing the label, or 0 if none. 54 * label and icon resource for it. 57 * @param sourcePackage The package in which the label and icon live. 58 * @param nonLocalizedLabel Concrete text to use for the label. 71 * Create a labeled intent with no intent data but supplying the label 74 * @param sourcePackage The package in which the label and icon live. 75 * @param labelRes Resource containing the label, or 0 if none 139 CharSequence label = pm.getText(mSourcePackage, mLabelRes, null); local [all...] |
/packages/apps/AlarmClock/src/com/android/alarmclock/ |
Alarm.java | 59 p.writeString(label); 165 public String label; field in class:Alarm 177 label = c.getString(Columns.ALARM_MESSAGE_INDEX); 206 label = p.readString(); 212 if (label == null || label.length() == 0) { 215 return label;
|
AlarmAlertFullScreen.java | 101 String label = mAlarm.getLabelOrDefault(this); local 103 title.setText(label); 163 // Append (snoozed) to the label. 164 String label = mAlarm.getLabelOrDefault(this); local 165 label = getString(R.string.alarm_notify_snooze_label, label); 175 label, 0); 176 n.setLatestEventInfo(this, label,
|
/packages/apps/Contacts/src/com/android/contacts/ |
PhoneDisambigDialog.java | 162 values.put(Phone.LABEL, item.label); 178 final String label; field in class:PhoneDisambigDialog.PhoneItem 180 public PhoneItem(long id, String phoneNumber, String accountType, int type, String label) { 185 this.label = label; 220 String label = phonesCursor.getString(phonesCursor.getColumnIndex(Phone.LABEL)); local 222 phoneList.add(new PhoneItem(id, phone, accountType, type, label));
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
Alarm.java | 59 p.writeString(label); 165 public String label; field in class:Alarm 177 label = c.getString(Columns.ALARM_MESSAGE_INDEX); 206 label = p.readString(); 224 if (label == null || label.length() == 0) { 227 return label;
|
AlarmAlertFullScreen.java | 113 String label = mAlarm.getLabelOrDefault(this); local 115 title.setText(label); 166 // Append (snoozed) to the label. 167 String label = mAlarm.getLabelOrDefault(this); local 168 label = getString(R.string.alarm_notify_snooze_label, label); 178 label, 0); 179 n.setLatestEventInfo(this, label,
|
/packages/apps/Mms/src/com/android/mms/ui/ |
RecipientsAdapter.java | 58 Phone.LABEL, // 4 90 String label = cursor.getString(RecipientsAdapter.LABEL_INDEX); local 91 CharSequence displayLabel = Phone.getDisplayLabel(mContext, type, label); 122 out.setSpan(new Annotation("label", displayLabel.toString()), 0, len, 135 TextView label = (TextView) view.findViewById(R.id.label); local 139 // When there's no label, getDisplayLabel() returns a CharSequence of length==1 containing 140 // a unicode non-breaking space. Need to check for that and consider that as "no label". 143 label.setVisibility(View.GONE); 145 label.setText(labelText) [all...] |
/build/tools/droiddoc/src/ |
NavTree.java | 60 private static void addClassNodes(ArrayList<Node> parent, String label, ClassInfo[] classes) { 70 parent.add(new Node(label, null, children, null)); 80 Node(String label, String link, ArrayList<Node> children, String since) { 81 mLabel = label;
|
/development/apps/Development/src/com/android/development/ |
ShowActivity.java | 59 mLabel = (TextView)findViewById(R.id.label); 84 CharSequence label = mActivityInfo.loadLabel(pm); local 85 mLabel.setText("\"" + (label != null ? label : "") + "\"");
|
/external/srec/srec/include/ |
srec_results.h | 42 int srec_nbest_get_result(void* nbest, int n, char* label, int label_len, asr_int32_t* cost, int whether_strip_slot_markers);
|
/external/webkit/WebCore/html/ |
HTMLOptGroupElement.h | 55 String label() const;
|
HTMLOptionElement.h | 74 String label() const;
|
/external/webkit/WebCore/inspector/front-end/ |
TimelineGrid.js | 48 this._dividersLabelBarElement.id = "resources-dividers-label-bar"; 84 var label = document.createElement("div"); 85 label.className = "resources-divider-label"; 86 dividerLabelBar._labelElement = label; 87 dividerLabelBar.appendChild(label);
|
/external/webkit/WebCore/page/ |
DragClient.h | 65 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*) = 0;
|
/external/webkit/WebCore/platform/gtk/ |
ClipboardGtk.cpp | 133 void ClipboardGtk::declareAndWriteDragImage(Element* element, const KURL& url, const String& label, Frame*) 149 writeURL(url, label, 0); 152 void ClipboardGtk::writeURL(const KURL& url, const String& label, Frame*) 164 gtk_clipboard_set_text(urlLabelClipboard, label.utf8().data(), -1);
|
/external/webkit/WebKit/chromium/src/ |
DragClientImpl.cpp | 88 DragImageRef DragClientImpl::createDragImageForLink(KURL&, const String& label, Frame*)
|
DragClientImpl.h | 66 WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
DragClientGtk.h | 50 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebDragClient.h | 39 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL& url, const WebCore::String& label, WebCore::Frame*);
|
/frameworks/base/core/java/android/view/inputmethod/ |
EditorInfo.java | 164 * In some cases an IME may be able to display an arbitrary label for 208 * A label to show to the user describing the text they are writing. 210 public CharSequence label; field in class:EditorInfo 256 + " label=" + label); 279 TextUtils.writeToParcel(label, dest, flags); 301 res.label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
|