OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cunescape
(Results
1 - 11
of
11
) sorted by null
/external/protobuf/python/google/protobuf/internal/
text_encoding_test.py
67
self.assertEqual(unescaped, text_encoding.
CUnescape
(escaped))
68
self.assertEqual(unescaped, text_encoding.
CUnescape
(escaped_utf8))
/external/tensorflow/tensorflow/core/lib/strings/
proto_text_util.cc
54
return str_util::
CUnescape
(value_sp, value, nullptr /* error */);
str_util_test.cc
34
EXPECT_TRUE(str_util::
CUnescape
(source, &dest, &error)) << error;
38
TEST(
CUnescape
, Basic) {
46
TEST(
CUnescape
, HandlesCopyOnWriteStrings) {
53
//
CUnescape
is going to write "llohe" to dest, so dest's buffer will be
55
EXPECT_TRUE(str_util::
CUnescape
(source, &dest, &error));
str_util.cc
70
namespace { // Private helpers for
CUnescape
().
232
bool
CUnescape
(StringPiece source, string* dest, string* error) {
str_util.h
42
bool
CUnescape
(StringPiece source, string* dest, string* error);
/external/protobuf/python/google/protobuf/
text_encoding.py
87
def
CUnescape
(text):
descriptor_pool.py
640
field_desc.default_value = text_encoding.
CUnescape
(
text_format.py
[
all
...]
/external/tensorflow/tensorflow/compiler/xla/tools/parser/
hlo_lexer.cc
376
if (!tensorflow::str_util::
CUnescape
(raw, &str_val_, &error)) {
/external/tensorflow/tensorflow/core/framework/
op_gen_lib.cc
138
if (!str_util::
CUnescape
(escaped, &unescaped, nullptr)) {
op_def_builder.cc
192
VERIFY(str_util::
CUnescape
(escaped_string, &unescaped, &error),
Completed in 432 milliseconds