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

1 2

  /external/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Core/
TokenRewriter.h 29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
33 /// TokenRefTy - This is the type used to refer to a token in the TokenList.
55 token_iterator token_begin() const { return TokenList.begin(); }
56 token_iterator token_end() const { return TokenList.end(); }
  /art/cmdline/
token_range.h 39 using TokenList = std::vector<std::string>;
42 explicit TokenRange(const TokenList& token_list)
43 : token_list_(new TokenList(token_list)),
51 : token_list_(new TokenList(it_begin, it_end)),
58 TokenRange(const TokenList& token_list ATTRIBUTE_UNUSED,
59 TokenList::const_iterator it_begin,
60 TokenList::const_iterator it_end)
61 : token_list_(new TokenList(it_begin, it_end)),
71 : token_list_(new TokenList(&token_list[0], &token_list[length])),
77 explicit TokenRange(TokenList&& token_list
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfPcdSectionParser.py 107 TokenList = ['']
109 TokenList = PcdEntryReturn[0]
111 ValueList[0:len(TokenList)] = TokenList
148 TokenList = GetSplitValueList(LineContent, DT.TAB_VALUE_SPLIT)
154 if len(TokenList) != 3:
163 if len(TokenList) != 1:
170 ValueList[0:len(TokenList)] = TokenList
InfBinarySectionParser.py 141 TokenList = GetSplitValueList(LineContent, DT.TAB_VALUE_SPLIT, 1)
142 ValueList[0:len(TokenList)] = TokenList
152 TokenList = GetSplitValueList(ValueList[1],
157 for Item in TokenList:
169 TokenList = GetSplitValueList(ValueList[1],
174 for Item in TokenList:
182 TokenList = GetSplitValueList(ValueList[1],
186 TokenList = GetSplitValueList(ValueList[1],
192 for Item in TokenList:
    [all...]
DecParser.py 178 TokenList = GetSplitValueList(String, ' ', 1)
179 if len(TokenList) < 2 or TokenList[1] == '':
182 TokenList = GetSplitValueList(TokenList[1], DT.TAB_EQUAL_SPLIT, 1)
183 if TokenList[0] == '':
185 elif not IsValidToken(MACRO_PATTERN, TokenList[0]):
186 self._LoggerError(ST.ERR_DECPARSE_MACRO_NAME_UPPER % TokenList[0])
188 if len(TokenList) == 1:
189 self._LocalMacro[TokenList[0]] = ''
    [all...]
InfDepexSectionParser.py 72 TokenList = GetSplitValueList(LineContent, DT.TAB_COMMENT_SPLIT)
73 ValueList[0:len(TokenList)] = TokenList
InfBuildOptionSectionParser.py 70 TokenList = GetSplitValueList(LineContent, DT.TAB_DEQUAL_SPLIT, 1)
71 if len(TokenList) == 2:
75 TokenList.append('True')
78 TokenList = GetSplitValueList(LineContent, DT.TAB_EQUAL_SPLIT, 1)
82 if len(TokenList) == 2:
83 TokenList.append('False')
92 ValueList[0:len(TokenList)] = TokenList
InfGuidPpiProtocolSectionParser.py 86 TokenList = GetSplitValueList(LineContent, DT.TAB_VALUE_SPLIT, 1)
87 ValueList[0:len(TokenList)] = TokenList
173 TokenList = GetSplitValueList(LineContent, DT.TAB_VALUE_SPLIT, 1)
174 ValueList[0:len(TokenList)] = TokenList
342 TokenList = GetSplitValueList(LineContent, DT.TAB_VALUE_SPLIT, 1)
343 ValueList[0:len(TokenList)] = TokenList
InfPackageSectionParser.py 108 TokenList = GetSplitValueList(PkgLineContent, DT.TAB_VALUE_SPLIT, 1)
109 ValueList[0:len(TokenList)] = TokenList
InfSourceSectionParser.py 114 TokenList = GetSplitValueList(SrcLineContent, DT.TAB_VALUE_SPLIT, 4)
115 ValueList[0:len(TokenList)] = TokenList
InfDefineSectionParser.py 161 TokenList = GetSplitValueList(LineContent, DT.TAB_EQUAL_SPLIT, 1)
162 if len(TokenList) < 2:
165 _ValueList[0:len(TokenList)] = TokenList
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileParser.py 48 TokenList = GetSplitValueList(self._CurrentLine[Match.end(1):], TAB_EQUAL_SPLIT, 1)
50 if not TokenList[0]:
53 if len(TokenList) < 2:
54 TokenList.append('')
57 Name, Value = TokenList
248 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
249 self._ValueList[0:len(TokenList)] = TokenList
257 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
258 self._ValueList[0:len(TokenList)] = TokenList
    [all...]
  /external/clang/lib/Rewrite/
TokenRewriter.cpp 44 AddToken(RawTok, TokenList.end());
56 if (I == token_end()) return TokenList.end();
71 Where = TokenList.insert(Where, T);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenDepex.py 133 self.TokenList = Expression
150 return " ".join(self.TokenList)
163 self.TokenList = self.TokenPattern.findall(self.ExpressionString)
169 for Token in self.TokenList:
250 if self.TokenList[-1] != 'END' and self.TokenList[-1] in self.NonEndingOpcode:
251 EdkLogger.error("GenDepex", PARSER_ERROR, "Extra %s at the end of the dependency expression" % self.TokenList[-1],
253 if self.TokenList[-1] == 'END' and self.TokenList[-2] in self.NonEndingOpcode:
254 EdkLogger.error("GenDepex", PARSER_ERROR, "Extra %s at the end of the dependency expression" % self.TokenList[-2],
    [all...]
BuildEngine.py 468 TokenList = [Token.strip().upper() for Token in RuleName.split('.')]
470 if TokenList[0] == "BUILD":
471 if len(TokenList) == 1:
476 FileType = TokenList[1]
487 FileType = TokenList[0]
488 elif FileType != TokenList[0]:
493 if len(TokenList) > 1:
494 BuildType = TokenList[1]
495 if len(TokenList) > 2:
496 Arch = TokenList[2]
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileParser.py 46 TokenList = GetSplitValueList(self._CurrentLine[Match.end(1):], TAB_EQUAL_SPLIT, 1)
48 if not TokenList[0]:
51 if len(TokenList) < 2:
52 TokenList.append('')
55 Name, Value = TokenList
249 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
250 self._ValueList[0:len(TokenList)] = TokenList
258 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
259 self._ValueList[0:len(TokenList)] = TokenList
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
IniToXml.py 86 TokenList = Line.split(TAB_VALUE_SPLIT)
87 if len(TokenList) > 0:
88 Path = TokenList[0].strip().replace('\\', '/')
94 FileList[0] = TokenList[0].strip()
95 for Token in TokenList[1:]:
353 TokenList = Line.split(TAB_EQUAL_SPLIT, 1)
354 TempKey = TokenList[0].strip()
358 if len(TokenList) < 2 or TempKey not in Map:
383 if (TokenList[1].strip() == ''):
404 Valid, Cause = ParseFileList(TokenList[1], Map, CurrentKey,
    [all...]

Completed in 722 milliseconds

1 2