HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/blktrace/btt/doc/
btt.tex 30 \section{\label{sec:intro}Introduction}
66 \newpage\section{\label{sec:getting-started}Getting Started}
102 \newpage\section{\label{sec:output-overview}Output Overview}
105 include\label{tl-defs}:
347 \subsection*{\label{sec:detailed-data}Detailed Data}
426 \newpage\section{\label{sec:data-files}Data Files Output}
476 \newpage\section{\label{sec:activity}Activity Data File}
544 \caption{\label{fig:activity}Simple Activity Chart}
552 \newpage\section{\label{sec:hist}Histogram Data Files}
567 \subsection*{\label{sec:qhist}Q Histogram Data File
    [all...]
  /build/tools/droiddoc/src/
Sorter.java 19 public String label; field in class:Sorter
24 label = l;
30 return label.compareToIgnoreCase(((Sorter)other).label);
KeywordEntry.java 22 KeywordEntry(String label, String href, String comment)
24 this.label = label;
31 data.setValue(base + ".label", this.label);
38 return Character.toUpperCase(this.label.charAt(0));
43 return this.label.compareToIgnoreCase(((KeywordEntry)that).label);
46 private String label; field in class:KeywordEntry
SeeTagInfo.java 43 public String label() method in class:SeeTagInfo
45 return linkReference().label;
60 data.setValue(base + ".label", linkRef.label);
  /external/blktrace/doc/
blktrace.tex 29 \section{\label{sec:intro}Introduction}
57 \newpage\section{\label{sec:quick-start}Quick Start Guide}
63 \subsection{\label{sec:get-blktrace}Retrieving blktrace}
73 \subsection{\label{sec:patching}Patching and configuring the Linux kernel}
107 \subsection{\label{sec:mount}Mounting the debugfs file system}
127 \subsection{\label{sec:build}Build the tools}
136 \subsection{\label{sec:live-blktrace}blktrace -- live}
197 \subsection{\label{sec:pc-blktrace}blktrace -- SCSI commands}
220 \subsection{\label{sec:blktrace-post}blktrace -- post-processing}
239 Filesystem label
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_OrganizationsTest.java 31 notes = "Test getDisplayLabel(Context context, int type, CharSequence label",
36 String label = "label"; local
38 Organizations.TYPE_CUSTOM, label).toString();
39 assertEquals(label, display);
44 Organizations.TYPE_OTHER, label).toString();
48 Organizations.TYPE_WORK, label).toString();
Contacts_ContactMethodsTest.java 90 notes = "Test getDisplayLabel(Context context, int kind, int type, CharSequence label)",
95 String label = "label"; local
97 ContactMethods.TYPE_CUSTOM, label).toString();
98 assertEquals(label, display);
103 ContactMethods.TYPE_HOME, label).toString();
107 ContactMethods.TYPE_OTHER, label).toString();
111 ContactMethods.TYPE_WORK, label).toString();
116 ContactMethods.TYPE_CUSTOM, label).toString();
120 ContactMethods.TYPE_CUSTOM, label).toString()
    [all...]
Contacts_PhonesTest.java 31 notes = "Test getDisplayLabel(Context context, int type, CharSequence label)",
36 CharSequence label = "label"; local
38 Phones.TYPE_CUSTOM, label).toString();
39 assertEquals(label, display);
44 Phones.TYPE_HOME, label).toString();
48 Phones.TYPE_MOBILE, label).toString();
52 Phones.TYPE_WORK, label).toString();
56 Phones.TYPE_FAX_WORK, label).toString();
60 Phones.TYPE_FAX_HOME, label).toString()
80 CharSequence label = "label"; local
    [all...]
  /cts/tools/dasm/src/java_cup/
production_part.java 4 * production. In this base class it contains only an optional label
29 /** Optional label for referring to the part within an action (null for
30 * no label).
34 /** Optional label for referring to the part within an action (null for
35 * no label).
37 public String label() {return _label;} method in class:production_part
56 if (label() != null)
57 return label().equals(other.label());
59 return other.label() == null
    [all...]
  /external/webkit/WebCore/bindings/js/
JSInspectorFrontendHostCustom.cpp 64 JSValue label = item->get(execState, Identifier(execState, "label")); local
66 if (label.isUndefined() || id.isUndefined())
70 items.append(new ContextMenuItem(ActionType, typedId, label.toString(execState)));
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 69 String label = dateSorter.getLabel(i); local
70 assertNotNull(label);
71 assertTrue(label.length() > 0);
72 // label must be unique
73 assertFalse(set.contains(label));
74 set.add(label);
75 // cannot assert actual label contents, since resources are not public
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiSeparatorAttributeNode.java 26 import org.eclipse.swt.widgets.Label;
87 Label sep = toolkit.createSeparator(row, SWT.HORIZONTAL);
92 Label label = toolkit.createLabel(row, getDescriptor().getXmlLocalName()); local
93 label.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false));
  /dalvik/dx/src/com/android/dx/util/_tests/
_IntList.java 39 assertTrue(label(sz, i), contains); method
41 assertFalse(label(sz, i), contains); method
44 assertFalse(label(sz, -1), list.contains(-1)); method
45 assertFalse(label(sz, sz * 2), list.contains(sz * 2)); method
69 private static String label(int n, int m) { method in class:_IntList
  /development/simulator/app/
PhoneButton.cpp 25 bool PhoneButton::Create(const char* label)
29 mKeyCode = LookupKeyCode(label);
31 fprintf(stderr, "WARNING: key code '%s' not recognized\n", label);
41 bool PhoneButton::Create(const char* label, const char* imageFileName,
44 if (!Create(label))
132 * Returns kKeyCodeUnknown if the label doesn't match anything.
134 KeyCode PhoneButton::LookupKeyCode(const char* label) const
137 const char* label; member in struct:__anon789
174 if (strcmp(label, codeList[i].label) == 0
    [all...]
  /external/e2fsprogs/misc/
e2label.c 2 * e2label.c - Print or change the volume label on an ext2 fs
80 char label[VOLNAMSZ+1]; local
83 strncpy(label, sb.s_volume_name, VOLNAMSZ);
84 label[VOLNAMSZ] = 0;
85 printf("%s\n", label);
88 static void change_label (char *dev, char *label)
94 strncpy(sb.s_volume_name, label, VOLNAMSZ);
95 if (strlen(label) > VOLNAMSZ)
96 fprintf(stderr, _("Warning: label too long, truncating.\n"));
  /external/webkit/WebCore/dom/
OptionElement.h 64 String label() const { return m_label; } function in class:WebCore::OptionElementData
65 void setLabel(const String& label) { m_label = label; }
  /external/webkit/WebCore/html/
HTMLDataGridCellElement.cpp 44 String HTMLDataGridCellElement::label() const function in class:WebCore::HTMLDataGridCellElement
49 void HTMLDataGridCellElement::setLabel(const String& label)
51 setAttribute(labelAttr, label);
  /external/webkit/WebCore/rendering/style/
StyleDashboardRegion.h 37 String label; member in struct:WebCore::StyleDashboardRegion
49 return type == o.type && offset == o.offset && label == o.label;
  /external/webkit/WebCore/wml/
WMLDoElement.cpp 182 String WMLDoElement::label() const function in class:WebCore::WMLDoElement
  /external/webkit/WebKit/chromium/public/
WebMenuItemInfo.h 47 WebString label; member in struct:WebKit::WebMenuItemInfo
  /frameworks/base/core/java/android/content/pm/
PermissionGroupInfo.java 58 * @param pm A PackageManager from which the label can be loaded; usually
69 CharSequence label = pm.getText(packageName, descriptionRes, null); local
70 if (label != null) {
71 return label;
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtons.java 64 String label = getItem(position); local
67 button.setText(label);
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 24 public String label; field in class:SpinnerOption
36 public SpinnerOption(Object value, String label) {
38 this.label = label;
43 return label;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
GetPropReceiver.java 56 String label = m.group(1); local
59 if (label.length() > 0) {
60 mDevice.addProperty(label, value);
  /system/core/libpixelflinger/codeflinger/
ARMAssembler.h 79 virtual void label(const char* theLabel);
80 virtual void B(int cc, const char* label);
81 virtual void BL(int cc, const char* label);
83 virtual uint32_t* pcForLabel(const char* label);
141 inline branch_target_t() : label(0), pc(0) { }
143 : label(l), pc(p) { }
144 const char* label; member in struct:android::ARMAssembler::branch_target_t

Completed in 941 milliseconds

1 2 3 4 5 6 7 8 91011