Searched defs:Result (Results 226 - 250 of 309) sorted by relevance

1234567891011>>

/external/clang/lib/CodeGen/
H A DCGStmt.cpp768 RValue Result = EmitReferenceBindingToExpr(RV, /*InitializedDecl=*/0); local
769 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
1252 std::string Result; local
1257 Result += Target.convertConstraint(Constraint);
1267 Result += "|";
1270 Result += "imr";
1280 Result += llvm::utostr(Index);
1288 return Result;
1634 llvm::CallInst *Result = Builder.CreateCall(IA, Args); local
1635 Result
[all...]
/external/clang/lib/Lex/
H A DLexer.cpp210 std::string Result = Str; local
212 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
213 if (Result[i] == '\\' || Result[i] == Quote) {
214 Result.insert(Result.begin()+i, '\\');
218 return Result;
305 std::string Result;
306 Result.reserve(Tok.getLength());
312 Result
1466 LexIdentifier(Token &Result, const char *CurPtr) argument
1548 LexNumericConstant(Token &Result, const char *CurPtr) argument
1578 LexUDSuffix(Token &Result, const char *CurPtr) argument
1618 LexStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1671 LexRawStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1750 LexAngledStringLiteral(Token &Result, const char *CurPtr) argument
1785 LexCharConstant(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1844 SkipWhitespace(Token &Result, const char *CurPtr) argument
1891 SkipBCPLComment(Token &Result, const char *CurPtr) argument
2020 SaveBCPLComment(Token &Result, const char *CurPtr) argument
2122 SkipBlockComment(Token &Result, const char *CurPtr) argument
2292 std::string Result; local
2342 LexEndOfFile(Token &Result, const char *CurPtr) argument
2542 LexTokenInternal(Token &Result) argument
[all...]
/external/clang/lib/Parse/
H A DParseDecl.cpp4783 TypeResult Result = ParseTypeName(); local
4784 if (Result.isInvalid()) {
4801 DiagID, Result.release()))
H A DParseDeclCXX.cpp650 ExprResult Result; local
655 Result = getExprAnnotation(Tok);
658 if (Result.isInvalid()) {
682 Result = ParseExpression();
683 if (Result.isInvalid()) {
698 Result = Actions.ActOnDecltypeExpression(Result.take());
699 if (Result.isInvalid()) {
711 DiagID, Result.release())) {
746 TypeResult Result local
1324 bool Result; local
1437 BaseResult Result = ParseBaseSpecifier(ClassDecl); local
2564 ExceptionSpecificationType Result = EST_None; local
3024 IfExistsCondition Result; local
[all...]
H A DParseExprCXX.cpp954 ExprResult Result = ParseExpression();
959 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
960 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
963 T.getOpenLocation(), Result.take(),
966 return move(Result);
987 ExprResult Result; local
998 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
1011 Result = ParseExpression();
1014 if (Result.isInvalid())
1022 Result
1805 ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext, ParsedType ObjectType, UnqualifiedId &Result) argument
2028 ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext, bool AllowDestructorName, bool AllowConstructorName, ParsedType ObjectType, SourceLocation& TemplateKWLoc, UnqualifiedId &Result) argument
[all...]
H A DParseObjc.cpp1015 Decl *Result local
1022 PD.complete(Result);
1023 return Result;
1141 Decl *Result local
1149 PD.complete(Result);
1150 return Result;
1213 bool Result = ParseObjCProtocolReferences(ProtocolDecl, ProtocolLocs, false, local
1219 return Result;
/external/clang/lib/Sema/
H A DSemaCast.cpp1332 ExprResult Result
1334 if (Result.isInvalid()) {
1344 SrcExpr = move(Result);
1640 TryCastResult Result = TC_NotApplicable; local
1645 Result = TC_Success;
1647 return Result;
H A DSemaExprMember.cpp664 ExprResult Result = local
672 if (Result.isInvalid()) {
677 if (Result.get())
678 return move(Result);
1492 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); local
1493 if (Result.isInvalid()) return ExprError();
1494 Base = Result.take();
1498 Result = ActOnDependentMemberExpr(Base, Base->getType(),
1505 Result = LookupMemberExpr(R, BaseResult, IsArrow, OpLoc,
1511 if (Result
[all...]
H A DSemaTemplateInstantiate.cpp56 MultiLevelTemplateArgumentList Result; local
59 Result.addOuterTemplateArguments(Innermost);
75 Result.addOuterTemplateArguments(0, 0);
76 return Result;
90 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
109 Result.addOuterTemplateArguments(TemplateArgs);
121 Result.addOuterTemplateArguments(Injected.first, Injected.second);
140 Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs());
150 return Result;
738 TemplateArgument Result; local
847 ExprResult Result = local
1299 QualType Result local
1334 QualType Result local
1364 Result); local
1437 QualType Result = Instantiator.TransformType(TLB, TL); local
1513 QualType Result; local
2249 bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec, local
2518 Subst(const TemplateArgumentLoc *Args, unsigned NumArgs, TemplateArgumentListInfo &Result, const MultiLevelTemplateArgumentList &TemplateArgs) argument
[all...]
H A DSemaTemplateInstantiateDecl.cpp79 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(), local
81 if (!Result.isInvalid())
82 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
84 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(), local
88 if (Result)
89 AddAlignedAttr(Aligned->getLocation(), New, Result);
904 if (ClassTemplatePartialSpecializationDecl *Result
906 return Result;
3359 NamedDecl *Result = 0; local
3362 Result
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp1531 SVal Result = (returnEnd ? UnknownVal() : DstVal); local
1569 Result = lastElement;
1596 if (returnEnd && Result.isUnknown()) {
1598 Result = svalBuilder.getConjuredSymbolVal(NULL, CE, LCtx, Count);
1602 state = state->BindExpr(CE, LCtx, Result);
/external/libnfc-nxp/src/
H A DphFriNfc_TopazDynamicMap.c562 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, local
607 Result = phFriNfc_Tpz_H_NxpRead(NdefMap);
610 return Result;
628 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
653 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
661 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
699 Result = phFriNfc_Tpz_H_NxpRead(NdefMap);
706 Result = phFriNfc_Tpz_H_RemainingReadDataCopy (NdefMap);
710 return Result;
764 NFCSTATUS Result local
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp302 ExprAST *Result = new NumberExprAST(NumVal); local
304 return Result;
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp857 if (Constant *Result = computePointerDifference(*Q.TD, X, Y))
858 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
2761 Value *Result; local
2765 Result = ConstantFoldInstruction(I, TD, TLI);
2768 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
2774 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
2780 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
2783 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
2786 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
2789 Result
[all...]
H A DScalarEvolution.cpp793 const SCEV *Result = getStart(); local
802 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
804 return Result;
3990 ConstantInt *Result = MulC->getValue();
3993 if (!Result || Result->getValue().getActiveBits() > 32)
3996 return (unsigned)Result->getZExtValue();
4055 BackedgeTakenInfo Result = ComputeBackedgeTakenCount(L);
4057 if (Result
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp61 StrTy &Result) {
66 Result += (char)Record[i];
60 ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx, StrTy &Result) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1765 ChainResult Result = CR_Simple; local
1814 Result = CR_LeadsToInteriorNode;
1861 Result = CR_LeadsToInteriorNode;
1867 return Result;
2091 /// fail, set Result=true and return anything. If the current predicate is
2092 /// known to pass, set Result=false and return the MatcherIndex to continue
2093 /// with. If the current predicate is unknown, set Result=false and return the
2097 bool &Result, SelectionDAGISel &SDISel,
2101 Result = false;
2104 Result
2095 IsPredicateKnownToFail(const unsigned char *Table, unsigned Index, SDValue N, bool &Result, SelectionDAGISel &SDISel, SmallVectorImpl<std::pair<SDValue, SDNode*> > &RecordedNodes) argument
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp652 void *Result = JR->TheJIT->getPointerToGlobalIfAvailable(F); local
654 if (!Result) {
669 Result = JR->TheJIT->getPointerToFunction(F);
689 JR->revGOTMap[Result] = JR->revGOTMap[Stub];
691 return Result;
/external/llvm/lib/Support/
H A DYAMLParser.cpp515 , SmallVectorImpl<char> &Result) {
517 Result.push_back(UnicodeScalarValue & 0x7F);
521 Result.push_back(FirstByte);
522 Result.push_back(SecondByte);
527 Result.push_back(FirstByte);
528 Result.push_back(SecondByte);
529 Result.push_back(ThirdByte);
535 Result.push_back(FirstByte);
536 Result.push_back(SecondByte);
537 Result
514 encodeUTF8( uint32_t UnicodeScalarValue , SmallVectorImpl<char> &Result) argument
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp245 int64_t Result = 0; local
248 Result |= Bit->getValue() << i;
252 return IntInit::get(Result);
511 std::string Result = "{ "; local
513 if (i) Result += ", ";
515 Result += Bit->getAsString();
517 Result += "*";
519 return Result + " }";
677 std::string Result = "["; local
679 if (i) Result
823 ListInit *Result = local
863 std::string Result; local
949 int64_t Result; local
974 std::string Result; local
1023 Init *Result = ForeachHelper(LHS, Arg, RHSo, Type, local
1036 Init *Result = EvaluateOperation(RHSoo, LHS, Arg, local
1082 Init *Result = EvaluateOperation(RHSo, LHS, Val, local
1096 Init *Result = EvaluateOperation(RHSo, LHS, Arg, Type, local
1191 Init *Result = ForeachHelper(LHS, MHS, RHS, getType(), local
1249 std::string Result; local
1469 Init *Result = TI->resolveListElementReference(R, RV, Element); local
1636 std::string Result = "(" + Val->getAsString(); local
[all...]
H A DTGParser.cpp462 Record *Result = Records.getClass(Lex.getCurStrVal()); local
463 if (Result == 0)
467 return Result;
481 MultiClass *Result = MultiClasses[Lex.getCurStrVal()]; local
482 if (Result == 0)
486 return Result;
514 SubClassReference Result; local
515 Result.RefLoc = Lex.getLoc();
518 Result.Rec = ParseDefmID();
520 Result
559 SubMultiClassReference Result; local
642 std::vector<unsigned> Result; local
1465 Init *Result = ParseSimpleValue(CurRec, ItemType, Mode); local
1591 std::vector<std::pair<llvm::Init*, std::string> > Result; local
1626 std::vector<Init*> Result; local
2083 std::vector<LetRecord> Result; local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1519 unsigned Result = createResultReg(ARM::DPRRegisterClass); local
1521 TII.get(ARM::VCVTDS), Result)
1523 UpdateValueMap(I, Result);
1538 unsigned Result = createResultReg(ARM::SPRRegisterClass); local
1540 TII.get(ARM::VCVTSD), Result)
1542 UpdateValueMap(I, Result);
H A DARMISelDAGToDAG.cpp3115 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
3117 Glue = Result.getValue(2);
3118 ReplaceUses(SDValue(N, 0), Result); local
3121 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
3123 Glue = Result.getValue(2);
3124 ReplaceUses(SDValue(N, 1), Result); local
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp2171 MachineInstr *Result = local
2173 if (Result == 0) return false;
2175 FuncInfo.MBB->insert(FuncInfo.InsertPt, Result);
H A DX86ISelDAGToDAG.cpp516 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp, local
525 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); local
2151 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2153 InFlag = Result.getValue(2);
2158 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2161 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2162 Result,
2166 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2170 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2172 InFlag = Result
2173 ReplaceUses(SDValue(Node, 0), Result); local
2178 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2181 ReplaceUses(SDValue(Node, 1), Result); local
2297 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2318 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2321 ReplaceUses(SDValue(Node, 0), Result); local
2326 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, local
2329 ReplaceUses(SDValue(Node, 1), Result); local
2486 MachineSDNode *Result = CurDAG->getMachineNode(newOpc, local
[all...]

Completed in 363 milliseconds

1234567891011>>