HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 51 - 75 of 622) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/views/
SkWidgetViews.cpp 107 void SkWidgetView::getLabel(SkString* label) const
109 if (label)
110 *label = fLabel;
113 void SkWidgetView::setLabel(const char label[])
115 this->setLabel(label, label ? strlen(label) : 0);
118 void SkWidgetView::setLabel(const char label[], size_t len)
120 if (label == NULL && fLabel.size() != 0 || !fLabel.equals(label, len)
159 const char* label = dom.findAttr(node, "label"); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
SeparatorAttributeDescriptor.java 33 public SeparatorAttributeDescriptor(String label) {
34 super(label /* xmlLocalName */, null /* nsUri */);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 57 TextView label = new TextView(this); local
58 label.setText(R.string.table_layout_8_quit);
59 label.setPadding(3, 3, 3, 3);
66 row.addView(label, new TableRow.LayoutParams(1));
  /external/openssl/crypto/bn/asm/x86/
add.pl 26 &jz(&label("aw_finish"));
48 &jnz(&label("aw_loop"));
53 &jz(&label("aw_end"));
67 &jz(&label("aw_end")) if ($i != 6);
sqr.pl 20 &jz(&label("sw_finish"));
37 &jnz(&label("sw_loop"));
42 &jz(&label("sw_end"));
53 &jz(&label("sw_end")) if ($i != 7-1);
sub.pl 26 &jz(&label("aw_finish"));
48 &jnz(&label("aw_loop"));
53 &jz(&label("aw_end"));
67 &jz(&label("aw_end")) if ($i != 6);
  /external/srec/srec/include/
ann_util.h 47 char* label);
58 void annotation_decorate_labels(annotate_info* hAnnotation, char *label);
62 char *label,
83 utterance_info *beep_utt, preprocessed *prep, char *label);
hmmlib.h 34 int get_prons(const vocab_info* voc, const char* label, char* prons, int prons_len);
  /external/webkit/WebCore/html/
HTMLDataGridCellElement.h 42 String label() const;
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.h 54 PopupItem(const String& label, Type type)
55 : label(label)
60 String label; member in struct:WebCore::PopupItem
  /frameworks/base/core/java/android/util/
TimingLogger.java 52 /** A label to be included in every log. */
70 * @param label a string to be displayed with each log
72 public TimingLogger(String tag, String label) {
73 reset(tag, label);
82 * @param label a string to be displayed with each log
84 public void reset(String tag, String label) {
86 mLabel = label;
92 * the tag and label that was specified previously, either via
93 * the constructor or a call to reset(tag, label). If the
116 * @param splitLabel a label to associate with this split
    [all...]
  /frameworks/base/core/java/android/content/pm/
ComponentInfo.java 83 CharSequence label; local
85 label = pm.getText(packageName, labelRes, ai);
86 if (label != null) {
87 return label;
94 label = pm.getText(packageName, ai.labelRes, ai);
95 if (label != null) {
96 return label;
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 39 /** label offset for the parameter assignment block */
42 /** label offset for the return block */
45 /** label offset for the synchronized method final return block */
48 /** label offset for the first synchronized method setup block */
51 /** label offset for the second synchronized method setup block */
55 * label offset for the first synchronized method exception
61 * label offset for the second synchronized method exception
66 /** number of special label offsets */
78 /** max label (exclusive) of any original bytecode block */
104 * {@code non-null;} for each block (by label) that is used as an exceptio
379 int label = bb.getLabel(); local
582 int label = successors.get(i); local
906 int label = getAvailableLabel(); local
1035 int label = synch ? getSpecialLabel(SYNCH_SETUP_1) : 0; local
1101 int label = getSpecialLabel(RETURN); local
1285 int label = reachableSubroutineCallerLabels.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiPropertySheetPage.java 26 import org.eclipse.swt.widgets.Label;
70 Label label = null;
82 label = null;
89 label = null;
116 label = new Label(tip, SWT.NONE);
117 label.setForeground(display.getSystemColor(SWT.COLOR_INFO_FOREGROUND));
118 label.setBackground(display.getSystemColor(SWT.COLOR_INFO_BACKGROUND));
119 label.setData("_TABLEITEM", item)
    [all...]
  /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
  /frameworks/base/core/java/android/gesture/
Instance.java 21 * An instance represents a sample if the label is available or a query if the
22 * label is null.
38 // the label can be null
39 final String label; field in class:Instance
47 label = sampleName;
69 * @param label
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) {
77 instance = new Instance(gesture.getID(), pts, label);
81 instance = new Instance(gesture.getID(), pts, label);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 30 import org.eclipse.swt.widgets.Label;
57 * methods for creating typically UI (label and text, form text.)
109 * Creates a label widget.
114 * @param label The string for the label.
115 * @param tooltip An optional tooltip for the label and text. Can be null.
116 * @return The new created label
118 public Label createLabel(Composite parent, FormToolkit toolkit, String label,
120 return SectionHelper.createLabel(parent, toolkit, label, tooltip)
243 Label label = toolkit.createLabel(parent, label_text); local
264 Label label = toolkit.createLabel(parent, label_text); local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 79 LabelWidget label = new LabelWidget(this); local
80 label.setFont(getDefaultFont().deriveFont(Font.PLAIN, 12.0f));
81 label.setLabel(shortName);
82 label.setBorder(BorderFactory.createEmptyBorder(6, 6, 0, 6));
83 label.setAlignment(LabelWidget.Alignment.CENTER);
85 box.addChild(label);
87 label = new LabelWidget(this);
88 label.setFont(getDefaultFont().deriveFont(Font.PLAIN, 10.0f));
89 label.setLabel(getAddress(nodeName));
90 label.setBorder(BorderFactory.createEmptyBorder(3, 6, 0, 6))
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
AboutDialog.java 33 import org.eclipse.swt.widgets.Label;
112 Label label; local
117 Label logo = new Label(shell, SWT.BORDER);
126 label = new Label(textArea, SWT.NONE);
128 label.setText("Dalvik Debug Monitor Revision " + Main.sRevision);
130 label.setText("Dalvik Debug Monitor");
132 label = new Label(textArea, SWT.NONE)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
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...]
  /external/webkit/WebKitTools/Scripts/
commit-log-editor 201 my $label = dirname($changeLog);
202 $label = "top level" unless length $label;
204 my $sortKey = lc $label;
205 if ($label eq "top level") {
207 } elsif ($label eq "Tools") {
209 } elsif ($label eq "WebBrowser") {
211 } elsif ($label eq "WebCore") {
213 } elsif ($label eq "LayoutTests") {
217 $changeLogSort{$sortKey} = $label;
    [all...]
  /external/srec/srec/ca/
ann_api.c 57 hAnnotation->label = NULL;
100 if (hAnnotation->label)
101 VAR_FREE(hAnnotation->label, "annotation_label");
102 hAnnotation->label = NULL;
130 annotation_decorate_labels(hAnnotation->data, hAnnotation->label);
201 void CA_SetAnnotationLabel(CA_Annotation *hAnnotation, char *label)
206 ASSERT(label);
208 if ((strchr(label, '<') || (strchr(label, '>'))))
210 if (hAnnotation->label)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RopMethod.java 30 /** {@code >= 0;} label for the block which starts the method */
35 * label
49 * @param firstLabel {@code >= 0;} the label of the first block to execute
77 * Gets the label for the first block in the method that this list
80 * @return {@code >= 0;} the first-block label
88 * an exception if there is no block with the given label.
90 * @param label {@code >= 0;} the label of the block in question
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
163 int label = one.getLabel(); local
    [all...]
  /external/webkit/JavaScriptCore/assembler/
AbstractMacroAssembler.h 210 // linked to a label marking its destination.
213 // Label:
215 // A Label records a point in the generated instruction stream, typically such that
217 class Label {
225 Label()
229 Label(AbstractMacroAssembler<AssemblerType>* masm)
230 : m_label(masm->m_assembler.label())
254 : m_label(masm->m_assembler.label())
276 : m_label(masm->m_assembler.label())
351 masm->m_assembler.linkJump(m_jmp, masm->m_assembler.label());
423 Label label() function in class:JSC::AbstractMacroAssembler
    [all...]
  /external/v8/src/
regexp-macro-assembler-tracer.cc 50 void RegExpMacroAssemblerTracer::Bind(Label* label) {
51 PrintF("label[%08x]: (Bind)\n", label, label);
52 assembler_->Bind(label);
62 void RegExpMacroAssemblerTracer::CheckGreedyLoop(Label* label) {
63 PrintF(" CheckGreedyLoop(label[%08x]);\n\n", label);
    [all...]

Completed in 789 milliseconds

1 23 4 5 6 7 8 91011>>