Searched defs:OpName (Results 1 - 12 of 12) sorted by relevance

/external/skia/src/animator/
H A DSkScriptDecompile.cpp16 static const struct OpName { struct
/external/clang/lib/AST/
H A DDeclarationName.cpp175 const char *OpName = OperatorNames[N.getCXXOverloadedOperator()]; local
176 assert(OpName && "not an overloaded operator");
179 if (OpName[0] >= 'a' && OpName[0] <= 'z')
181 return OS << OpName;
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp161 std::string OpName = Op.substr(1); local
165 std::string::size_type DotIdx = OpName.find_first_of(".");
167 SubOpName = OpName.substr(DotIdx+1);
170 OpName = OpName.substr(0, DotIdx);
173 unsigned OpIdx = getOperandNamed(OpName);
276 std::string OpName = P.first; local
278 if (OpName.empty()) break;
281 std::pair<unsigned,unsigned> Op = ParseOperandName(OpName, false);
H A DAsmMatcherEmitter.cpp660 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
662 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
1634 const std::string &OpName = OpInfo->Name; local
1647 TheDef->getName() + "' has operand '" + OpName +
H A DCodeGenDAGPatterns.cpp2041 TreePatternNode *TreePattern::ParseTreePattern(Init *TheInit, StringRef OpName){ argument
2052 OpName);
2056 if (R->getName() == "node" && !OpName.empty()) {
2057 if (OpName.empty())
2059 Args.push_back(OpName);
2062 Res->setName(OpName);
2068 if (OpName.empty())
2071 Args.push_back(OpName);
2072 Res->setName(OpName);
2077 if (!OpName
2957 const std::string &OpName = CGI.Operands[i].Name; local
2989 const std::string &OpName = Op.Name; local
[all...]
/external/llvm/lib/Target/R600/
H A DR600Defines.h65 namespace OpName { namespace
H A DSIInstrInfo.cpp52 static bool nodesHaveSameOperandValue(SDNode *N0, SDNode* N1, unsigned OpName) { argument
56 int Op0Idx = AMDGPU::getNamedOperandIdx(Opc0, OpName);
57 int Op1Idx = AMDGPU::getNamedOperandIdx(Opc1, OpName);
107 if (AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::data1) != -1 ||
108 AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::data1) != -1)
144 if (!nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::soffset) ||
146 !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::vaddr) ||
147 !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::srsrc))
150 int OffIdx0 = AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::offset);
151 int OffIdx1 = AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName
[all...]
/external/clang/lib/Sema/
H A DSemaLookup.cpp2395 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op); local
2396 LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName);
H A DSemaCodeComplete.cpp3994 DeclarationName OpName = Context.DeclarationNames local
3996 LookupResult R(*this, OpName, Loc, LookupOrdinaryName);
H A DSemaOverload.cpp6576 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op); local
6599 LookupResult Operators(*this, OpName, OpLoc, LookupOrdinaryName);
10610 DeclarationName OpName =
10612 LookupResult R(SemaRef, OpName, OpLoc, Sema::LookupOperatorName);
10906 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
10908 DeclarationNameInfo OpNameInfo(OpName, OpLoc);
10954 AddArgumentDependentLookupCandidates(OpName, OpLoc, ArgsArray,
11096 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
11118 DeclarationNameInfo OpNameInfo(OpName, OpLoc);
11166 AddArgumentDependentLookupCandidates(OpName, OpLo
[all...]
H A DSemaExpr.cpp1487 DeclarationName OpName = local
1489 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1492 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1575 DeclarationName OpName = local
1577 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1584 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
3230 DeclarationName OpName = local
3232 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
3239 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
/external/v8/src/
H A Dhydrogen-instructions.cc1206 const char* HUnaryMathOperation::OpName() const { function in class:v8::internal::HUnaryMathOperation
1259 return os << OpName() << " " << NameOf(value());

Completed in 916 milliseconds