HomeSort by relevance Sort by last modified time
    Searched refs:MaxSplit (Results 1 - 17 of 17) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Support/
StringExtras.cpp 62 StringRef Separators, int MaxSplit,
69 rest.data() != NULL && (MaxSplit < 0 || splits < MaxSplit);
  /external/llvm/lib/Support/
StringRef.cpp 284 StringRef Separator, int MaxSplit,
288 // Count down from MaxSplit. When MaxSplit is -1, this will just split
290 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
292 while (MaxSplit-- != 0) {
311 int MaxSplit, bool KeepEmpty) const {
314 // Count down from MaxSplit. When MaxSplit is -1, this will just split
316 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
318 while (MaxSplit-- != 0)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
String.py 40 # @param MaxSplit: The max number of split values, default is -1
44 def GetSplitValueList(String, SplitTag=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
57 if MaxSplit > 0 and len(ValueList) >= MaxSplit:
85 # @param MaxSplit: The max number of split values, default is -1
89 def GetSplitList(String, SplitStr=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
90 return map(lambda l: l.strip(), String.split(SplitStr, MaxSplit))
Parsing.py 234 List = GetSplitValueList(String, TAB_EQUAL_SPLIT, MaxSplit = 1)
    [all...]
InfClassObject.py     [all...]
DscClassObject.py     [all...]
  /external/clang/lib/Format/
BreakableToken.cpp 50 unsigned MaxSplit = ColumnLimit - ContentStartColumn + 1;
54 NumChars < MaxSplit && MaxSplitBytes < Text.size();) {
68 // reaches past MaxSplit.
93 unsigned MaxSplit = ColumnLimit - UsedColumns;
109 if (Chars > MaxSplit || Text.size() <= Advance)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
StringRef.cpp 315 StringRef Separator, int MaxSplit,
319 // Count down from MaxSplit. When MaxSplit is -1, this will just split
321 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
323 while (MaxSplit-- != 0) {
342 int MaxSplit, bool KeepEmpty) const {
345 // Count down from MaxSplit. When MaxSplit is -1, this will just split
347 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
349 while (MaxSplit-- != 0)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringRef.cpp 329 StringRef Separator, int MaxSplit,
333 // Count down from MaxSplit. When MaxSplit is -1, this will just split
335 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
337 while (MaxSplit-- != 0) {
356 int MaxSplit, bool KeepEmpty) const {
359 // Count down from MaxSplit. When MaxSplit is -1, this will just split
361 // intentionally; if we ever want that we can make MaxSplit a 64-bit integer
363 while (MaxSplit-- != 0)
    [all...]
  /external/llvm/include/llvm/ADT/
StringRef.h 500 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
501 /// \p MaxSplit splits are done and consequently <= \p MaxSplit + 1
504 /// still count when considering \p MaxSplit
506 /// Separator.join(A) == *this if MaxSplit == -1 and KeepEmpty == true
510 /// \param MaxSplit - The maximum number of times the string is split.
513 StringRef Separator, int MaxSplit = -1,
518 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
519 /// \p MaxSplit splits are done and consequently <= \p MaxSplit +
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringRef.h 400 /// Each substring is stored in \arg A. If \arg MaxSplit is >= 0, at most
401 /// \arg MaxSplit splits are done and consequently <= \arg MaxSplit
404 /// still count when considering \arg MaxSplit
406 /// Separator.join(A) == *this if MaxSplit == -1 and KeepEmpty == true
410 /// \param MaxSplit - The maximum number of times the string is split.
413 StringRef Separator, int MaxSplit = -1,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
StringRef.h 769 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
770 /// \p MaxSplit splits are done and consequently <= \p MaxSplit + 1
773 /// still count when considering \p MaxSplit
775 /// Separator.join(A) == *this if MaxSplit == -1 and KeepEmpty == true
779 /// \param MaxSplit - The maximum number of times the string is split.
782 StringRef Separator, int MaxSplit = -1,
787 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
788 /// \p MaxSplit splits are done and consequently <= \p MaxSplit +
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringRef.h 743 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
744 /// \p MaxSplit splits are done and consequently <= \p MaxSplit + 1
747 /// still count when considering \p MaxSplit
749 /// Separator.join(A) == *this if MaxSplit == -1 and KeepEmpty == true
753 /// \param MaxSplit - The maximum number of times the string is split.
756 StringRef Separator, int MaxSplit = -1,
761 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
762 /// \p MaxSplit splits are done and consequently <= \p MaxSplit +
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
String.py 43 # @param MaxSplit: The max number of split values, default is -1
46 def GetSplitValueList(String, SplitTag=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
47 return map(lambda l: l.strip(), String.split(SplitTag, MaxSplit))
Parsing.py 63 List = GetSplitValueList(String, DataType.TAB_EQUAL_SPLIT, MaxSplit=1)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 450 milliseconds