/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringExtras.h | 162 StringRef Separator, std::input_iterator_tag) { in join_impl() 169 S += Separator; in join_impl() 177 StringRef Separator, std::forward_iterator_tag) { in join_impl() 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, st in join_items_impl() 161 join_impl(IteratorT Begin, IteratorT End, StringRef Separator, std::input_iterator_tag) join_impl() argument 176 join_impl(IteratorT Begin, IteratorT End, StringRef Separator, std::forward_iterator_tag) join_impl() argument 232 join(IteratorT Begin, IteratorT End, StringRef Separator) join() argument 242 join_items(Sep Separator, Args &&... Items) join_items() argument [all...] |
H A D | StringRef.h | 708 /// If \p Separator is in the string, then the result is a pair (LHS, RHS) 709 /// such that (*this == LHS + Separator + RHS) is true and RHS is 710 /// maximal. If \p Separator is not in the string, then the result is a 713 /// \param Separator The character to split on. 716 std::pair<StringRef, StringRef> split(char Separator) const { 717 size_t Idx = find(Separator); 726 /// If \p Separator is in the string, then the result is a pair (LHS, RHS) 727 /// such that (*this == LHS + Separator + RHS) is true and RHS is 728 /// maximal. If \p Separator is not in the string, then the result is a 731 /// \param Separator [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 299 StringRef Separator, std::input_iterator_tag) { in join_impl() 306 S += Separator; in join_impl() 314 StringRef Separator, std::forward_iterator_tag) { in join_impl() 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, st in join_items_impl() 298 join_impl(IteratorT Begin, IteratorT End, StringRef Separator, std::input_iterator_tag) join_impl() argument 313 join_impl(IteratorT Begin, IteratorT End, StringRef Separator, std::forward_iterator_tag) join_impl() argument 370 join(IteratorT Begin, IteratorT End, StringRef Separator) join() argument 378 join(Range &&R, StringRef Separator) join() argument 387 join_items(Sep Separator, Args &&... Items) join_items() argument [all...] |
H A D | StringRef.h | 710 /// If \p Separator is in the string, then the result is a pair (LHS, RHS) 711 /// such that (*this == LHS + Separator + RHS) is true and RHS is 712 /// maximal. If \p Separator is not in the string, then the result is a 715 /// \param Separator The character to split on. 718 std::pair<StringRef, StringRef> split(char Separator) const { 719 return split(StringRef(&Separator, 1)); 725 /// If \p Separator is in the string, then the result is a pair (LHS, RHS) 726 /// such that (*this == LHS + Separator + RHS) is true and RHS is 727 /// maximal. If \p Separator is not in the string, then the result is a 730 /// \param Separator [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCInst.cpp | 73 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() local
|
H A D | MCSectionMachO.cpp | 140 char Separator = ','; in PrintSwitchToSection() local 151 OS << Separator; in PrintSwitchToSection() local 156 Separator = '+'; in PrintSwitchToSection()
|
/third_party/json/tests/thirdparty/Fuzzer/test/ |
H A D | CustomCrossOverTest.cpp | 15 static const char *Separator = "-_^_-"; variable 40 static size_t SeparatorLen = strlen(Separator); in LLVMFuzzerCustomCrossOver() 59 memcpy(Out + Len1, Separator, SeparatorLen); in LLVMFuzzerCustomCrossOver()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | SeparateCompoundStructDeclarations.cpp | 21 class Separator : public TIntermTraverser class 25 Separator(TSymbolTable &symbolTable, IdGen &idGen) in Separator() function in __anon19788::Separator 111 Separator separator(compiler.getSymbolTable(), idGen); in SeparateCompoundStructDeclarations()
|
H A D | SeparateCompoundExpressions.cpp | 125 class Separator : public TIntermRebuild class 134 Separator(TCompiler &compiler, SymbolEnv &symbolEnv, IdGen &idGen) in Separator() function in __anon19787::Separator 138 ~Separator() override 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/ |
H A D | DWARFDebugLoc.cpp | 197 StringRef Separator; 200 OS << Separator; 201 Separator = "\n"; 399 StringRef Separator; 402 OS << Separator; 403 Separator = "\n";
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringRef.cpp | 329 StringRef Separator, int MaxSplit, 338 size_t Idx = S.find(Separator); 347 S = S.slice(Idx + Separator.size(), npos); 355 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, 364 size_t Idx = S.find(Separator);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | StringRef.cpp | 315 StringRef Separator, int MaxSplit, 324 size_t Idx = S.find(Separator); 333 S = S.slice(Idx + Separator.size(), npos); 341 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, 350 size_t Idx = S.find(Separator);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCInst.h | 206 /// structures, if given. Operators are separated by the \p Separator 209 StringRef Separator = " ") const; 211 StringRef Separator = " ") const;
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 408 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/lib/Object/ |
H A D | RecordStreamer.cpp | 216 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives() local 218 (Split.first + Separator + Split.second).toStringRef(NewName); in flushSymverDirectives()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCTargetDesc.cpp | 153 StringRef Separator = "\n"; variable 160 OS << Indent << Duplex.first << Separator; 166 OS << Indent << InstTxt << Separator; variable
|
/third_party/node/deps/v8/src/json/ |
H A D | json-stringifier.cc | 108 V8_INLINE void Separator(bool first); 687 Separator(i == 0); in SerializeJSArray() 706 Separator(i == 0); in SerializeJSArray() 729 Separator(i == 0); in SerializeJSArray() 769 Separator(i == 0); in SerializeArrayLikeSlow() 1084 void JsonStringifier::Separator(bool first) { in Separator() function in v8::internal::JsonStringifier 1091 Separator(!deferred_comma); in SerializeDeferredKey()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | TargetPassConfig.h | 168 /// by \p Separator that caused this pipeline to be limited. 170 getLimitedCodeGenPipelineReason(const char *Separator = "/") const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineOperand.cpp | 934 StringRef Separator; in print() local 937 OS << Separator << "undef"; in print() local 939 OS << Separator << Elt; in print() 940 Separator = ", "; in print()
|
H A D | MachineFunction.cpp | 107 const char *Separator = ""; in print() local 111 OS << Separator << getPropertyName(static_cast<Property>(I)); in print() 112 Separator = ", "; in print()
|
H A D | TargetPassConfig.cpp | 469 TargetPassConfig::getLimitedCodeGenPipelineReason(const char *Separator) const { in getLimitedCodeGenPipelineReason() 481 Res += Separator; in getLimitedCodeGenPipelineReason()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
H A D | MicrosoftDemangleNodes.cpp | 155 StringView Separator) const { in output() 161 OS << Separator; in output() local
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceTargetLowering.cpp | 154 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()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_memory_editor.h | 446 ImGui::Separator(); in DrawContents() 497 ImGui::Separator(); in DrawContents()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | DataLayout.cpp | 198 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { in split() argument 200 std::pair<StringRef, StringRef> Split = Str.split(Separator); in split()
|