Home
last modified time | relevance | path

Searched refs:common_prefix (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dupdate_mca_test_checks.py143 def _break_down_block(block_info, common_prefix): argument
182 result.append((common_prefix, line[0]))
225 def _get_block_infos(run_infos, test_path, args, common_prefix): # noqa argument
329 if common_prefix and len(block_infos[block_num]) > 1:
335 breakdown = _break_down_block(block_infos[block_num], common_prefix)
342 def _write_block(output, block, not_prefix_set, common_prefix, prefix_pad): argument
361 if num_lines_of_prefix > 1 or any(p == common_prefix
379 args, common_prefix, prefix_pad): argument
429 common_prefix,
440 common_prefix,
[all …]
/external/tensorflow/tensorflow/python/framework/
Derror_interpolation.py353 def _build_error_message(op, input_ops, common_prefix): argument
365 field_dict = compute_field_dict(op, common_prefix)
372 field_dict_inp = compute_field_dict(op_inp, common_prefix)
415 common_prefix = traceback_files_common_prefix(tagged_ops)
420 msg, source_msg = _build_error_message(ops[0], ops[1:], common_prefix)
424 field_dict = compute_field_dict(ops[0], common_prefix)
Derrors_impl.py38 common_prefix = error_interpolation.traceback_files_common_prefix([[op]])
42 if filename.startswith(common_prefix):
43 filename = filename[len(common_prefix):]
/external/tensorflow/tensorflow/core/kernels/
Dencode_proto_op.cc518 TensorShape common_prefix; in Compute() local
549 common_prefix = shape_prefix; in Compute()
550 message_count = common_prefix.num_elements(); in Compute()
552 OP_REQUIRES(ctx, shape_prefix == common_prefix, in Compute()
558 TensorShape expected_sizes_shape = common_prefix; in Compute()
588 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, common_prefix, &output_tensor)); in Compute()
/external/tensorflow/tensorflow/python/debug/cli/
Dcurses_ui.py1552 candidates, common_prefix = self._tab_completion_registry.get_completions(
1563 if common_prefix:
1566 return except_last_word + common_prefix
/external/v8/src/regexp/
Djsregexp.cc5220 unibrow::uchar common_prefix = atom->data().at(0); in RationalizeConsecutiveAtoms() local
5230 if (new_prefix != common_prefix) { in RationalizeConsecutiveAtoms()
5235 common_prefix = Canonical(canonicalize, common_prefix); in RationalizeConsecutiveAtoms()
5236 if (new_prefix != common_prefix) break; in RationalizeConsecutiveAtoms()