OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SplitTag
(Results
1 - 3
of
3
) sorted by null
/external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp
133
std::pair<StringRef, StringRef>
SplitTag
= RawTag.split(' ');
134
return MarkupTag(
SplitTag
.first,
SplitTag
.second, Loc);
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
String.py
34
# Get a value list from a string with multiple values splited with
SplitTag
35
# The default
SplitTag
is DataType.TAB_VALUE_SPLIT
39
# @param
SplitTag
: The split key, default is DataType.TAB_VALUE_SPLIT
44
def GetSplitValueList(String,
SplitTag
=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
54
if not InString and Char ==
SplitTag
:
80
# The default
SplitTag
is DataType.TAB_VALUE_SPLIT
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
String.py
37
# Get a value list from a string with multiple values splited with
SplitTag
38
# The default
SplitTag
is DataType.TAB_VALUE_SPLIT
42
# @param
SplitTag
: The split key, default is DataType.TAB_VALUE_SPLIT
46
def GetSplitValueList(String,
SplitTag
=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
47
return map(lambda l: l.strip(), String.split(
SplitTag
, MaxSplit))
Completed in 566 milliseconds