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

<<11121314151617181920>>

  /external/python/cpython2/Include/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon32582
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
79 char *PyGrammar_LabelRepr(label *lb);
  /external/python/cpython3/Include/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon33146
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
80 const char *PyGrammar_LabelRepr(label *lb);
  /external/skia/gm/
hsl.cpp 166 SkPaint label; local
167 sk_tool_utils::set_portable_typeface(&label);
168 label.setAntiAlias(true);
171 canvas->drawText(comment, strlen(comment), 10,10, label);
203 canvas->drawText(name, strlen(name), 20,90, label);
  /external/skia/samplecode/
SampleXfermodesBlur.cpp 163 const char* label = SkBlendMode_Name(gModes[i]); local
164 canvas->drawString(label,
  /external/skqp/gm/
hsl.cpp 166 SkPaint label; local
167 sk_tool_utils::set_portable_typeface(&label);
168 label.setAntiAlias(true);
171 canvas->drawText(comment, strlen(comment), 10,10, label);
203 canvas->drawText(name, strlen(name), 20,90, label);
  /external/skqp/samplecode/
SampleXfermodesBlur.cpp 163 const char* label = SkBlendMode_Name(gModes[i]); local
164 canvas->drawString(label,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MethodImplementationBuilder.java 44 private final HashMap<String, Label> labels = new HashMap<String, Label>();
61 * Adds a new named label at the current location.
63 * Any previous unplaced references to a label of this name will now refer to this label/location
65 * @param name The name of the label to add
66 * @return A LabelRef representing the label
69 public Label addLabel(@Nonnull String name) {
70 Label label = labels.get(name) local
98 Label label = labels.get(name); local
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
PayloadAlignmentTest.java 92 Label label = implBuilder.getLabel("array_payload"); local
93 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
118 Label label = implBuilder.getLabel("array_payload"); local
119 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction.java 138 SmaliLabel label = labelReference.resolve(); local
139 if (label == null) {
142 return (label.getOffset() - psiInstruction.getOffset())/2;
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.h 61 /// label is used for the labels for the BasicBlocks.
65 static const char *label; member in class:BrainF
  /external/tensorflow/tensorflow/contrib/lite/toco/
dump_graphviz.cc 60 string label; member in struct:toco::__anon39357::NodeProperties
64 // label, see Color::TextColorString.
141 node_properties.label = absl::StrReplaceAll(array_name, {{"/", "/\\n"}});
143 // Append array shape to the label.
147 AppendF(&node_properties.label, "\\nType: float");
149 AppendF(&node_properties.label, "\\nType: int32");
151 AppendF(&node_properties.label, "\\nType: uint8");
156 node_properties.label += "\\n[";
159 AppendF(&node_properties.label, "%d", array_shape.dims(id));
162 AppendF(&node_properties.label, "\u00D7%d", array_shape.dims(id))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_xent_op.h 48 // logits, and the label indices. For each minibatch entry, ignoring
51 // loss[j] = (log(sum_exp_logits) - logits[j]) * 1{ j == label }
72 const Index label = tensorflow::internal::SubtleMustCopy(labels_(batch)); local
73 if (!FastBoundsCheck(label, max_depth_)) {
76 return TF_PREDICT_FALSE(label == depth)
89 // This generator takes the exponentiated logits, their sums, and the label
92 // exp_logits[j] / sum_exp_logits - 1{ j == label }
112 const Index label = tensorflow::internal::SubtleMustCopy(labels_(batch)); local
113 if (!FastBoundsCheck(label, max_depth_)) {
116 T subtract = TF_PREDICT_FALSE(depth == label) ? T(1.0) : T(0.0)
    [all...]
  /external/tensorflow/tensorflow/core/lib/monitoring/
collection_registry.h 335 auto* const label = &point->labels.back(); local
336 label->name = label_descriptions[i];
337 label->value = labels[i];
  /external/tensorflow/tensorflow/core/platform/default/
test_benchmark.cc 32 static std::string label; member in namespace:tensorflow::testing
167 std::string full_label = label;
218 label.clear();
248 void SetLabel(const std::string& l) { label = l; }
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_beam_entry.h 44 BeamProbability() : total(kLogZero), blank(kLogZero), label(kLogZero) {}
48 label = kLogZero;
52 float label; member in struct:tensorflow::ctc::ctc_beam_search::BeamProbability
80 if (!merge_repeated || c->label != prev_label) {
81 labels.push_back(c->label);
83 prev_label = c->label;
91 int label; member in struct:tensorflow::ctc::ctc_beam_search::BeamEntry
99 // Constructor giving parent, label, and the beam_root.
105 : parent(p), label(l), beam_root(beam_root) {}
ctc_loss_calculator.h 155 // Calculate the modified label sequence l' for each batch element,
205 // Convert label from DistBelief
283 // labels is a Label array of size batch_size
289 *max_u_prime = 0; // keep track of longest l' modified label sequence.
291 // Assume label is in Label proto
292 const std::vector<int>& label = labels[b]; local
293 if (label.size() == 0) {
299 VLOG(2) << "label for batch: " << b << ": " << str_util::Join(label, " ");
    [all...]
  /external/toolchain-utils/automation/server/monitor/
dashboard.py 46 group = [Link('/job-group/%d' % job.group.id, job.group.label)]
48 predecessors = [Link('/job/%d' % pred.id, pred.label)
51 successors = [Link('/job/%d' % succ.id, succ.label)
61 return {'text': [('Label', job.label), ('Directory', job.work_dir)],
112 return {'text': [('Label', group.label),
125 'label': job.label,
171 'label': group.label
224 label = forms.ChoiceField(label='Filter by label:', required=False) variable in class:FilterJobGroupsForm
    [all...]
  /external/vboot_reference/cgpt/
cgpt_show.c 101 uint8_t label[GPT_PARTNAME_LEN]; local
105 label, sizeof(label));
107 "Label: \"%s\"", label) < sizeof(contents));
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 117 public native String label(); method in class:DataChannel
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 107 const std::string& label,
109 return peer_connection_->CreateDataChannel(label, &init);
263 std::string label = kStreamLabelBase + local
267 peer_connection_factory_->CreateLocalMediaStream(label);
290 std::string videotrack_label = label + kVideoTrackLabelBase;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.cc 102 std::string label = state.tag + '@' + alg_name; local
106 size_t start_pos = label.find(receiver);
108 label.replace(start_pos, receiver.length(), "Sender");
112 printf("PLOT\t%d\t%s\t%f\t%f\n", figure, label.c_str(),
189 printf("LABEL\t%d\t%s\t%s\t%d\n", figure, title.c_str(), y_label.c_str(),
  /frameworks/base/core/java/android/content/pm/
ComponentInfo.java 105 CharSequence label; local
107 label = pm.getText(packageName, labelRes, ai);
108 if (label != null) {
109 return label;
116 label = pm.getText(packageName, ai.labelRes, ai);
117 if (label != null) {
118 return label;
  /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);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtonsTest.java 105 String label = labels[i]; local
109 String indexInfo = "index: " + i + ", label: " + label;
115 assertEquals(indexInfo, label, button.getText().toString());
124 String label = labels[i]; local
126 String indexInfo = "index: " + i + ", label: " + label;
132 assertEquals(indexInfo, label, button.getText().toString());
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
MediaSizeUtils.java 98 /** Mapping from media size to label */
124 * Get the label for a {@link MediaSize}.
126 * @param context The context the label should be loaded for
129 * @return The label for the media size
132 String label = mMediaSizeToLabel.get(mediaSize); local
134 if (label == null) {
135 label = mediaSize.getLabel(context.getPackageManager());
136 mMediaSizeToLabel.put(mediaSize, label);
139 return label;
160 // Same standard - sort alphabetically by label
    [all...]

Completed in 719 milliseconds

<<11121314151617181920>>