Searched refs:Result (Results 301 - 325 of 539) sorted by relevance

<<11121314151617181920>>

/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivity.java20 import com.google.zxing.Result;
200 public void handleDecode(Result rawResult, Bitmap barcode) {
223 private void drawResultPoints(Bitmap barcode, Result rawResult) {
/external/chromium/base/
H A Dstl_util-inl.h294 template <class Result, class Arg1, class Arg2>
295 class STLBinaryFunction : public std::binary_function<Arg1, Arg2, Result> {
297 typedef ResultCallback2<Result, Arg1, Arg2> Callback;
304 Result operator() (Arg1 arg1, Arg2 arg2) {
/external/chromium/chrome/browser/printing/
H A Dprinter_query.cc36 PrintingContext::Result result) {
/external/chromium/chrome/browser/remoting/
H A Ddirectory_add_request.cc73 Result result;
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest_unittest.cc146 const UpdateManifest::Result* firstResult = &parser.results().list.at(0);
/external/clang/lib/AST/
H A DDeclTemplate.cpp724 ClassTemplateSpecializationDecl *Result local
731 Context.getTypeDeclType(Result, PrevDecl);
732 return Result;
836 ClassTemplatePartialSpecializationDecl *Result local
845 Result->setSpecializationKind(TSK_ExplicitSpecialization);
847 Context.getInjectedClassNameType(Result, CanonInjectedType);
848 return Result;
872 FriendTemplateDecl *Result local
874 return Result;
H A DDeclarationName.cpp181 std::string Result; local
182 llvm::raw_string_ostream OS(Result);
510 std::string Result; local
511 llvm::raw_string_ostream OS(Result);
/external/llvm/include/llvm/ADT/
H A DValueMap.h302 ValueTypeProxy Result = {I->first.Unwrap(), I->second}; local
303 return Result;
352 ValueTypeProxy Result = {I->first.Unwrap(), I->second}; local
353 return Result;
/external/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h76 /// The output is added to Result, as pairs of <from,to> edge info.
78 SmallVectorImpl<std::pair<const BasicBlock*,const BasicBlock*> > &Result);
/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp410 GetElementPtrInst *Result = local
414 Result->setIsInBounds(GEP->isInBounds());
415 NewInsts.push_back(Result);
416 return Result;
/external/llvm/lib/Archive/
H A DArchiveReader.cpp27 unsigned Result = 0; local
31 return Result;
32 Result |= (unsigned)((*At++) & 0x7F) << Shift;
35 return Result;
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp298 unsigned Result = 0; local
300 Result = (Result<<3) ^ *I;
301 return Result;
H A DCodeGenDAGPatterns.cpp131 std::string Result;
138 if (i) Result += ':';
139 Result += VTName;
143 return Result;
144 return "{" + Result + "}";
662 std::string Result = local
664 return Result + ImmCode;
676 std::string Result; local
678 Result = " SDNode *N = Node;\n";
680 Result
1863 TreePatternNode *Result = new TreePatternNode(Operator, Children, NumResults); local
3050 TreePattern *Result = new TreePattern(CurPattern, LI, false, *this); local
[all...]
/external/clang/lib/Frontend/
H A DASTUnit.cpp347 typedef CodeCompletionResult Result; typedef
348 SmallVector<Result, 8> Results;
358 case Result::RK_Declaration: {
441 case Result::RK_Keyword:
442 case Result::RK_Pattern:
447 case Result::RK_Macro: {
1285 llvm::MemoryBuffer *Result local
1287 memcpy(const_cast<char*>(Result->getBufferStart()),
1289 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
1291 const_cast<char*>(Result
2040 bool Result = Parse(OverrideMainBuffer); local
2171 typedef CodeCompletionResult Result; typedef
2214 typedef CodeCompletionResult Result; typedef
2528 SmallVector<StoredDiagnostic, 4> Result; local
[all...]
/external/clang/lib/Sema/
H A DSemaExprMember.cpp664 ExprResult Result = local
672 if (Result.isInvalid()) {
677 if (Result.get())
678 return Result;
1539 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); local
1540 if (Result.isInvalid()) return ExprError();
1541 Base = Result.take();
1545 Result = ActOnDependentMemberExpr(Base, Base->getType(),
1552 Result = LookupMemberExpr(R, BaseResult, IsArrow, OpLoc,
1558 if (Result
[all...]
H A DSemaDecl.cpp188 LookupResult Result(*this, &II, NameLoc, Kind);
194 LookupQualifiedName(Result, LookupCtx);
196 if (ObjectTypePtr && Result.empty()) {
203 LookupName(Result, S);
207 LookupName(Result, S);
211 switch (Result.getResultKind()) {
216 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(),
245 << Result.getLookupName() << CorrectedQuotedStr << isClassName
262 Result.suppressDiagnostics();
271 if (Result
429 NamedDecl *Result = Corrected.getCorrectionDecl(); local
517 isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result, Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, SourceLocation NameLoc) argument
3429 ExprResult Result = S.RebuildExprInCurrentInstantiation(E); local
4806 NamedDecl *Result = NULL; local
6536 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); local
6564 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, local
8383 DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc, local
[all...]
/external/llvm/lib/Support/
H A DYAMLParser.cpp512 , SmallVectorImpl<char> &Result) {
514 Result.push_back(UnicodeScalarValue & 0x7F);
518 Result.push_back(FirstByte);
519 Result.push_back(SecondByte);
524 Result.push_back(FirstByte);
525 Result.push_back(SecondByte);
526 Result.push_back(ThirdByte);
532 Result.push_back(FirstByte);
533 Result.push_back(SecondByte);
534 Result
511 encodeUTF8( uint32_t UnicodeScalarValue , SmallVectorImpl<char> &Result) argument
[all...]
/external/clang/lib/Analysis/
H A DThreadSafety.cpp566 bool Result = true; local
571 Result = Result && matches(Other, ci, cj);
573 return Result;
993 Context Result = SavedContexts[CtxIndex].second; local
994 return Result;
1180 Context Result = C1; local
1186 Result = removeDefinition(Dec, Result);
1188 Result
1197 Context Result = getEmptyContext(); local
1629 getEdgeLockset(FactSet& Result, const FactSet &ExitSet, const CFGBlock *PredBlock, const CFGBlock *CurrBlock) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java327 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, "");
329 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h127 T Result = back(); local
129 return Result;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp108 SVal Result = C.getSVal(Call.getOriginExpr()); local
109 const MemRegion *RetReg = Result.getAsRegion();
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp85 const T *Result; member in class:llvm::StringSwitch
87 explicit StringSwitch(StringRef Str) : Str(Str), Result(0) {}
821 // CHECK-tokens: Punctuation: "*" [85:11 - 85:12] FieldDecl=Result:85:12 (Definition)
822 // CHECK-tokens: Identifier: "Result" [85:12 - 85:18] FieldDecl=Result:85:12 (Definition)
838 // CHECK-tokens: Identifier: "Result" [87:52 - 87:58] MemberRef=Result:85:12
1840 // CHECK: 85:12: FieldDecl=Result:85:12 (Definition) Extent=[85:3 - 85:18]
1848 // CHECK: 87:52: MemberRef=Result:85:12 Extent=[87:52 - 87:58]
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments.cpp167 vector<A> Result; local
171 vector<A> Result; local
/external/libnfc-nxp/src/
H A DphFriNfc_MifStdFormat.h397 Result = phFriNfc_MfStd_H_WrRdAuth(NdefSmtCrdFmt); \
401 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, \
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp208 ExprAST *Result = new NumberExprAST(NumVal); local
210 return Result;

Completed in 2575 milliseconds

<<11121314151617181920>>