/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 22 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/ |
D | confix.hpp | 33 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/ |
D | confix.hpp | 34 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/ |
D | ServerHandlers.cpp | 25 {% 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}}(
|
D | ServerDoers.cpp | 25 {% 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}}(
|
D | ServerPrototypes.inc | 17 {% 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/ |
D | ServerHandlers.cpp | 24 {% 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}}(
|
D | ServerDoers.cpp | 25 {% 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}}(
|
D | ServerPrototypes.inc | 17 {% 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/ |
D | Twine.h | 425 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/ |
D | confix.cpp | 27 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/ |
D | Twine.h | 433 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()
|
D | StringRef.h | 276 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/ |
D | confix.cpp | 33 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/ |
D | ApiProcs.cpp | 41 {% 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;
|
D | ClientHandlers.cpp | 76 {% 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/ |
D | ApiProcs.cpp | 26 {% 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;
|
D | ClientHandlers.cpp | 63 {% set Suffix = command.name.CamelCase() %} 64 case ReturnWireCmd::{{Suffix}}: 65 success = Handle{{Suffix}}(&commands, &size);
|
D | ApiProcs.h | 26 {% 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/ |
D | WindowsResource.h | 107 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/ |
D | README.md | 1 # 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/ |
D | system.h | 495 # 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/ |
D | mock_webgpu.cpp | 55 {% 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/ |
D | IceTimerTree.cpp | 279 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/ |
D | string_test.cpp | 90 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()
|