HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 301 - 325 of 1399) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/gui/
MemberSpecificationsPanel.java 216 private final JLabel label = new JLabel(); field in class:MemberSpecificationsPanel.MyListCellRenderer
233 label.setText(wrapper.isField ?
250 label.setBackground(list.getSelectionBackground());
251 label.setForeground(list.getSelectionForeground());
255 label.setBackground(list.getBackground());
256 label.setForeground(list.getForeground());
259 label.setOpaque(true);
261 return label;
  /external/skia/gm/
drawbitmaprect.cpp 177 SkString label; variable
178 label.appendf("%d x %d", w, h);
184 canvas->drawText(label.c_str(), label.size(),
  /external/skia/src/views/
SkWidgets.cpp 158 void SkHasLabelWidget::setLabel(const char label[])
160 this->setLabel(label, strlen(label));
163 void SkHasLabelWidget::setLabel(const char label[], size_t len)
165 if (!fLabel.equals(label, len))
167 fLabel.set(label, len);
181 const char* text = dom.findAttr(node, "label");
267 SkString label; local
268 this->getLabel(&label);
279 evt.setString("prime-text", label);
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 46 this.yamlConstructors.put(new Tag("tag:clarkevans.com,2002:label"),
87 Label label = new Label((Map<String, Integer>) values.get("start"), local
89 return label;
99 this.representers.put(Label.class, new RepresentLabel());
133 Label label = (Label) data; local
135 map.put("start", label.getStart())
    [all...]
  /external/v8/test/unittests/interpreter/
bytecode-array-builder-unittest.cc 635 BytecodeLabel label; local
637 builder.Jump(&label).Bind(&label).Jump(&label).Jump(&label).Return();
665 BytecodeLabel label; local
666 builder.Jump(&label).Bind(&label).Jump(&label).Jump(&label);
    [all...]
  /external/vboot_reference/host/include/
cgpt_params.h 31 char *label; member in struct:CgptAddParams
99 char *label; member in struct:CgptFindParams
  /external/webrtc/talk/app/webrtc/
datachannel.h 131 const std::string& label,
137 virtual std::string label() const { return label_; } function in class:webrtc::DataChannel
202 const std::string& label);
283 PROXY_CONSTMETHOD0(std::string, label)
  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.c 452 const char *label = "EAP-EKE Keys"; local
474 label_len = os_strlen(label);
479 os_memcpy(data, label, label_len);
505 const char *label = "EAP-EKE Ka"; local
515 label_len = os_strlen(label);
521 os_memcpy(pos, label, label_len);
551 const char *label = "EAP-EKE Exported Keys"; local
560 label_len = os_strlen(label);
566 os_memcpy(pos, label, label_len);
708 int eap_eke_auth(struct eap_eke_session *sess, const char *label,
    [all...]
  /frameworks/base/cmds/telecom/src/com/android/commands/telecom/
Telecom.java 66 "usage: telecom register-phone-account <COMPONENT> <ID> <USER_SN> <LABEL>\n" +
67 "usage: telecom register-sim-phone-account <COMPONENT> <ID> <USER_SN> <LABEL> <ADDRESS>\n" +
145 final String label = nextArgRequired(); local
146 PhoneAccount account = PhoneAccount.builder(handle, label)
154 final String label = nextArgRequired(); local
157 handle, label)
162 .setShortDescription(label)
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 155 * The label to display to the user in the AppWidget picker.
160 public String label; field in class:AppWidgetProviderInfo
234 this.label = in.readString();
244 * Loads the localized label to display to the user in the AppWidget picker.
247 * @return The label for the current locale.
250 CharSequence label = providerInfo.loadLabel(packageManager); local
251 if (label != null) {
252 return label.toString().trim();
328 out.writeString(this.label);
350 that.label = this.label == null ? null : this.label.substring(0)
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageItemInfo.java 41 * a label, icon, and meta-data. This class is not intended
61 * component's label. From the "label" attribute or, if not set, 0.
124 * Retrieve the current textual label associated with this item. This
125 * will call back on the given PackageManager to load the label from
128 * @param pm A PackageManager from which the label can be loaded; usually
131 * @return Returns a CharSequence containing the item's label. If the
132 * item does not have a label, its name is returned.
139 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo()); local
140 if (label != null)
169 String label = loadLabel(pm).toString(); local
    [all...]
  /frameworks/base/core/java/android/os/storage/
DiskInfo.java 54 public String label; field in class:DiskInfo
68 label = parcel.readString();
77 private boolean isInteresting(String label) {
78 if (TextUtils.isEmpty(label)) {
81 if (label.equalsIgnoreCase("ata")) {
84 if (label.toLowerCase().contains("generic")) {
87 if (label.toLowerCase().startsWith("usb")) {
90 if (label.toLowerCase().startsWith("multiple")) {
99 if (isInteresting(label)) {
100 return res.getString(com.android.internal.R.string.storage_sd_card_label, label);
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 228 * In some cases an IME may be able to display an arbitrary label for
230 * typically used as the label for the action to use in-line as a replacement
297 * A label to show to the user describing the text they are writing.
299 public CharSequence label; field in class:EditorInfo
415 + " label=" + label);
439 TextUtils.writeToParcel(label, dest, flags);
467 res.label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 73 int label = 0; local
99 label = sa.getResourceId(com.android.internal.R.styleable.SpellChecker_label, 0);
137 mLabel = label;
209 * Load the user-displayed label for this spell checker.
  /frameworks/base/core/java/com/android/internal/app/
LocalePicker.java 61 String label; field in class:LocalePicker.LocaleInfo
64 public LocaleInfo(String label, Locale locale) {
65 this.label = label;
70 return label;
79 return this.label;
84 return sCollator.compare(this.label, another.label);
140 Log.v(TAG, "backing up and fixing " + previous.label + " to " +
143 previous.label = toTitleCase(getDisplayName
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DomainMatcher.java 16 private final Label mRoot;
18 private static class Label {
19 private final Map<String, Label> mSubDomains;
22 private Label(Match match) {
24 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
30 Label subLabel = new Label(Match.None);
34 mSubDomains.put(labelName, new Label(match));
38 private Label getSubLabel(String labelString) {
49 for (Map.Entry<String, Label> entry : mSubDomains.entrySet())
86 Label label = mRoot; local
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/location/
RecentLocationApps.java 154 // If badged label is not different from original then no need for it as
172 public final CharSequence label; field in class:RecentLocationApps.Request
177 CharSequence label, boolean isHighBattery, CharSequence contentDescription) {
181 this.label = label;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
MediaProjectionPermissionActivity.java 99 String label = aInfo.loadLabel(packageManager).toString(); local
101 // If the label contains new line characters it may push the security
105 final int labelLength = label.length();
108 final int codePoint = label.codePointAt(offset);
113 label = label.substring(0, offset) + ELLIPSIS;
119 if (label.isEmpty()) {
120 label = mPackageName;
123 String unsanitizedAppName = TextUtils.ellipsize(label,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTileBaseView.java 156 String label = getResources() local
158 event.setContentDescription(label);
170 String label = getResources() local
172 info.setText(label);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java 80 // Ignore the current state and get the generic label instead.
81 state.label = tile.getTileLabel();
124 private void addTile(String spec, Drawable drawable, CharSequence label, CharSequence appLabel,
127 state.label = label;
128 state.contentDescription = label;
170 CharSequence label = info.serviceInfo.loadLabel(pm); local
171 addTile(spec, icon, label != null ? label.toString() : "null", appLabel, mContext);
  /frameworks/base/services/tests/servicestests/src/android/net/apf/
Bpf2Apf.java 60 int label = Integer.parseInt(line.substring(1, 4)); local
61 gen.defineLabel(Integer.toString(label));
212 boolean true_label_is_fallthrough = Integer.parseInt(true_label) == label + 1;
213 boolean false_label_is_fallthrough = Integer.parseInt(false_label) == label + 1;
  /frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DpiTestActivity.java 153 TextView label = new TextView(this); local
154 label.setText(text);
155 root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 87 String label = labelSeq != null local
91 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
93 String[] labelPath = label.split("/");
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
MainActivity.java 109 String label = labelSeq != null local
113 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
115 String[] labelPath = label.split("/");
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawableTest.java 86 String label = labelSeq != null local
90 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
92 String[] labelPath = label.split("/");

Completed in 8658 milliseconds

<<11121314151617181920>>