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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
dlg.h 74 set label; /* one arc always labelled with epsilon */ variable
107 set label; member in struct:__anon5357
112 (attr)->r = NULL; (attr)->label = empty; \
114 #define zzd_attr(a) set_free((a)->label);
123 extern set used_chars; /* used to label trans. arcs */
124 extern set used_classes; /* classes or chars used to label trans. arcs */
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_name.c 168 * Enforces label and domain length limits.
173 u_char *label, *bp, *eom; local
180 label = bp++;
209 c = ((int)(bp - label) - 1);
210 if ((c & NS_CMPRSFLGS) != 0) { /* Label too big. */
214 if (label >= eom) {
218 *label = (u_char)c;
238 label = bp++;
247 c = ((int)(bp - label) - 1);
248 if ((c & NS_CMPRSFLGS) != 0) { /* Label too big. */
    [all...]
  /external/adhd/cras/src/server/
cras_dsp_ini.h 48 const char *label; /* label like "Eq" */ member in struct:plugin
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAState.java 50 /** For o-A->o type NFA tranitions, record the label that leads to this
54 public Label incidentEdgeLabel;
127 // knows about the label of the incoming edge.
128 Label label = e.label; local
129 if ( label.isAtom() || label.isSet() ) {
133 ((NFAState)e.target).incidentEdgeLabel = e.label;
  /external/autotest/client/cros/multimedia/
facade_resource.py 42 label='Start Chrome') variable in class:FacadeResoureError
  /external/autotest/frontend/client/src/autotest/common/ui/
Paginator.java 11 import com.google.gwt.user.client.ui.Label;
24 protected Label label; field in class:Paginator.LinkWithDisable
28 label = new Label(text);
31 panel.add(label);
33 label.setStyleName("paginator-link");
40 label.setVisible(!enabled);
55 protected Label statusLabel = new Label();
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
ParameterizedFieldListDisplay.java 13 import com.google.gwt.user.client.ui.Label;
20 private String label; field in class:ParameterizedFieldListDisplay.FieldWidget
23 public FieldWidget(String label) {
24 this.label = label;
28 return label;
44 addFieldPanel.add(new Label("Add custom field:"));
  /external/boringssl/src/fipstools/
cavp_aes_test.cc 165 const std::string label = local
167 printf("%s%s = %s\r\n\r\n", t->CurrentTestToString().c_str(), label.c_str(),
  /external/boringssl/src/ssl/
ssl_transcript.cc 377 auto label = from_server local
390 label, MakeConstSpan(digests, digests_len), {})) {
  /external/devlib/devlib/instrument/
__init__.py 174 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/
Proofread.java 94 String label = see.label(); local
95 if (label == null) {
96 label = "";
98 writeIndented("{" + see.name() + " ... " + label + "}");
  /external/gemmlowp/profiling/
profiler.h 78 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)" : "other"
    [all...]
  /external/google-benchmark/test/
register_benchmark_test.cc 23 const char* label; member in struct:__anon20727::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) {
82 st.SetLabel(label);
  /external/google-breakpad/src/common/
test_assembler.h 73 // A Label represents a value not yet known that we need to store in a
78 // 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
91 // Label a; // a's value is undefined
92 // Label b; // b's value is undefined
94 // Label c = a + 4; // okay, even though a's value is unknow
465 Label label; member in struct:google_breakpad::test_assembler::Section::Reference
    [all...]
  /external/iproute2/ip/
ip_common.h 17 char *label; member in struct:link_filter
iplink_vxlan.c 34 " [ flowlabel LABEL ]\n"
55 " LABEL := 0-1048575\n"
190 } 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.report.test/src/org/jacoco/report/internal/html/page/
ReportPageTest.java 38 private final String label; field in class:ReportPageTest.TestReportPage
41 protected TestReportPage(String label, String style, ReportPage parent) {
43 this.label = label;
54 return label + ".html";
58 return label;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
SwitchEntryStmt.java 56 * <br/>The first one has label 1 and no statements.
57 * <br/>The second has label 2 and two statements (the println and the break).
58 * <br/>The third, the default, has no label and one statement.
66 private Expression label; field in class:SwitchEntryStmt
75 public SwitchEntryStmt(final Expression label, final NodeList<Statement> statements) {
76 this(null, label, statements);
83 public SwitchEntryStmt(TokenRange tokenRange, Expression label, NodeList<Statement> statements) {
85 setLabel(label);
104 return Optional.ofNullable(label);
113 * Sets the label
    [all...]
  /external/libcxx/utils/google-benchmark/test/
register_benchmark_test.cc 23 const char* label; member in struct:__anon24554::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) {
82 st.SetLabel(label);
  /external/libmojo/base/android/java/src/org/chromium/base/
BuildInfo.java 119 CharSequence label = packageManager.getApplicationLabel(appInfo); local
120 return label != null ? label.toString() : "";
  /external/libnetfilter_conntrack/src/conntrack/
labels.c 100 static char *trim_label(char *label)
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)
220 char label[1024]; local
    [all...]
  /external/libnl/python/netlink/route/
address.py 129 def label(self): member in class:Address
130 """address label"""
133 @label.setter
134 def label(self, value): member in class:Address
346 if self.label:
347 buf += fmt.format(' "{a|label}"')
  /external/llvm/examples/BrainF/
BrainF.h 62 /// label is used for the labels for the BasicBlocks.
66 static const char *label; member in class:BrainF
  /external/mdnsresponder/mDNSWindows/ControlPanel/
RegistrationPage.cpp 360 char label[ 64 ]; local
363 domainUTF8 = GetNextLabel( hostnameUTF8, label );
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_gs_visitor.cpp 830 const char *label = local
    [all...]

Completed in 596 milliseconds

1 2 3 4 5 6 7 8 91011>>