Searched defs:pToken (Results 1 - 10 of 10) sorted by relevance
/frameworks/compile/mclinker/include/mcld/Script/ |
H A D | FileToken.h | 32 static bool classof(const InputToken* pToken) { argument 33 return pToken->type() == InputToken::File; 38 static void destroy(FileToken*& pToken);
|
H A D | NameSpec.h | 32 static bool classof(const InputToken* pToken) { argument 33 return pToken->type() == InputToken::NameSpec; 38 static void destroy(NameSpec*& pToken);
|
H A D | InputToken.h | 35 static bool classof(const StrToken* pToken) { argument 36 return pToken->kind() == StrToken::Input;
|
H A D | StrToken.h | 42 static bool classof(const StrToken* pToken) { argument 43 return pToken->kind() == StrToken::String; 48 static void destroy(StrToken*& pToken);
|
H A D | WildcardPattern.h | 49 static bool classof(const StrToken* pToken) { argument 50 return pToken->kind() == StrToken::Wildcard; 56 static void destroy(WildcardPattern*& pToken);
|
H A D | Operand.h | 44 static bool classof(const ExprToken* pToken) { argument 45 return pToken->kind() == ExprToken::OPERAND;
|
H A D | Operator.h | 109 static bool classof(const ExprToken* pToken) { argument 110 return pToken->kind() == ExprToken::OPERATOR;
|
/frameworks/compile/mclinker/lib/Script/ |
H A D | StringList.cpp | 31 void StringList::push_back(StrToken* pToken) { argument 32 m_Tokens.push_back(pToken);
|
H A D | RpnExpr.cpp | 50 void RpnExpr::push_back(ExprToken* pToken) { argument 51 m_TokenQueue.push_back(pToken); 70 RpnExpr::iterator RpnExpr::insert(iterator pPosition, ExprToken* pToken) { argument 71 return m_TokenQueue.insert(pPosition, pToken);
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | EhFrameReader.cpp | 167 const EhFrameReader::Token& pToken) { 169 ConstAddress handler = pRegion.begin() + pToken.data_off; 172 uint64_t pr_ptr_data_offset = pToken.data_off; 216 pEhFrame.getCIEMap().insert(std::make_pair(pToken.file_off, cie)); 329 pEhFrame.getCIEMap().insert(std::make_pair(pToken.file_off, cie)); 335 const EhFrameReader::Token& pToken) { 336 if (pToken.data_off == pRegion.size()) 340 *(const int32_t*)(pRegion.begin() + pToken.data_off - 4); 342 (size_t)((int64_t)(pToken.file_off + 4) - (int32_t)offset); 356 const EhFrameReader::Token& pToken) { 165 addCIE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument 333 addFDE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument 354 addTerm(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument 360 reject(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument [all...] |
Completed in 58 milliseconds