HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 326 - 350 of 725) sorted by null

<<11121314151617181920>>

  /external/antlr/runtime/Python/antlr3/
treewizard.py 422 def visitor(tree, parent, childIndex, labels):
467 The labels arg of the visitor action method is never set (it's None)
513 def rootvisitor(tree, parent, childIndex, labels):
514 labels = {}
515 if self._parse(tree, tpattern, labels):
516 visitor(tree, parent, childIndex, labels)
521 def parse(self, t, pattern, labels=None):
523 Given a pattern like (ASSIGN %lhs:ID %rhs:.) with optional labels
525 return true if the pattern matches and fill the labels Map with
526 the labels pointing at the appropriate nodes. Return false i
    [all...]
  /external/antlr/runtime/Python3/antlr3/
treewizard.py 422 def visitor(tree, parent, childIndex, labels):
467 The labels arg of the visitor action method is never set (it's None)
513 def rootvisitor(tree, parent, childIndex, labels):
514 labels = {}
515 if self._parse(tree, tpattern, labels):
516 visitor(tree, parent, childIndex, labels)
521 def parse(self, t, pattern, labels=None):
523 Given a pattern like (ASSIGN %lhs:ID %rhs:.) with optional labels
525 return true if the pattern matches and fill the labels Map with
526 the labels pointing at the appropriate nodes. Return false i
    [all...]
  /external/tensorflow/tensorflow/contrib/compiler/
xla.py 566 def __call__(self, features, labels, mode, params):
578 return self._call_model_fn(features, labels, mode, params)
582 features, labels, params)
591 self._make_eval_step(features, labels, params))
612 def _make_train_step(self, features, labels, params):
618 estimator_spec = self._call_model_fn(features, labels,
636 def _make_eval_step(self, features, labels, params):
643 estimator_spec = self._call_model_fn(features, labels,
673 def _call_model_fn(self, features, labels, mode, params):
678 if 'labels' in model_fn_args
    [all...]
  /external/dtc/
livetree.c 27 void add_label(struct label **labels, char *label)
32 for_each_label_withdel(*labels, new)
41 new->next = *labels;
42 *labels = new;
45 void delete_labels(struct label **labels)
49 for_each_label(*labels, label)
145 /* Add new node labels to old node */
146 for_each_label_withdel(new_node->labels, l)
147 add_label(&old_node->labels, l->label);
166 /* Add new labels to old property *
    [all...]
flattree.c 55 void (*beginnode)(void *, struct label *labels);
56 void (*endnode)(void *, struct label *labels);
57 void (*property)(void *, struct label *labels);
92 static void bin_emit_beginnode(void *e, struct label *labels)
97 static void bin_emit_endnode(void *e, struct label *labels)
102 static void bin_emit_property(void *e, struct label *labels)
186 static void asm_emit_beginnode(void *e, struct label *labels)
191 for_each_label(labels, l) {
199 static void asm_emit_endnode(void *e, struct label *labels)
206 for_each_label(labels, l)
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
dynamic_rnn_estimator_test.py 73 def get_eval_ops(self, features, activations, labels, metrics):
81 def loss(self, activations, labels, features):
261 labels = self.GetClassificationTargetsOrNone(mode)
263 features=self.GetColumnsToTensors(), labels=labels, mode=mode)
372 labels = array_ops.slice(random_sequence, [0, 0],
385 return input_dict, labels
431 labels = array_ops.slice(sequence, [0, 0],
440 return input_dict, labels
534 labels = array_ops.slice(sin_curves, [0, 1]
    [all...]
estimator.py 158 labels - `Tensor` of label values.
241 def _make_metrics_ops(metrics, features, labels, predictions):
242 """Add metrics based on `features`, `labels`, and `predictions`.
246 function (assuming that `predictions` and `labels` are single tensors), or to
248 `labels` to `metric` (assuming `labels` is a single tensor).
257 labels: A single tensor or a dict of tensors returned from an input_fn as
258 labels.
268 `features`, `labels`, or `predictions` provided. Mostly, a dict is given
273 # If labels is a dict with a single key, unpack into a single tensor
    [all...]
  /external/u-boot/scripts/dtc/
livetree.c 27 void add_label(struct label **labels, char *label)
32 for_each_label_withdel(*labels, new)
41 new->next = *labels;
42 *labels = new;
45 void delete_labels(struct label **labels)
49 for_each_label(*labels, label)
145 /* Add new node labels to old node */
146 for_each_label_withdel(new_node->labels, l)
147 add_label(&old_node->labels, l->label);
166 /* Add new labels to old property *
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/idna/
idna.go 116 // that relies on proper validation of labels should include this rule.
158 // fromPuny calls validation rules when converting A-labels to U-labels.
307 // Remove leading empty labels.
318 labels := labelIter{orig: s}
319 for ; !labels.done(); labels.next() {
320 label := labels.label()
322 // Empty labels are not okay. The label iterator skips the last
339 labels.set(u
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaPerfUtils.java 119 final String[] labels = { local
134 for (int i = 0; i < labels.length; ++i) {
136 message += " " + labels[i] + "=" + p;
137 log.addValue(prefix + "_" + labels[i], p / 1000., ResultType.NEUTRAL, ResultUnit.MS);
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
MediaPerfUtils.java 119 final String[] labels = { local
134 for (int i = 0; i < labels.length; ++i) {
136 message += " " + labels[i] + "=" + p;
137 log.addValue(prefix + "_" + labels[i], p / 1000., ResultType.NEUTRAL, ResultUnit.MS);
  /external/antlr/runtime/ObjC/Framework/
TreeWizard.h 43 - (void) visit:(CommonTree *)t Parent:(CommonTree *)parent ChildIndex:(NSInteger)childIndex Map:(Map *)labels;
57 - (void) visit:(CommonTree *)t Parent:(CommonTree *)parent ChildIndex:(NSInteger)childIndex Map:(Map *)labels;
125 - (BOOL)parse:(CommonTree *)t Pattern:(NSString *)pattern Map:(Map *)labels;
127 - (BOOL) _parse:(CommonTree *)t1 Pattern:(CommonTree *)tpattern Map:(Map *)labels;
  /external/autotest/scheduler/
only_if_needed_unittests.py 19 models.Host.smart_get('host1').labels.add(self.label3)
  /external/autotest/server/cros/network/
rf_switch_ap_box.py 36 for label in ap_box_host.labels:
44 'AP Box %s does not have ap_box and/or rf_switch labels' %
55 # FILE_NAME is formed using rf_switch and ap_box labels.
  /external/autotest/server/cros/
sonic_client_utils.py 140 """Lock a host that has the sonic host labels.
144 @param additional_labels: A list of additional labels to apply in the search
149 @raises ValueError: Is no hosts matching the given labels are found.
153 labels = [SONIC_BOARD_LABEL]
155 labels += additional_labels
157 lambda: site_utils.lock_host_with_labels(afe, lock_manager, labels),
160 'host with labels %s.' % labels))
  /external/boringssl/src/crypto/cipher_extra/test/nist_cavp/
make_cavp.go 31 cmdLineLabelStr = flag.String("extra-labels", "", "Comma-separated list of additional label pairs to add (e.g. 'Cipher=AES-128-CBC,Operation=ENCRYPT')")
95 // value]". |labels| holds keys and values of the most recent block
96 // of labels.
97 var labels map[string]string
99 // Auxiliary labels passed as a flag.
146 labels = make(map[string]string)
153 labels[k] = v
166 for k, v := range labels {
  /external/llvm/test/MC/Mips/
insn-directive.s 58 # Verify that .insn causes the currently saved labels to be cleared by checking
  /external/llvm/utils/vim/indent/
llvm.vim 45 " Indent labels the same as the current opening block
66 " Add a 'shiftwidth' after lines that start a block or labels
  /external/minijail/
bpf.h 122 /* Support for labels in BPF programs. */
136 } labels[BPF_LABELS_MAX]; member in struct:bpf_labels
182 int bpf_resolve_jumps(struct bpf_labels *labels,
184 int bpf_label_id(struct bpf_labels *labels, const char *label);
185 void free_label_strings(struct bpf_labels *labels);
  /external/python/cpython3/Python/
makeopcodetargets.py 3 (for compilers supporting computed gotos or "labels-as-values", such as gcc).
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
insn-directive.s 58 # Verify that .insn causes the currently saved labels to be cleared by checking
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/vim/indent/
llvm.vim 45 " Indent labels the same as the current opening block
66 " Add a 'shiftwidth' after lines that start a block or labels
  /external/tensorflow/tensorflow/contrib/eager/python/examples/densenet/
densenet_graph_test.py 41 labels = np.random.randint(
44 one_hot[np.arange(batch_size), labels] = 1.
122 (images, labels) = tf.compat.v1.data.make_one_shot_iterator(
133 logits=logits, onehot_labels=labels)
  /external/tensorflow/tensorflow/core/lib/monitoring/
mobile_sampler.h 84 template <typename... Labels>
85 SamplerCell* GetCell(const Labels&... labels) {
  /external/toolchain-utils/crosperf/
help.py 82 We specify one or more "labels" or images which will be compared. The

Completed in 607 milliseconds

<<11121314151617181920>>