Home
last modified time | relevance | path

Searched refs:Separator (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringExtras.h162 StringRef Separator, std::input_iterator_tag) { in join_impl() argument
169 S += Separator; in join_impl()
177 StringRef Separator, std::forward_iterator_tag) { in join_impl() argument
182 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
188 S += Separator; in join_impl()
195 inline void join_items_impl(std::string &Result, Sep Separator) {} in join_items_impl() argument
198 inline void join_items_impl(std::string &Result, Sep Separator, in join_items_impl() argument
204 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, in join_items_impl() argument
207 Result += Separator; in join_items_impl()
208 join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items_impl()
[all …]
DStringRef.h716 std::pair<StringRef, StringRef> split(char Separator) const { in split() argument
717 size_t Idx = find(Separator); in split()
734 std::pair<StringRef, StringRef> split(StringRef Separator) const { in split() argument
735 size_t Idx = find(Separator); in split()
738 return std::make_pair(slice(0, Idx), slice(Idx + Separator.size(), npos)); in split()
756 StringRef Separator, int MaxSplit = -1,
773 void split(SmallVectorImpl<StringRef> &A, char Separator, int MaxSplit = -1,
787 std::pair<StringRef, StringRef> rsplit(char Separator) const { in rsplit() argument
788 size_t Idx = rfind(Separator); in rsplit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringExtras.h299 StringRef Separator, std::input_iterator_tag) { in join_impl() argument
306 S += Separator; in join_impl()
314 StringRef Separator, std::forward_iterator_tag) { in join_impl() argument
319 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
325 S += Separator; in join_impl()
332 inline void join_items_impl(std::string &Result, Sep Separator) {} in join_items_impl() argument
335 inline void join_items_impl(std::string &Result, Sep Separator, in join_items_impl() argument
341 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, in join_items_impl() argument
344 Result += Separator; in join_items_impl()
345 join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items_impl()
[all …]
DStringRef.h718 std::pair<StringRef, StringRef> split(char Separator) const { in split() argument
719 return split(StringRef(&Separator, 1)); in split()
733 std::pair<StringRef, StringRef> split(StringRef Separator) const { in split() argument
734 size_t Idx = find(Separator); in split()
737 return std::make_pair(slice(0, Idx), slice(Idx + Separator.size(), npos)); in split()
751 std::pair<StringRef, StringRef> rsplit(StringRef Separator) const { in rsplit() argument
752 size_t Idx = rfind(Separator); in rsplit()
755 return std::make_pair(slice(0, Idx), slice(Idx + Separator.size(), npos)); in rsplit()
773 StringRef Separator, int MaxSplit = -1,
790 void split(SmallVectorImpl<StringRef> &A, char Separator, int MaxSplit = -1,
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCInst.cpp73 StringRef Separator) const { in dump_pretty()
75 dump_pretty(OS, InstName, Separator); in dump_pretty()
79 StringRef Separator) const { in dump_pretty()
87 OS << Separator; in dump_pretty()
DMCSectionMachO.cpp140 char Separator = ','; in PrintSwitchToSection() local
151 OS << Separator; in PrintSwitchToSection()
156 Separator = '+'; in PrintSwitchToSection()
/third_party/json/test/thirdparty/Fuzzer/test/
DCustomCrossOverTest.cpp15 static const char *Separator = "-_^_-"; variable
40 static size_t SeparatorLen = strlen(Separator); in LLVMFuzzerCustomCrossOver()
59 memcpy(Out + Len1, Separator, SeparatorLen); in LLVMFuzzerCustomCrossOver()
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_demo.cpp296 ImGui::Separator(); in ShowDemoWindow()
334 ImGui::Separator(); in ShowDemoWindow()
344 ImGui::Separator(); in ShowDemoWindow()
351 ImGui::Separator(); in ShowDemoWindow()
464 ImGui::Separator(); in ShowDemoWindowWidgets()
971 ImGui::Separator(); in ShowDemoWindowWidgets()
978 ImGui::Separator(); in ShowDemoWindowWidgets()
1057 ImGui::Separator(); in ShowDemoWindowWidgets()
1066 ImGui::Separator(); in ShowDemoWindowWidgets()
1418 ImGui::Separator(); in ShowDemoWindowWidgets()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DSeparateCompoundStructDeclarations.cpp21 class Separator : public TIntermTraverser class
25 Separator(TSymbolTable &symbolTable, IdGen &idGen) in Separator() function in __anon916d29a80111::Separator
111 Separator separator(compiler.getSymbolTable(), idGen); in SeparateCompoundStructDeclarations()
DSeparateCompoundExpressions.cpp125 class Separator : public TIntermRebuild class
134 Separator(TCompiler &compiler, SymbolEnv &symbolEnv, IdGen &idGen) in Separator() function in __anonec460bcd0111::Separator
138 ~Separator() override in ~Separator()
653 if (!Separator(compiler, symbolEnv, idGen).rebuildRoot(root)) in SeparateCompoundExpressions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLoc.cpp197 StringRef Separator; in dump() local
200 OS << Separator; in dump()
201 Separator = "\n"; in dump()
399 StringRef Separator; in dumpRange() local
402 OS << Separator; in dumpRange()
403 Separator = "\n"; in dumpRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp329 StringRef Separator, int MaxSplit, in split() argument
338 size_t Idx = S.find(Separator); in split()
347 S = S.slice(Idx + Separator.size(), npos); in split()
355 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, in split() argument
364 size_t Idx = S.find(Separator); in split()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStringRef.cpp315 StringRef Separator, int MaxSplit, in split() argument
324 size_t Idx = S.find(Separator); in split()
333 S = S.slice(Idx + Separator.size(), npos); in split()
341 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, in split() argument
350 size_t Idx = S.find(Separator); in split()
/third_party/skia/third_party/externals/imgui/
Dimgui_demo.cpp408 ImGui::Separator(); in ShowDemoWindow()
417 ImGui::Separator(); in ShowDemoWindow()
460 ImGui::Separator(); in ShowDemoWindow()
476 ImGui::Separator(); in ShowDemoWindow()
484 ImGui::Separator(); in ShowDemoWindow()
612 ImGui::Separator(); in ShowDemoWindowWidgets()
1455 ImGui::Separator(); in ShowDemoWindowWidgets()
1497 ImGui::Separator(); in ShowDemoWindowWidgets()
1563 ImGui::Separator(); in ShowDemoWindowWidgets()
1620 ImGui::Separator(); in ShowDemoWindowWidgets()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCInst.h209 StringRef Separator = " ") const;
211 StringRef Separator = " ") const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRecordStreamer.cpp216 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives() local
218 (Split.first + Separator + Split.second).toStringRef(NewName); in flushSymverDirectives()
/third_party/cups-filters/filter/braille/filters/
Dbraille.defs112 Option "PageSeparator/Print Page Separator" PickOne AnySetup 10
116 Option "PageSeparatorNumber/Print Page Number in Separator" PickOne AnySetup 10
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCTargetDesc.cpp153 StringRef Separator = "\n"; in prettyPrintAsm() local
160 OS << Indent << Duplex.first << Separator; in prettyPrintAsm()
166 OS << Indent << InstTxt << Separator; in prettyPrintAsm()
/third_party/pcre2/pcre2/maint/ucptestdata/
Dtestoutput2218 U+00A0 CS Separator: Space separator, common, Other, [graphemebase, whitespace]
220 U+202F CS Separator: Space separator, common, Other, [latin, mongolian], [graphemebase, whitespace]
236 U+2029 B Separator: Paragraph separator, common, Control, [patternwhitespace, whitespace]
251 U+0020 WS Separator: Space separator, common, Other, [ascii, graphemebase, patternwhitespace, whit…
252 U+1680 WS Separator: Space separator, ogham, Other, [graphemebase, whitespace]
253 U+2000..U+200A WS Separator: Space separator, common, Other, [graphemebase, whitespace]
254 U+2028 WS Separator: Line separator, common, Control, [patternwhitespace, whitespace]
255 U+205F WS Separator: Space separator, common, Other, [graphemebase, whitespace]
256 U+3000 WS Separator: Space separator, common, Other, [graphemebase, whitespace]
/third_party/cups-filters/filter/braille/drivers/common/
Dfr-braille.po136 msgid "Print Page Separator"
139 msgid "Print Page Number in Separator"
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineOperand.cpp934 StringRef Separator; in print() local
937 OS << Separator << "undef"; in print()
939 OS << Separator << Elt; in print()
940 Separator = ", "; in print()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetPassConfig.h170 getLimitedCodeGenPipelineReason(const char *Separator = "/") const;
/third_party/toybox/tests/
Dman.test121 .I Internal Field Separator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangleNodes.cpp155 StringView Separator) const { in output()
161 OS << Separator; in output()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTargetLowering.cpp154 constexpr const char Separator[] = ":"; in splitToClassAndName() local
155 constexpr size_t SeparatorWidth = llvm::array_lengthof(Separator) - 1; in splitToClassAndName()
156 size_t Pos = RegName.find(Separator); in splitToClassAndName()

1234