HomeSort by relevance Sort by last modified time
    Searched refs:Separator (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/v8/tools/clang/blink_gc_plugin/
JsonWriter.h 17 Separator();
31 Separator();
40 Separator();
44 Separator();
48 Separator();
52 Separator();
57 void Separator() {
  /external/dynamic_depth/internal/xmpmeta/xml/
const.h 24 static const char* Separator();
const.cc 31 const char* XmlConst::Separator() { return ":"; }
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 162 StringRef Separator, std::input_iterator_tag) {
169 S += Separator;
177 StringRef Separator, std::forward_iterator_tag) {
182 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
188 S += Separator;
195 inline void join_items_impl(std::string &Result, Sep Separator) {}
198 inline void join_items_impl(std::string &Result, Sep Separator,
204 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1,
207 Result += Separator;
208 join_items_impl(Result, Separator, std::forward<Args>(Items)...)
    [all...]
StringRef.h 705 /// Split into two substrings around the first occurrence of a separator
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);
723 /// Split into two substrings around the first occurrence of a 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 i
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
StringExtras.h 299 StringRef Separator, std::input_iterator_tag) {
306 S += Separator;
314 StringRef Separator, std::forward_iterator_tag) {
319 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
325 S += Separator;
332 inline void join_items_impl(std::string &Result, Sep Separator) {}
335 inline void join_items_impl(std::string &Result, Sep Separator,
341 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1,
344 Result += Separator;
345 join_items_impl(Result, Separator, std::forward<Args>(Items)...)
    [all...]
StringRef.h 716 /// Split into two substrings around the first occurrence of a separator
719 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
720 /// such that (*this == LHS + Separator + RHS) is true and RHS is
721 /// maximal. If \p Separator is not in the string, then the result is a
724 /// \param Separator The character to split on.
727 std::pair<StringRef, StringRef> split(char Separator) const {
728 return split(StringRef(&Separator, 1));
731 /// Split into two substrings around the first occurrence of a separator
734 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
735 /// such that (*this == LHS + Separator + RHS) is true and RHS i
    [all...]
  /external/llvm/lib/Fuzzer/test/
CustomCrossOverTest.cpp 15 static const char *Separator = "-_^_-";
34 static size_t SeparatorLen = strlen(Separator);
53 memcpy(Out + Len1, Separator, SeparatorLen);
  /external/llvm/include/llvm/ADT/
StringExtras.h 155 StringRef Separator, std::input_iterator_tag) {
162 S += Separator;
170 StringRef Separator, std::forward_iterator_tag) {
175 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
181 S += Separator;
187 /// Joins the strings in the range [Begin, End), adding Separator between
190 inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) {
192 return join_impl(Begin, End, Separator, tag());
StringRef.h 464 /// Split into two substrings around the first occurrence of a separator
467 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
468 /// such that (*this == LHS + Separator + RHS) is true and RHS is
469 /// maximal. If \p Separator is not in the string, then the result is a
472 /// \param Separator The character to split on.
474 std::pair<StringRef, StringRef> split(char Separator) const {
475 size_t Idx = find(Separator);
481 /// Split into two substrings around the first occurrence of a separator
484 /// If \p Separator is in the string, then the result is a pair (LHS, RHS)
485 /// such that (*this == LHS + Separator + RHS) is true and RHS i
    [all...]
  /external/llvm/lib/MC/
MCInst.cpp 54 StringRef Separator) const {
62 OS << Separator;
MCSectionMachO.cpp 129 char Separator = ',';
140 OS << Separator;
145 Separator = '+';
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringRef.h 364 /// separator character.
366 /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
367 /// such that (*this == LHS + Separator + RHS) is true and RHS is
368 /// maximal. If \arg Separator is not in the string, then the result is a
371 /// \param Separator - The character to split on.
373 std::pair<StringRef, StringRef> split(char Separator) const {
374 size_t Idx = find(Separator);
381 /// separator string.
383 /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
384 /// such that (*this == LHS + Separator + RHS) is true and RHS i
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCInst.cpp 49 StringRef Separator) const {
57 OS << Separator;
MCSectionMachO.cpp 129 char Separator = ',';
140 OS << Separator;
145 Separator = '+';
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCInst.cpp 74 StringRef Separator) const {
82 OS << Separator;
MCSectionMachO.cpp 141 char Separator = ',';
152 OS << Separator;
157 Separator = '+';
  /external/antlr/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|
190 if list.empty? then list << String.new( File::Separator )
191 elsif list.first.empty? then list.first.replace( File::Separator )
205 return relative_list.join( File::Separator )
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonInstPrinter.cpp 72 auto Separator = "";
74 OS << Separator;
75 Separator = " ";
81 OS << Separator;
HexagonMCTargetDesc.cpp 129 StringRef Separator = "\n";
136 OS << Indent << Duplex.first << Separator;
142 OS << Indent << InstTxt << Separator;
  /art/cmdline/
cmdline_types.h 363 template <char Separator>
380 return android::base::Join(list_, Separator);
383 static ParseStringList<Separator> Split(const std::string& str) {
385 art::Split(str, Separator, &list);
386 return ParseStringList<Separator>(std::move(list));
397 template <char Separator>
398 struct CmdlineType<ParseStringList<Separator>> : CmdlineTypeParser<ParseStringList<Separator>> {
399 using Result = CmdlineParseResult<ParseStringList<Separator>>;
402 return Result::Success(ParseStringList<Separator>::Split(args))
    [all...]
  /art/tools/checker/file_format/checker/
struct.py 106 if expression.variant == TestExpression.Variant.Separator:
122 PlainText, Pattern, VarRef, VarDef, Separator = range(5)
151 return TestExpression(TestExpression.Variant.Separator, None, None)
  /external/llvm/lib/Support/
StringRef.cpp 284 StringRef Separator, int MaxSplit,
293 size_t Idx = S.find(Separator);
302 S = S.slice(Idx + Separator.size(), npos);
310 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator,
319 size_t Idx = S.find(Separator);
  /art/tools/checker/match/
line.py 28 if expression.variant == TestExpression.Variant.Separator:
  /external/boringssl/src/util/
diff_asm.go 33 path = strings.Replace(path, filepath.FromSlash("/fipsmodule/"), string(filepath.Separator), 1)

Completed in 648 milliseconds

1 2 3 4