Searched defs:label (Results 251 - 275 of 787) sorted by relevance

<<11121314151617181920>>

/external/devlib/devlib/instrument/
H A D__init__.py174 headings = [chan.label for chan in self.channels]
229 def label(self): member in class:InstrumentChannel
234 name = label
257 if self.name == self.label:
258 return 'CHAN({})'.format(self.label)
260 return 'CHAN({}, {})'.format(self.name, self.label)
288 self.channels[chan.label] = chan
301 self.active_channels = sorted(self.channels.values(), key=lambda x: x.label)
/external/doclava/src/com/google/doclava/
H A DNavTree.java143 data.setValue("docs.pages." + i + ".label", pkg.name());
166 data.setValue(base + ".label", cl.name());
198 private static void addClassNodes(List<Node> parent, String label, ClassInfo[] classes) { argument
208 parent.add(new Node(label, null, children, null));
219 Node(String label, String link, List<Node> children, String since) { argument
220 this(label, link, children, since, null);
223 Node(String label, String link, List<Node> children, String since, String artifact) { argument
224 mLabel = label;
/external/dtc/
H A Ddtc.h133 struct label { struct
135 char *label; member in struct:label
136 struct label *next;
150 struct label *labels;
168 struct label *labels;
193 void add_label(struct label **labels, char *label);
194 void delete_labels(struct label **labels);
220 struct property *get_property_by_label(struct node *tree, const char *label,
222 struct marker *get_marker_label(struct node *tree, const char *label,
[all...]
/external/dtc/libfdt/
H A Dfdt_overlay.c337 * @label: Label of the node referenced by the phandle
354 int poffset, const char *label)
365 symbol_path = fdt_getprop(fdt, symbols_off, label,
414 const char *label; local
418 &label, &len);
467 poffset, label);
350 overlay_fixup_one_phandle(void *fdt, void *fdto, int symbols_off, const char *path, uint32_t path_len, const char *name, uint32_t name_len, int poffset, const char *label) argument
/external/e2fsprogs/misc/
H A Dblkid.c147 const char *label, const char *mtpt,
174 len = pretty_print_word(label, label_len, len, 0);
184 const char *uuid = "", *fs_type = "", *label = ""; local
190 pretty_print_line("device", "fs_type", "label",
202 /* Get the uuid, label, type */
210 label = value;
228 pretty_print_line(devname, fs_type, label, mtpt, uuid);
146 pretty_print_line(const char *device, const char *fs_type, const char *label, const char *mtpt, const char *uuid) argument
/external/e2fsprogs/resize/
H A Dmain.c60 const char *label; local
72 label = _("Extending the inode table");
75 label = _("Relocating blocks");
78 label = _("Scanning inode table");
81 label = _("Updating inode references");
84 label = _("Moving inode table");
87 label = _("Unknown pass?!?");
91 retval = ext2fs_progress_init(&progress, label, 30,
/external/fio/
H A Dghelpers.c8 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label) argument
12 frame = gtk_frame_new(label);
20 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label) argument
24 frame = gtk_frame_new(label);
46 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label, argument
52 entry = new_info_entry_in_frame(box, label);
58 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label) argument
63 frame = gtk_frame_new(label);
/external/gemmlowp/profiling/
H A Dinstrumentation.h119 void Push(const char* label) { argument
122 labels[size] = label;
201 // samples will then be annotated with this label, while it is in scope
208 explicit ScopedProfilingLabel(const char* label) argument
210 profiling_stack_->Push(label);
H A Dprofiler.h78 ScopedProfilingLabel label("Bar");
83 ScopedProfilingLabel label("Foo");
107 0.00% other (outside of any label)
160 const char* label; member in struct:gemmlowp::ProfileTreeView::Node
162 Node() : label(nullptr), weight(0) {}
181 printf("%.2f%% %s\n", 100.0f * node->weight / root_.weight, node->label);
196 if (child->label == stack.labels[level]) {
203 child_to_add_to->label = stack.labels[level];
222 other_child->label =
223 node == &root_ ? "other (outside of any label)"
[all...]
/external/google-benchmark/test/
H A Dregister_benchmark_test.cc23 const char* label; member in struct:__anon7376::TestCase
27 : name(xname), label(xlabel) {}
34 if (label) {
35 CHECK(run.report_label == label) << "expected " << label << " got "
79 void BM_extra_args(benchmark::State& st, const char* label) { argument
82 st.SetLabel(label);
/external/google-breakpad/src/common/dwarf/
H A Dcfi_assembler.h134 // or Here to make a label to pass to FDEHeader that refers to this
160 // defines the label representing the entry's length, cited in the
202 CFISection &Mark(Label *label) { Section::Mark(label); return *this; } argument
215 // known. LENGTH is the appended value; START is a label referring
/external/google-breakpad/src/common/
H A Dtest_assembler.cc49 Label::Label(const Label &label) { argument
50 value_ = label.value_;
62 Label &Label::operator=(const Label &label) { argument
63 value_->Set(label.value_, 0);
92 uint64_t Label::operator-(const Label &label) const {
94 ALWAYS_EVALUATE_AND_ASSERT(IsKnownOffsetFrom(label, &offset));
113 bool Label::IsKnownOffsetFrom(const Label &label, uint64_t *offset_p) const argument
117 label.value_->Get(&label_base, &label_addend);
119 // If this and label are related, Get will find their final
228 const Label &label) {
227 Append(Endianness endianness, size_t size, const Label &label) argument
[all...]
H A Dtest_assembler.h78 // A label can be in one of three states:
80 // - defined as the sum of some other label and a constant, or
83 // A label's value never changes, but it can accumulate constraints.
84 // Adding labels and integers is permitted, and yields a label.
85 // Subtracting a constant from a label is permitted, and also yields a
86 // label. Subtracting two labels that have some relationship to each
112 Label(); // An undefined label.
113 Label(uint64_t value); // A label with a fixed value
114 Label(const Label &value); // A label equal to another.
117 // Return this label'
439 Mark(Label *label) argument
465 Label label; member in struct:google_breakpad::test_assembler::Section::Reference
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUTS46.java26 // where the last ("root") label is the empty label
29 // if there is a trailing dot for the root label.
42 public StringBuilder labelToASCII(CharSequence label, StringBuilder dest, Info info) { argument
43 return process(label, true, true, dest, info);
47 public StringBuilder labelToUnicode(CharSequence label, StringBuilder dest, Info info) { argument
48 return process(label, true, false, dest, info);
168 // label starts with "-"
172 // label ends with "-"
241 // Permit an empty label a
306 replaceLabel(StringBuilder dest, int destLabelStart, int destLabelLength, CharSequence label, int labelLength) argument
548 checkLabelBiDi(CharSequence label, int labelStart, int labelLength, Info info) argument
669 isLabelOkContextJ(CharSequence label, int labelStart, int labelLength) argument
740 checkLabelContextO(CharSequence label, int labelStart, int labelLength, Info info) argument
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
H A DCalendarFrame.java128 // plus the month/year label for each calendar
358 public ColoredLabel(String label) { argument
359 text = label;
362 public ColoredLabel(String label, Color c) { argument
363 text = label;
367 public void setText(String label) { argument
368 text = label;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUTS46.java25 // where the last ("root") label is the empty label
28 // if there is a trailing dot for the root label.
41 public StringBuilder labelToASCII(CharSequence label, StringBuilder dest, Info info) { argument
42 return process(label, true, true, dest, info);
46 public StringBuilder labelToUnicode(CharSequence label, StringBuilder dest, Info info) { argument
47 return process(label, true, false, dest, info);
167 // label starts with "-"
171 // label ends with "-"
240 // Permit an empty label a
305 replaceLabel(StringBuilder dest, int destLabelStart, int destLabelLength, CharSequence label, int labelLength) argument
547 checkLabelBiDi(CharSequence label, int labelStart, int labelLength, Info info) argument
668 isLabelOkContextJ(CharSequence label, int labelStart, int labelLength) argument
739 checkLabelContextO(CharSequence label, int labelStart, int labelLength, Info info) argument
[all...]
/external/iproute2/ip/
H A Diplink_vxlan.c190 } else if (!matches(*argv, "label") ||
541 __u32 label = rta_getattr_u32(tb[IFLA_VXLAN_LABEL]); local
543 if (label)
545 "label",
547 ntohl(label));
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DLabelFlowAnalyzer.java82 public void visitJumpInsn(final int opcode, final Label label) { argument
83 LabelInfo.setTarget(label);
92 public void visitLabel(final Label label) { argument
94 LabelInfo.setTarget(label);
97 LabelInfo.setSuccessor(label);
129 private static void setTargetIfNotDone(final Label label) { argument
130 if (!LabelInfo.isDone(label)) {
131 LabelInfo.setTarget(label);
132 LabelInfo.setDone(label);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DDuplicateFrameEliminator.java88 public void visitJumpInsn(final int opcode, final Label label) { argument
90 mv.visitJumpInsn(opcode, label);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
H A DClassProbesAdapterTest.java34 public void visitJumpInsnWithProbe(int opcode, Label label, argument
H A DMethodProbesAdapterTest.java33 private Label label; field in class:MethodProbesAdapterTest
66 public void visitJumpInsnWithProbe(int opcode, Label label, argument
68 rec("visitJumpInsnWithProbe", Integer.valueOf(opcode), label,
96 label = new Label();
122 LabelInfo.setTarget(label);
123 LabelInfo.setSuccessor(label);
125 adapter.visitLabel(label);
128 expectedVisitor.visitLabel(label);
133 LabelInfo.setTarget(label);
134 LabelInfo.setTarget(label);
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dgpio.h20 * @label: a functional name for this GPIO chip, such as a product
26 char label[32]; member in struct:gpiochip_info
80 * @consumer_label: a desired consumer label for the selected GPIO line(s)
123 * @consumer_label: a desired consumer label for the selected GPIO line(s)
/external/libcxx/utils/google-benchmark/test/
H A Dregister_benchmark_test.cc23 const char* label; member in struct:__anon11203::TestCase
27 : name(xname), label(xlabel) {}
34 if (label) {
35 CHECK(run.report_label == label) << "expected " << label << " got "
79 void BM_extra_args(benchmark::State& st, const char* label) { argument
82 st.SetLabel(label);
/external/libnetfilter_conntrack/src/conntrack/
H A Dlabels.c100 static char *trim_label(char *label) argument
104 while (is_space_posix(*label))
105 label++;
106 end = strchr(label, '\n');
110 end = strchr(label, '\0');
113 while (end > label && is_space_posix(*end)) {
118 return *label ? label : NULL;
190 * parses might choke on output when label named
196 static bool label_is_sane(const char *label) argument
220 char label[1024]; local
[all...]
/external/libtextclassifier/
H A Dfeature-processor_test.cc315 int label; local
316 ASSERT_TRUE(feature_processor.SpanToLabel({5, 8}, tokens, &label));
317 EXPECT_EQ(kInvalidLabel, label);
318 ASSERT_TRUE(feature_processor.SpanToLabel({5, 9}, tokens, &label));
319 EXPECT_NE(kInvalidLabel, label);
321 feature_processor.LabelToTokenSpan(label, &token_span);
334 EXPECT_EQ(label, label2);
336 EXPECT_EQ(label, label2);
338 EXPECT_EQ(label, label2);
390 int label; local
[all...]

Completed in 546 milliseconds

<<11121314151617181920>>