HomeSort by relevance Sort by last modified time
    Searched refs:CEscape (Results 1 - 25 of 40) sorted by null

1 2

  /external/protobuf/python/google/protobuf/internal/
text_encoding_test.py 61 text_encoding.CEscape(unescaped, as_utf8=False))
63 text_encoding.CEscape(unescaped, as_utf8=True))
  /external/tensorflow/tensorflow/core/lib/strings/
str_util.cc 28 string CEscape(StringPiece src) {
str_util_test.cc 23 TEST(CEscape, Basic) {
24 EXPECT_EQ(str_util::CEscape("hello"), "hello");
25 EXPECT_EQ(str_util::CEscape("hello\n"), "hello\\n");
26 EXPECT_EQ(str_util::CEscape("hello\r"), "hello\\r");
27 EXPECT_EQ(str_util::CEscape("\t\r\"'"), "\\t\\r\\\"\\'");
28 EXPECT_EQ(str_util::CEscape("\320hi\200"), "\\320hi\\200");
proto_text_util.h 88 field_name, StrCat("\"", ::tensorflow::str_util::CEscape(value), "\""));
str_util.h 33 string CEscape(StringPiece src);
  /external/protobuf/src/google/protobuf/stubs/
substitute.cc 88 << CEscape(format) << "\".";
99 << CEscape(format) << "\".";
  /external/tensorflow/tensorflow/core/kernels/
identity_reader_op.cc 56 str_util::CEscape(state));
whole_file_read_ops.cc 73 str_util::CEscape(state));
decode_image_op.cc 61 str_util::CEscape(data.substr(0, 16)), "'");
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_enum.cc 158 "data", EscapeTrigraphs(CEscape(text_blob.substr(i, kBytesPerLine))));
188 "extraTextFormatInfo", CEscape(text_format_decode_data.Data()));
objectivec_helpers.cc 737 return "(NSData*)\"" + EscapeTrigraphs(CEscape(bytes)) + "\"";
739 return "@\"" + EscapeTrigraphs(CEscape(default_string)) + "\"";
    [all...]
  /external/protobuf/python/google/protobuf/
text_encoding.py 59 def CEscape(text, as_utf8):
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 321 CEscape(field->default_value_string()));
327 // All chars are ASCII. In this case CEscape() works fine.
328 return "\"" + CEscape(field->default_value_string()) + "\"";
334 CEscape(field->default_value_string()));
  /external/protobuf/src/google/protobuf/compiler/java/
java_shared_code_generator.cc 142 "data", CEscape(file_data.substr(i, kBytesPerLine)));
java_helpers.cc 434 CEscape(field->default_value_string()));
440 // All chars are ASCII. In this case CEscape() works fine.
441 return "\"" + CEscape(field->default_value_string()) + "\"";
446 CEscape(field->default_value_string()));
  /external/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 204 return out << CEscape(test_case.input);
338 return out << CEscape(test_case.input);
525 return out << CEscape(test_case.input);
    [all...]
tokenizer.cc 921 " tokenized as a float: " << CEscape(text);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 253 *error = "Plugin output is unparseable: " + CEscape(output_data);
454 *error = "Plugin output is unparseable: " + CEscape(output_data);
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_primitive_field.cc 194 CEscape(descriptor->default_value_string()));
199 // CEscape()'d string literal works fine.
201 "\"" + CEscape(descriptor->default_value_string()) + "\"";
210 CEscape(descriptor->default_value_string()));
    [all...]
  /external/protobuf/src/google/protobuf/util/
type_resolver_util.cc 231 return CEscape(descriptor->default_value_string());
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 262 //##!PY25 return "b\"" + CEscape(field.default_value_string()) +
265 return "_b(\"" + CEscape(field.default_value_string()) + //##PY25
576 m["serialized_options"] = CEscape(options_string);
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen.cc 130 return strings::StrCat("\"", str_util::CEscape(str), "\"");
188 strings::StrAppend(&ret, str_util::CEscape(t.flat<string>()(i)));
    [all...]
  /external/tensorflow/tensorflow/python/framework/
python_op_gen.cc 322 return strings::StrCat("\"", str_util::CEscape(str), "\"");
870 str_util::CEscape(cleaned_ops.SerializeAsString()).c_str());
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_instruction.cc 46 using tensorflow::str_util::CEscape;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 415 CEscape(field->default_value_string())) +

Completed in 516 milliseconds

1 2