Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:StringHolder
(Results
1 - 4
of
4
) sorted by relevance
/third_party/libphonenumber/cpp/src/phonenumbers/
H
A
D
stringutil.h
80
class
StringHolder
: public absl::AlphaNum {
class
83
StringHolder
(const string& s); // NOLINT(runtime/explicit)
84
StringHolder
(const char* s); // NOLINT(runtime/explicit)
85
StringHolder
(uint64_t n); // NOLINT(runtime/explicit)
86
~
StringHolder
();
101
string& operator+=(string& lhs, const
StringHolder
& rhs);
105
string StrCat(const
StringHolder
& s1, const
StringHolder
& s2);
107
string StrCat(const
StringHolder
& s1, const
StringHolder
[all...]
H
A
D
stringutil.cc
124
//
StringHolder
class
125
StringHolder
::
StringHolder
(const string& s)
in StringHolder()
function in i18n::phonenumbers::StringHolder
129
StringHolder
::
StringHolder
(const char* cp)
in StringHolder()
function in i18n::phonenumbers::StringHolder
133
StringHolder
::
StringHolder
(uint64 n)
in StringHolder()
function in i18n::phonenumbers::StringHolder
137
StringHolder
::~
StringHolder
() {}
in ~StringHolder()
141
// Implements s += sh; (s: string, sh:
StringHolder
)
[all...]
/third_party/libphonenumber/cpp/test/phonenumbers/
H
A
D
stringutil_test.cc
186
// Test the
StringHolder
class.
187
TEST(StringUtilTest,
StringHolder
) {
in TEST()
190
StringHolder
sh1(cstring);
in TEST()
195
StringHolder
sh2(s);
in TEST()
200
StringHolder
sh3(s2);
in TEST()
204
StringHolder
sh4(42);
in TEST()
209
// Test the operator+=(string& lhs, const
StringHolder
& rhs) implementation.
214
s +=
StringHolder
(append1); // force
StringHolder
usage
in TEST()
221
s +=
StringHolder
(append
in TEST()
[all...]
/third_party/libabigail/tests/lib/
H
A
D
catch.hpp
4947
struct
StringHolder
: MatcherBase<NSString*>{
4948
StringHolder
( NSString* substr ) : m_substr( [substr copy] ){}
4949
StringHolder
(
StringHolder
const& other ) : m_substr( [other.m_substr copy] ){}
4950
StringHolder
() {
4961
struct Equals :
StringHolder
{
4962
Equals( NSString* substr ) :
StringHolder
( substr ){}
4974
struct Contains :
StringHolder
{
4975
Contains( NSString* substr ) :
StringHolder
( substr ){}
4987
struct StartsWith :
StringHolder
{
[all...]
Completed in 8 milliseconds