/external/llvm/tools/llvm-nm/ |
llvm-nm.cpp | 310 Module *Result = 0; 312 Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage); 314 if (Result) { 315 DumpSymbolNamesFromModule(Result); 316 delete Result;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
AndroidSpellCheckerService.java | 105 public static class Result { 108 public Result(final String[] gatheredSuggestions, final boolean hasLikelySuggestions) { 193 public Result getResults(final int capitalizeType, final Locale locale) { 249 return new Result(gatheredSuggestions, hasLikelySuggestions); 451 final SuggestionsGatherer.Result result = suggestionsGatherer.getResults( local 459 Log.i(TAG, "HasLikelySuggestions = " + result.mHasLikelySuggestions); 460 if (null != result.mSuggestions) { 461 for (String suggestion : result.mSuggestions) { 467 // TODO: actually use result.mHasLikelySuggestion [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 771 SDNode *Result; 780 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo)); 784 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi)); 786 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64, 787 SDValue(Result, 0), getI32Imm(Lo)); 790 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi)); 794 if (!Shift) return Result; 798 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64, 799 SDValue(Result, 0), 806 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64 [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 33 uint64_t * result = new uint64_t[numWords]; local 34 assert(result && "APInt memory allocation fails!"); 35 memset(result, 0, numWords * sizeof(uint64_t)); 36 return result; 42 uint64_t * result = new uint64_t[numWords]; local 43 assert(result && "APInt memory allocation fails!"); 44 return result; 203 /// no further borrowing is neeeded or it runs out of "digits" in x. The result 231 /// places the result in dest. 284 /// Multiplies an integer array, x, by a uint64_t integer and places the result [all...] |
/external/clang/lib/Sema/ |
SemaExprMember.cpp | 628 ExprResult Result = 636 if (Result.isInvalid()) { 641 if (Result.get()) 642 return move(Result); 685 ExprResult result local 687 if (result.isInvalid()) return ExprError(); 689 baseObjectExpr = result.take(); 731 Expr *result = baseObjectExpr; local 745 result = BuildFieldReferenceExpr(*this, result, baseObjectIsPointer [all...] |
SemaTemplate.cpp | 91 // A lookup that finds an injected-class-name (10.2) can result in an 454 ParsedTemplateArgument Result(*this); 455 Result.EllipsisLoc = EllipsisLoc; 456 return Result; [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-spec-builders.h | 142 // the action's result. The call description string will be used in 151 // the action's result. 205 // Returns the result of invoking this mock function with the given 208 // result. 797 // Adds unsatisfied pre-requisites of this expectation to 'result'. 799 void FindUnsatisfiedPrerequisites(ExpectationSet* result) const; 868 typedef typename Function<F>::Result Result; [all...] |
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | 105 /// This means that some function calls G and passes its result as an 398 Liveness Result = MaybeLive; 401 Result = SurveyUse(I, MaybeLiveUses, RetValNum); 402 if (Result == Live) 405 return Result; 440 /// Adds all uses that cause the result to be MaybeLive to MaybeLiveRetUses. If 441 /// the result is Live, MaybeLiveUses might be modified but its content should 445 Liveness Result = MaybeLive; 449 Result = SurveyUse(I, MaybeLiveUses); 450 if (Result == Live [all...] |
/external/llvm/lib/VMCore/ |
ConstantFold.cpp | 65 std::vector<Constant*> Result; 68 Result.push_back(ConstantExpr::getBitCast(CV->getOperand(i), 70 return ConstantVector::get(Result); 513 // [us]itofp(undef) = 0, because the result value is bounded. [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | 187 /// this captures the expression result of the last sub-statement and returns it 738 // Emit the result value, even if unused, to evalute the side effects. 746 // which means doing nothing: the appropriate result has already been 763 RValue Result = EmitReferenceBindingToExpr(RV, /*InitializedDecl=*/0); 764 Builder.CreateStore(Result.getScalarVal(), ReturnValue); 1247 bool result = Target.resolveSymbolicName(Constraint, local [all...] |
/external/llvm/lib/Analysis/ |
MemoryDependenceAnalysis.cpp | 383 // clobber result, allowing the client to decide to widen the load if 452 // a subsequent bitcast of the malloc call result. There can be stores to 494 // Check for a cached result 541 // Remember the result! 564 /// "NonLocal" result for all blocks where the value is live across. 714 SmallVectorImpl<NonLocalDepResult> &Result) { 717 Result.clear(); 727 Result, Visited, true)) 729 Result.clear(); 730 Result.push_back(NonLocalDepResult(FromBB [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCasts.cpp | 375 // If we are truncating the result of this SHL, and if it's a shift of a 429 if (Instruction *Result = commonCastTransforms(CI)) 430 return Result; 474 // If the shift amount is larger than the size of A, then the result is 481 // type, then zero extend or truncate to the result. 568 // Insert the shift to put the result in the low bit. 606 Value *Result = Builder->CreateXor(LHS, RHS); 610 Result = Builder->CreateAnd(Result, 614 Result = Builder->CreateLShr [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToXMLSAXHandler.java | 28 import javax.xml.transform.Result; 108 processingInstruction(Result.PI_ENABLE_OUTPUT_ESCAPING, ""); 110 processingInstruction(Result.PI_DISABLE_OUTPUT_ESCAPING, "");
|
ToXMLStream.java | 26 import javax.xml.transform.Result; 259 if (target.equals(Result.PI_DISABLE_OUTPUT_ESCAPING)) 263 else if (target.equals(Result.PI_ENABLE_OUTPUT_ESCAPING))
|
/external/llvm/utils/TableGen/ |
InstrInfoEmitter.cpp | 53 std::vector<std::string> Result; 129 Result.push_back(Res); 133 return Result;
|
/prebuilt/common/layoutlib_api/ |
layoutlib_api-prebuilt.jar | |
/external/chromium/chrome/browser/printing/ |
printer_query.cc | 36 PrintingContext::Result result) { 38 last_status_ = result; 39 if (result != PrintingContext::FAILED) { 132 // thread. It's not clear to me if this may result in blocking the current
|
/external/chromium/chrome/browser/remoting/ |
directory_add_request.cc | 73 Result result; local 87 result = SUCCESS; 94 result = ERROR_EXISTS; 96 result = ERROR_INVALID_REQUEST; 101 result = ERROR_AUTH; 105 result = ERROR_SERVER; 109 result = ERROR_OTHER; 112 result = ERROR_OTHER; 115 if (result != SUCCESS) [all...] |
/external/chromium/chrome/common/extensions/ |
update_manifest_unittest.cc | 146 const UpdateManifest::Result* firstResult = &parser.results().list.at(0);
|
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 74 /// bits of the result and return true. Otherwise, return false. 82 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
|
/external/clang/include/clang/Sema/ |
Initialization.h | 50 /// \brief The entity being initialized is the result of a function call. 130 /// \brief Create the initialization entity for the result of a 185 /// \brief Create the initialization entity for the result of a function. 214 InitializedEntity Result(EK_Temporary, SourceLocation(), 216 Result.TypeInfo = TypeInfo; 217 return Result; 300 /// the result of a function call. 643 /// \brief The failed result of overload resolution. 753 /// \param IsLValue true if the result of this cast will be treated as 838 void SetOverloadFailure(FailureKind Failure, OverloadingResult Result); [all...] |
/external/clang/lib/AST/ |
DeclBase.cpp | 259 /// When it returns an availability result other than \c AR_Available, 334 AvailabilityResult Result = AR_Available; 339 if (Result >= AR_Deprecated) 345 Result = AR_Deprecated; 362 if (AR > Result) { 363 Result = AR; 373 return Result; [all...] |
DeclTemplate.cpp | 601 ClassTemplateSpecializationDecl *Result 608 Context.getTypeDeclType(Result, PrevDecl); 609 return Result; 697 ClassTemplatePartialSpecializationDecl *Result 706 Result->setSpecializationKind(TSK_ExplicitSpecialization); 708 Context.getInjectedClassNameType(Result, CanonInjectedType); 709 return Result; 729 FriendTemplateDecl *Result 731 return Result; [all...] |
DeclarationName.cpp | 206 std::string Result; 207 llvm::raw_string_ostream OS(Result); 559 std::string Result; 560 llvm::raw_string_ostream OS(Result);
|
/external/llvm/include/llvm/Object/ |
COFF.h | 100 bool &Result) const;
|