Home
last modified time | relevance | path

Searched refs:Suffix (Results 1 – 25 of 164) sorted by relevance

1234567

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTableGenBackend.cpp22 StringRef Suffix) { in printLine() argument
24 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) && in printLine()
27 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size(); in printLine()
30 OS << Suffix << '\n'; in printLine()
36 StringRef Suffix(" *|"); in emitSourceFileHeader() local
37 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
38 size_t PSLen = Prefix.size() + Suffix.size(); in emitSourceFileHeader()
43 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader()
46 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
48 Suffix); in emitSourceFileHeader()
[all …]
/third_party/boost/boost/spirit/repository/home/karma/directive/
Dconfix.hpp33 template <typename Prefix, typename Suffix>
35 , terminal_ex<repository::tag::confix, fusion::vector2<Prefix, Suffix> > >
54 template <typename Subject, typename Prefix, typename Suffix>
56 : spirit::karma::primitive_generator<confix_generator<Subject, Prefix, Suffix> >
66 , Suffix const& suffix) in confix_generator()
89 Suffix suffix;
102 template <typename Prefix, typename Suffix, typename Subject
105 terminal_ex<repository::tag::confix, fusion::vector2<Prefix, Suffix> >
112 result_of::compile<karma::domain, Suffix, Modifiers>::type
132 template <typename Subject, typename Prefix, typename Suffix>
[all …]
/third_party/boost/boost/spirit/repository/home/qi/directive/
Dconfix.hpp34 template <typename Prefix, typename Suffix>
36 , terminal_ex<repository::tag::confix, fusion::vector2<Prefix, Suffix> > >
56 template <typename Subject, typename Prefix, typename Suffix>
58 : spirit::qi::unary_parser<confix_parser<Subject, Prefix, Suffix> >
68 , Suffix const& suffix) in confix_parser()
98 Suffix suffix;
111 template <typename Prefix, typename Suffix, typename Subject
114 terminal_ex<repository::tag::confix, fusion::vector2<Prefix, Suffix> >
121 result_of::compile<qi::domain, Suffix, Modifiers>::type
141 template <typename Subject, typename Prefix, typename Suffix>
[all …]
/third_party/flutter/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/
DServerHandlers.cpp25 {% set Suffix = command.name.CamelCase() %}
26 {% if Suffix not in client_side_commands %}
28 bool Server::Handle{{Suffix}}(const char** commands, size_t* size) {
29 {{Suffix}}Cmd cmd;
40 {% if Suffix in server_custom_pre_handler_commands %}
41 if (!PreHandle{{Suffix}}(cmd)) {
60 bool success = Do{{Suffix}}(
DServerDoers.cpp25 {% set Suffix = command.name.CamelCase() %}
26 {% if Suffix not in client_side_commands %}
27 {% if is_method and Suffix not in server_handwritten_commands %}
28 bool Server::Do{{Suffix}}(
DServerPrototypes.inc17 {% set Suffix = command.name.CamelCase() %}
18 bool Handle{{Suffix}}(const char** commands, size_t* size);
20 bool Do{{Suffix}}(
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/
DServerHandlers.cpp24 {% set Suffix = command.name.CamelCase() %}
26 bool Server::Handle{{Suffix}}(DeserializeBuffer* deserializeBuffer) {
27 {{Suffix}}Cmd cmd;
38 {% if Suffix in server_custom_pre_handler_commands %}
39 if (!PreHandle{{Suffix}}(cmd)) {
76 bool success = Do{{Suffix}}(
DServerDoers.cpp25 {% set Suffix = command.name.CamelCase() %}
26 {% if Suffix not in client_side_commands %}
27 {% if is_method and Suffix not in server_handwritten_commands %}
28 bool Server::Do{{Suffix}}(
DServerPrototypes.inc17 {% set Suffix = command.name.CamelCase() %}
18 bool Handle{{Suffix}}(DeserializeBuffer* deserializeBuffer);
20 bool Do{{Suffix}}(
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DTwine.h425 Twine concat(const Twine &Suffix) const;
488 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument
490 if (isNull() || Suffix.isNull()) in concat()
495 return Suffix; in concat()
496 if (Suffix.isEmpty()) in concat()
503 NewRHS.twine = &Suffix; in concat()
509 if (Suffix.isUnary()) { in concat()
510 NewRHS = Suffix.LHS; in concat()
511 NewRHSKind = Suffix.getLHSKind(); in concat()
/third_party/boost/libs/spirit/repository/test/karma/
Dconfix.cpp27 template <typename Prefix, typename Suffix = Prefix>
29 : spirit::result_of::terminal<repo::tag::confix(Prefix, Suffix)>
33 template <typename Prefix, typename Suffix>
34 inline typename traits::confix_spec<Prefix, Suffix>::type
35 confix_spec(Prefix const& prefix, Suffix const& suffix) in confix_spec()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DTwine.h433 Twine concat(const Twine &Suffix) const;
496 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument
498 if (isNull() || Suffix.isNull()) in concat()
503 return Suffix; in concat()
504 if (Suffix.isEmpty()) in concat()
511 NewRHS.twine = &Suffix; in concat()
517 if (Suffix.isUnary()) { in concat()
518 NewRHS = Suffix.LHS; in concat()
519 NewRHSKind = Suffix.getLHSKind(); in concat()
DStringRef.h276 bool endswith(StringRef Suffix) const { in endswith() argument
277 return Length >= Suffix.Length && in endswith()
278 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
283 bool endswith_lower(StringRef Suffix) const;
678 bool consume_back(StringRef Suffix) { in consume_back() argument
679 if (!endswith(Suffix)) in consume_back()
682 *this = drop_back(Suffix.size()); in consume_back()
/third_party/boost/libs/spirit/repository/test/qi/
Dconfix.cpp33 template <typename Prefix, typename Suffix = Prefix>
37 repo::tag::confix(Prefix, Suffix)
41 template <typename Prefix, typename Suffix>
42 inline typename confix_spec_traits<Prefix, Suffix>::type
43 confix_spec(Prefix const& prefix, Suffix const& suffix) in confix_spec()
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/
DApiProcs.cpp41 {% set Suffix = as_MethodSuffix(type.name, method.name) %}
43 {% if Suffix in client_handwritten_commands %}
46 {{as_cType(method.return_type.name)}} Client{{Suffix}}(
53 {% if Suffix not in client_handwritten_commands %}
54 {{Suffix}}Cmd cmd;
DClientHandlers.cpp76 {% set Suffix = command.name.CamelCase() %}
77 case ReturnWireCmd::{{Suffix}}:
78 success = Handle{{Suffix}}(&deserializeBuffer);
/third_party/flutter/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/
DApiProcs.cpp26 {% set Suffix = as_MethodSuffix(type.name, method.name) %}
27 {% if Suffix not in client_handwritten_commands %}
28 {{as_cType(method.return_type.name)}} Client{{Suffix}}(
36 {{Suffix}}Cmd cmd;
DClientHandlers.cpp63 {% set Suffix = command.name.CamelCase() %}
64 case ReturnWireCmd::{{Suffix}}:
65 success = Handle{{Suffix}}(&commands, &size);
DApiProcs.h26 {% set Suffix = as_MethodSuffix(type.name, method.name) %}
27 {{as_cType(method.return_type.name)}} Client{{Suffix}}(
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DWindowsResource.h107 uint16_t getDataVersion() const { return Suffix->DataVersion; } in getDataVersion()
108 uint16_t getLanguage() const { return Suffix->Language; } in getLanguage()
109 uint16_t getMemoryFlags() const { return Suffix->MemoryFlags; } in getMemoryFlags()
110 uint16_t getMajorVersion() const { return Suffix->Version >> 16; } in getMajorVersion()
111 uint16_t getMinorVersion() const { return Suffix->Version; } in getMinorVersion()
112 uint32_t getCharacteristics() const { return Suffix->Characteristics; } in getCharacteristics()
132 const WinResHeaderSuffix *Suffix = nullptr; variable
/third_party/node/deps/npm/node_modules/psl/
DREADME.md1 # psl (Public Suffix List)
10 [Public Suffix List](https://publicsuffix.org/).
17 ## What is the Public Suffix List?
19 The Public Suffix List is a cross-vendor initiative to provide an accurate list
22 The Public Suffix List is an initiative of the Mozilla Project, but is
28 Public Suffix List is a list of all known public suffixes.
58 Parse domain based on Public Suffix List. Returns an `Object` with the following
147 Check whether a domain has a valid Public Suffix. Returns a `Boolean` indicating
148 whether the domain has a valid Public Suffix.
185 * Mozilla Foundation's [Public Suffix List](https://publicsuffix.org/)
/third_party/curl/include/curl/
Dsystem.h495 # define CURLINC_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix argument
497 # define CURLINC_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix argument
499 # define CURLINC_OFF_T_C_HLPR1(Val,Suffix) CURLINC_OFF_T_C_HLPR2(Val,Suffix) argument
/third_party/skia/third_party/externals/dawn/generator/templates/
Dmock_webgpu.cpp55 {% set Suffix = as_MethodSuffix(type.name, method.name) %}
57 {{as_cType(method.return_type.name)}} ProcTableAsClass::{{Suffix}}(
77 void ProcTableAsClass::Call{{Suffix}}Callback(
84 object->m{{Suffix}}Callback(
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTimerTree.cpp279 std::string Suffix = ""; in dump() local
281 if (Suffix.empty()) in dump()
282 Suffix = IDs[Nodes[Prefix].Interior]; in dump()
284 Suffix = IDs[Nodes[Prefix].Interior] + "." + Suffix; in dump()
290 CumulativeMap.insert(std::make_pair(Nodes[i].Time, PrefixStr + Suffix)); in dump()
/third_party/boost/libs/container/test/
Dstring_test.cpp90 static const char *Suffix() in Suffix() function
109 static const wchar_t *Suffix() in Suffix() function
289 const CharType *sufix = string_literals<CharType>::Suffix(); in string_test()
344 BoostString bs3 = string_literals<CharType>::Suffix(); in string_test()
345 StdString ss3 = string_literals<CharType>::Suffix(); in string_test()
388 bs4 = boost::move(bs2) + string_literals<CharType>::Suffix(); in string_test()
389 ss4 = boost::move(ss2) + string_literals<CharType>::Suffix(); in string_test()
404 bs4 = bs2 + string_literals<CharType>::Suffix(); in string_test()
405 ss4 = ss2 + string_literals<CharType>::Suffix(); in string_test()

1234567