Searched refs:piece (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dstring.h94 // Creates a string from the contents of a string piece.
95 // Allocates heap memory only if |piece.length()| is non-zero.
96 String(const StringPiece& piece) argument
97 : String(piece.data(), piece.length()) {}
99 // Creates a string from the contents of a string piece.
100 // Allocates heap memory only if |piece.length()| is non-zero.
102 String(const StringPiece& piece, AllocChecker* ac) argument
103 : String(piece.data(), piece
171 operator =(const StringPiece& piece) argument
228 Set(const StringPiece& piece) argument
235 Set(const StringPiece& piece, AllocChecker* ac) argument
[all...]
H A Dstring_buffer.h112 // Appends content to the string buffer from a string piece.
114 StringBuffer& Append(const fbl::StringPiece& piece) { argument
115 AppendInternal(piece.data(), piece.length());
149 // Gets the buffer's contents as a string piece.
/fuchsia/zircon/system/utest/fbl/
H A Dstring_buffer_tests.cpp284 fbl::StringPiece piece = buf.ToStringPiece(); local
285 EXPECT_EQ(buf.data(), piece.data());
286 EXPECT_EQ(buf.length(), piece.length());
H A Dstring_tests.cpp609 fbl::StringPiece piece(empty.ToStringPiece());
610 EXPECT_EQ(empty.data(), piece.data());
611 EXPECT_EQ(0u, piece.length());
616 fbl::StringPiece piece(str.ToStringPiece());
617 EXPECT_EQ(str.data(), piece.data());
618 EXPECT_EQ(3u, piece.length());
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/perlasm/
H A Dx86_64-xlate.pl526 piece => 0x93, # uleb128

Completed in 58 milliseconds