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

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_CommonDataKinds_EmailTest.java 39 assertCustomTypeLabel("Custom Label");
46 String label = mResources.getString(res); local
47 assertEquals(label, Email.getTypeLabel(mResources, type, ""));
50 private void assertCustomTypeLabel(String label) {
53 assertEquals(label, Email.getTypeLabel(mResources, Email.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_OrganizationTest.java 41 assertCustomTypeLabel("Custom Label");
48 String label = mResources.getString(res); local
49 assertEquals(label, Organization.getTypeLabel(mResources, type, ""));
52 private void assertCustomTypeLabel(String label) {
55 assertEquals(label, Organization.getTypeLabel(mResources, Im.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_PhoneTest.java 55 assertCustomTypeLabel("Custom Label");
62 String label = mResources.getString(res); local
63 assertEquals(label, Phone.getTypeLabel(mResources, type, ""));
66 private void assertCustomTypeLabel(String label) {
69 assertEquals(label, Phone.getTypeLabel(mResources, Phone.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_RelationTest.java 49 assertCustomTypeLabel("Custom Label");
56 String label = mResources.getString(res); local
57 assertEquals(label, Relation.getTypeLabel(mResources, type, ""));
60 private void assertCustomTypeLabel(String label) {
63 assertEquals(label, Relation.getTypeLabel(mResources, Relation.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_SipAddressTest.java 38 assertCustomTypeLabel("Custom Label");
45 String label = mResources.getString(res); local
46 assertEquals(label, SipAddress.getTypeLabel(mResources, type, ""));
49 private void assertCustomTypeLabel(String label) {
52 assertEquals(label, SipAddress.getTypeLabel(mResources, SipAddress.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_StructuredPostalTest.java 38 assertCustomTypeLabel("Custom Label");
45 String label = mResources.getString(res); local
46 assertEquals(label, StructuredPostal.getTypeLabel(mResources, type, ""));
49 private void assertCustomTypeLabel(String label) {
52 assertEquals(label, StructuredPostal.getTypeLabel(mResources,
53 StructuredPostal.TYPE_CUSTOM, label));
Contacts_PhonesTest.java 25 CharSequence label = "label"; local
27 Phones.TYPE_CUSTOM, label).toString();
28 assertEquals(label, display);
33 Phones.TYPE_HOME, label).toString();
37 Phones.TYPE_MOBILE, label).toString();
41 Phones.TYPE_WORK, label).toString();
45 Phones.TYPE_FAX_WORK, label).toString();
49 Phones.TYPE_FAX_HOME, label).toString();
53 Phones.TYPE_PAGER, label).toString()
62 CharSequence label = "label"; local
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
IntListTest.java 31 assertTrue(label(sz, i), contains); method
33 assertFalse(label(sz, i), contains); method
36 assertFalse(label(sz, -1), list.contains(-1)); method
37 assertFalse(label(sz, sz * 2), list.contains(sz * 2)); method
61 private static String label(int n, int m) { method in class:IntListTest
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cProfile.py 100 func = label(entry.code)
111 func = label(entry.code)
155 def label(code): function
  /external/ImageMagick/coders/
label.c 75 % ReadLABELImage() reads a LABEL image file and returns it. It
99 *label;
131 (void) SetImageProperty(image,"label",property,exception);
133 label=GetImageProperty(image,"label",exception);
135 draw_info->text=ConstantString(label);
145 if ((strlen(label) > 0) &&
233 Draw label.
248 (void) SetImageProperty(image,"label:pointsize",pointsize,exception);
271 % RegisterLABELImage() adds properties for the LABEL image format t
97 *label; local
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapFrame.java 34 import org.objectweb.asm.Label;
53 * A <code>Label</code> for frame offset within method bytecode.
55 public Label label; field in class:StackMapFrame
69 public StackMapFrame(Label label, List locals, List stack) {
70 this.label = label;
77 sb.append(System.identityHashCode(label));
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
JumpInsnNode.java 32 import org.objectweb.asm.Label;
44 * The operand of this instruction. This operand is a label that designates
47 public Label label; field in class:JumpInsnNode
56 * @param label the operand of the instruction to be constructed. This
57 * operand is a label that designates the instruction to which the
60 public JumpInsnNode(final int opcode, final Label label) {
62 this.label = label;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Transition.java 32 * that the label is actually a set of labels or a semantic predicate.
34 * transitions) and has a label/target pair. I have abstracted the notion
35 * of a Label to handle the various kinds of things it can be.
38 /** What label must be consumed to transition to target */
39 public Label label; field in class:Transition
44 public Transition(Label label, State target) {
45 this.label = label;
    [all...]
  /external/autotest/cli/
label.py 5 The label module contains the objects and methods used to
9 add: adds label(s), or hosts to an LABEL
10 remove: deletes label(s), or hosts from an LABEL
11 list: lists label(s)
23 class label(topic_common.atest): class in inherits:topic_common.atest
24 """Label class
25 atest label [create|delete|list|add|remove] <options>"""
27 topic = msg_topic = 'label'
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Run.java 38 private String label; field in class:Run
43 this.label = "";
49 this.label = builder.label;
57 public String label() { method in class:Run
58 return label;
71 && this.label.equals(that.label)
79 return Objects.hashCode(id, label, startTime);
85 .add("label", label
92 private String label = ""; field in class:Run.Builder
99 public Builder label(String label) { method in class:Run.Builder
    [all...]
  /external/e2fsprogs/misc/
e2label.c 2 * e2label.c - Print or change the volume label on an ext2 fs
81 char label[VOLNAMSZ+1]; local
84 strncpy(label, sb.s_volume_name, VOLNAMSZ);
85 label[VOLNAMSZ] = 0;
86 printf("%s\n", label);
89 static void change_label (char *dev, char *label)
95 strncpy(sb.s_volume_name, label, VOLNAMSZ);
96 if (strlen(label) > VOLNAMSZ)
97 fprintf(stderr, _("Warning: label too long, truncating.\n"));
  /external/fio/
gerror.c 63 GtkWidget *dialog, *content, *label; local
70 label = gtk_label_new(message);
71 gtk_container_add(GTK_CONTAINER(content), label); local
  /external/google-benchmark/src/
csv_reporter.cc 36 "time_unit", "bytes_per_second", "items_per_second", "label",
131 std::string label = run.report_label; local
132 ReplaceAll(&label, "\"", "\"\"");
133 Out << "\"" << label << "\""; local
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
MethodItem.java 29 private final String label; field in class:MethodItem
33 MethodItem(final IMethodCoverage node, final String label,
36 this.label = label;
41 return label;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
LinkableStub.java 22 private final String label; field in class:LinkableStub
25 public LinkableStub(String link, String label, String style) {
27 this.label = label;
36 return label;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
LabeledStmt.java 33 private String label; field in class:LabeledStmt
40 public LabeledStmt(final String label, final Statement stmt) {
41 setLabel(label);
45 public LabeledStmt(Range range, final String label, final Statement stmt) {
47 setLabel(label);
60 return label;
67 public LabeledStmt setLabel(final String label) {
68 this.label = label;
SwitchEntryStmt.java 39 private Expression label; field in class:SwitchEntryStmt
46 public SwitchEntryStmt(final Expression label, final List<Statement> stmts) {
47 setLabel(label);
51 public SwitchEntryStmt(Range range, final Expression label,
54 setLabel(label);
69 return label;
78 public SwitchEntryStmt setLabel(final Expression label) {
79 this.label = label;
80 setAsParentNodeOf(this.label);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
LabeledStmt.java 32 private String label; field in class:LabeledStmt
39 public LabeledStmt(final String label, final Statement stmt) {
40 setLabel(label);
45 final String label, final Statement stmt) {
47 setLabel(label);
60 return label;
67 public void setLabel(final String label) {
68 this.label = label;
SwitchEntryStmt.java 35 private Expression label; field in class:SwitchEntryStmt
42 public SwitchEntryStmt(final Expression label, final List<Statement> stmts) {
43 setLabel(label);
48 final int endLine, final int endColumn, final Expression label,
51 setLabel(label);
66 return label;
73 public void setLabel(final Expression label) {
74 this.label = label;
75 setAsParentNodeOf(this.label);
    [all...]
  /external/libcxx/utils/google-benchmark/src/
csv_reporter.cc 36 "time_unit", "bytes_per_second", "items_per_second", "label",
131 std::string label = run.report_label; local
132 ReplaceAll(&label, "\"", "\"\"");
133 Out << "\"" << label << "\""; local

Completed in 2246 milliseconds

1 23 4 5 6 7 8 91011>>