HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 201 - 225 of 356) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/Sema/
SemaStmtAsm.cpp 60 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
181 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
182 if (Result.isInvalid())
185 Exprs[i] = Result.take();
623 ExprResult Result = ActOnIdExpression(getCurScope(), SS, Loc, Id,
625 if (!Result.isInvalid()) {
629 OutputExprs.push_back(Result.take());
634 InputExprs.push_back(Result.take());
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 837 DeclContext::lookup_result Result = D->second.getLookupResult();
838 while (Result.first != Result.second) {
839 Writer.GetDeclRef(*Result.first);
840 ++Result.first;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 32 // A function that returns a reference to 'int' will have a result type
131 ProgramStateRef Result = (Orig ? Orig : getState());
190 return Result->invalidateRegions(RegionsToInvalidate, getOriginExpr(),
437 const CXXMethodDecl *Result = MD->getCorrespondingMethodInClass(RD, true);
438 if (!Result) {
450 if (!Result->hasBody(Definition))
669 // This handles the funny case of assigning to the result of a getter.
ProgramState.cpp 110 ProgramStateRef Result = getPersistentState(NewState);
111 return ConstraintMgr->removeDeadBindings(Result, SymReaper);
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 85 const T *Result;
87 explicit StringSwitch(StringRef Str) : Str(Str), Result(0) {}
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 301 /// \brief Tracks the number of code-completion result objects that are
663 CXCodeCompleteResults *result; member in struct:CodeCompleteAtInfo
675 CCAI->result = 0;
811 CCAI->result = Results;
832 return CCAI.result;
975 int result = XText.compare_lower(YText); local
    [all...]
CXComment.cpp 515 llvm::raw_svector_ostream &Result) {
516 Result << "<" << C->getTagName();
520 Result << " ";
522 Result << Attr.Name;
524 Result << "=\"" << Attr.Value << "\"";
529 Result << ">";
531 Result << "/>";
540 Result(Str), Traits(Traits)
570 llvm::raw_svector_ostream Result;
595 Result << " ";
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MifULFormat.c 226 NFCSTATUS Result = NFCSTATUS_SUCCESS;
240 Result = phFriNfc_MfUL_H_WrRd(NdefSmtCrdFmt);
241 return Result;
250 NFCSTATUS result = NFCSTATUS_SUCCESS; local
257 result = phFriNfc_MfUL_H_WrRd (NdefSmtCrdFmt);
259 return result;
529 NFCSTATUS result = NFCSTATUS_SUCCESS; local
578 result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
590 return result;
613 NFCSTATUS result = NFCSTATUS_SUCCESS local
736 NFCSTATUS result = NFCSTATUS_SUCCESS; local
793 NFCSTATUS result = NFCSTATUS_SUCCESS; local
822 NFCSTATUS result = NFCSTATUS_SUCCESS; local
    [all...]
phFriNfc_MifareStdMap.c 248 NFCSTATUS Result);
6065 NFCSTATUS result = NFCSTATUS_SUCCESS; local
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 256 ExprAST *Result = new NumberExprAST(NumVal);
258 return Result;
  /external/llvm/include/llvm/ADT/
SmallVector.h 426 T Result = ::std::move(this->back());
428 T Result = this->back();
431 return Result;
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 51 // pointer is not the result of a load instruction. Currently
151 /// represented in the result.
207 Value *Result = GetLinearExpression(CastOp, Scale, Offset, Extension,
212 return Result;
    [all...]
ConstantFolding.cpp 77 // and insert them into our result.
79 APInt Result(IT->getBitWidth(), 0);
81 Result <<= BitShift;
83 Result |= CDV->getElementAsInteger(NumSrcElts-i-1);
85 Result |= CDV->getElementAsInteger(i);
88 return ConstantInt::get(IT, Result);
158 SmallVector<Constant*, 32> Result;
166 // Build each element of the result.
185 Result.push_back(Elt);
187 return ConstantVector::get(Result);
    [all...]
LazyValueInfo.cpp 229 // a function. The correct result is to pick up RHS.
366 LVILatticeVal &Result);
534 LVILatticeVal Result;
588 LVILatticeVal Result; // Start Undefined.
612 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
614 Result.markOverdefined();
616 BBLV = Result;
621 // result.
629 Result.mergeIn(EdgeResult);
633 if (Result.isOverdefined())
    [all...]
  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 253 std::string Result;
254 raw_string_ostream OS(Result);
258 return Result;
265 std::string Result;
266 raw_string_ostream OS(Result);
269 return Result;
548 /// rotation alone won't fix it. Because such a block will always result in an
790 // predecessors to the header if there is one which will result in strictly
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 79 /// the insert there, and then read the result back.
86 /// performs the same shuffe in terms of order or result bytes, but on a type
177 /// performs the same shuffe in terms of order or result bytes, but on a type
282 SDValue Result =
287 return Result;
289 SDValue Result =
293 return Result;
315 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
316 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo()
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 536 GenericValue Result;
544 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
549 return Result;
558 GenericValue Result = getConstantValue(Op0);
562 char* tmp = (char*) Result.PointerVal;
563 Result = PTOGV(tmp + Offset);
564 return Result;
792 GenericValue Result;
795 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
798 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble()
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 360 bool result = ExecutionEngine::removeModule(M); local
384 return result;
546 // Return result of the call.
552 GenericValue Result = runFunction(Stub, std::vector<GenericValue>());
555 // And return the result.
556 return Result;
  /external/llvm/lib/Linker/
LinkModules.cpp 245 Type *Result = getImpl(Ty);
250 return Result;
396 /// what the result will look like in the destination module.
492 /// the result will look like in the destination module. In particular, it
511 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 786 SDNode *Result;
795 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
799 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
801 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
802 SDValue(Result, 0), getI32Imm(Lo));
805 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
809 if (!Shift) return Result;
813 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
814 SDValue(Result, 0),
821 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 812 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
813 if (Result.second) {
818 const ComparableFunction &OldF = *Result.first;
  /external/llvm/lib/VMCore/
ConstantFold.cpp 58 SmallVector<Constant*, 16> Result;
64 Result.push_back(C);
67 return ConstantVector::get(Result);
510 // [us]itofp(undef) = 0, because the result value is bounded.
698 // If the condition is a vector constant, fold the result elementwise.
700 SmallVector<Constant*, 16> Result;
708 Result.push_back(Res);
712 if (Result.size() == V1->getType()->getVectorNumElements())
713 return ConstantVector::get(Result);
765 SmallVector<Constant*, 16> Result;
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 286 /// Result - The result instruction.
287 DagInit *Result;
290 /// Result).
321 /// ResultOperands - The decoded operands for the result instruction.
325 /// indices to identify the corresponding operand in the result
333 bool tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 205 public static final class Result {
208 public Result(final String[] gatheredSuggestions,
293 public Result getResults(final int capitalizeType, final Locale locale) {
350 return new Result(gatheredSuggestions, hasRecommendedSuggestions);
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h 50 template <typename Result, typename ArgumentTuple>
392 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
395 // type, and whose return type is Result. For example,
399 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
410 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
414 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
429 template <typename Result, typename ArgumentTuple>
430 class SelectArgs<Result, ArgumentTuple,
433 typedef Result type();
441 template <typename Result, typename ArgumentTuple, int k1
    [all...]

Completed in 1159 milliseconds

1 2 3 4 5 6 7 891011>>