Home
last modified time | relevance | path

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

123456

/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/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/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()
DStringRef.h288 bool endswith(StringRef Suffix) const { in endswith() argument
289 return Length >= Suffix.Length && in endswith()
290 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
295 bool endswith_lower(StringRef Suffix) const;
681 bool consume_back(StringRef Suffix) { in consume_back() argument
682 if (!endswith(Suffix)) in consume_back()
685 *this = drop_back(Suffix.size()); in consume_back()
/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-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/rust/crates/memchr/src/memmem/
Dtwoway.rs86 let min_suffix = Suffix::forward(needle, SuffixKind::Minimal); in new()
87 let max_suffix = Suffix::forward(needle, SuffixKind::Maximal); in new()
253 let min_suffix = Suffix::reverse(needle, SuffixKind::Minimal); in new()
254 let max_suffix = Suffix::reverse(needle, SuffixKind::Maximal); in new()
479 struct Suffix { struct
495 impl Suffix { argument
496 fn forward(needle: &[u8], kind: SuffixKind) -> Suffix { in forward() argument
501 let mut suffix = Suffix { pos: 0, period: 1 }; in forward()
524 suffix = Suffix { pos: candidate_start, period: 1 }; in forward()
546 fn reverse(needle: &[u8], kind: SuffixKind) -> Suffix { in reverse() argument
[all …]
/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/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/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/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/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/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCMCInstLower.cpp44 StringRef Suffix; in GetSymbolFromOperand() local
46 Suffix = "$non_lazy_ptr"; in GetSymbolFromOperand()
48 if (!Suffix.empty()) in GetSymbolFromOperand()
59 Name += Suffix; in GetSymbolFromOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DCodeExtractor.h106 std::string Suffix; variable
124 std::string Suffix = "");
134 std::string Suffix = "");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DGlobPattern.cpp127 Pat.Suffix = S.drop_front(); in create()
148 if (Suffix) in match()
149 return S.endswith(*Suffix); in match()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTargetLoweringObjectFile.cpp117 const GlobalValue *GV, StringRef Suffix, const TargetMachine &TM) const { in getSymbolWithGlobalValueBase() argument
118 assert(!Suffix.empty()); in getSymbolWithGlobalValueBase()
123 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()

123456