HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 251 - 275 of 552) sorted by null

<<11121314151617181920>>

  /external/skia/src/utils/
SkInterpolator.cpp 78 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T,
81 Result result = kNormal_Result; local
92 result = kFreezeEnd_Result;
111 result = kFreezeStart_Result;
118 result = kFreezeEnd_Result;
134 return result;
193 SkInterpolator::Result SkInterpolator::timeToValues(SkMSec time,
198 Result result = timeToT(time, &T, &index, &exact) local
302 Result result; local
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 108 // Okay, we have an unused result. Depending on what the base expression is,
607 Expr::EvalResult Result;
608 HasConstantCond = CondExprBeforePromotion->Evaluate(Result, Context);
610 assert(Result.Val.isInt() && "switch condition evaluated to non-int");
611 ConstantCondValue = Result.Val.getInt();
1828 ExprResult result = PerformImplicitConversion(RetValExp, local
    [all...]
SemaTemplateVariadic.cpp 340 TypeResult Result = ActOnPackExpansion(Arg.getAsType(), EllipsisLoc);
341 if (Result.isInvalid())
344 return ParsedTemplateArgument(Arg.getKind(), Result.get().getAsOpaquePtr(),
349 ExprResult Result = ActOnPackExpansion(Arg.getAsExpr(), EllipsisLoc);
350 if (Result.isInvalid())
353 return ParsedTemplateArgument(Arg.getKind(), Result.get(),
392 QualType Result = CheckPackExpansion(Pattern->getType(),
395 if (Result.isNull())
398 TypeSourceInfo *TSResult = Context.CreateTypeSourceInfo(Result);
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
Parser.cpp 487 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
493 Result = DeclGroupPtrTy();
507 Result = ParseExternalDeclaration(attrs);
582 ExprResult Result(ParseSimpleAsm(&EndLoc));
587 if (Result.isInvalid())
589 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
743 /// [C90] function-definition: [C99 6.7.1] - implicit int result
820 /// [C90] function-definition: [C99 6.7.1] - implicit int 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...]
  /external/zlib/contrib/delphi/
ZLib.pas 220 Result := AllocMem(Size);
256 // GetMem(Result, Items*Size);
257 Result := AllocMem(Items * Size);
267 Result := code;
274 Result := code;
281 Result := code;
461 Result := Count;
467 Result := FZRec.total_in
475 Result := 0
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0
    [all...]
  /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...]
  /external/clang/include/clang/AST/
CanonicalType.h 324 /// canonical type or as the result of the @c CanQual<T>::getAs member
726 CanQual<T> Result;
727 Result.Stored = QualType::getFromOpaquePtr(Ptr);
728 assert((!Result || Result.Stored.getAsOpaquePtr() == (void*)-1 ||
729 Result.Stored.isCanonical()) && "Type is not canonical!");
730 return Result;
738 CanQual<T> Result;
739 Result.Stored = Other;
740 return Result;
    [all...]
Mangle.h 38 /// either the result of a mangling or is a constant string with
90 Result = BlockIds.insert(std::make_pair(BD, BlockIds.size()));
91 return Result.first->second;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_UNKNOWN;
20 import static com.android.ide.common.rendering.api.Result.Status.SUCCESS;
26 import com.android.ide.common.rendering.api.Result;
28 import com.android.ide.common.rendering.api.Result.Status;
310 * @return a new {@link RenderSession} object that contains the result of the layout.
316 Result lastResult = SUCCESS.createResult();
345 public Result renderDrawable(DrawableParams params) {
347 Result lastResult = SUCCESS.createResult();
380 public Result getViewParent(Object viewObject) {
389 public Result getViewIndex(Object viewObject)
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 45 uint64_t Result = 0;
47 uint64_t OldRes = Result;
48 Result *= 10;
49 Result += *Buffer-'0';
50 if (Result < OldRes) { // Uh, oh, overflow detected!!!
55 return Result;
59 uint64_t Result = 0;
61 uint64_t OldRes = Result;
62 Result *= 16;
65 Result += C-'0'
    [all...]
LLParser.cpp 30 std::string Result;
31 raw_string_ostream Tmp(Result);
307 Type *Result = 0;
309 NumberedTypes[TypeID], Result)) return true;
311 if (!isa<StructType>(Result)) {
315 Entry.first = Result;
334 Type *Result = 0;
336 NamedTypes[Name], Result)) return true;
338 if (!isa<StructType>(Result)) {
342 Entry.first = Result;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 499 // Handle result values, copying them out of physregs into vregs that we
505 /// LowerCallResult - Lower the result values of a call into the
523 // Copy all of the result registers out of their specified physreg.
579 // Copy the result values into the output registers.
734 SDValue Result;
736 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
743 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
746 Result = DAG.getNode(SystemZISD::PCRelativeWrapper, dl,
747 getPointerTy(), Result);
750 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 400 /// in the base pointer). Return the result as a signed integer of intptr size.
405 Value *Result = Constant::getNullValue(IntPtrTy);
427 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
437 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
450 Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
452 return Result;
511 Value *Result = EmitGEPOffset(GEP)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 315 uint32_t Result = 0;
318 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
321 return Result;
335 uint64_t Result = 0;
338 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
341 return Result;
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 262 GenericValue R; // Result
450 GenericValue R; // Result
479 GenericValue Result;
506 GenericValue Result;
507 Result.IntVal = APInt(1, false);
508 return Result;
511 GenericValue Result;
512 Result.IntVal = APInt(1, true);
513 return Result;
526 GenericValue R; // Result
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 66 // pointer is not the result of a load instruction. Currently
175 /// represented in the result.
231 Value *Result = GetLinearExpression(CastOp, Scale, Offset, Extension,
236 return Result;
    [all...]
  /external/llvm/lib/Support/
StringMap.cpp 168 StringMapEntryBase *Result = TheTable[Bucket].Item;
174 return Result;
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailUpdatesFragment.java 45 private ContactLoader.Result mContactData;
146 public void setData(Uri lookupUri, ContactLoader.Result result) {
147 if (result == null) {
151 mContactData = result;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
WebCorpus.java 164 protected Result createResult(String query, ArrayList<SourceResult> results, int latency) {
168 protected class WebResult extends Result {
178 for (SourceResult result : getResults()) {
179 if (result.getSource().equals(mWebSearchSource)) {
180 webSearchResult = result;
182 browserResult = result;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 36 import javax.xml.transform.Result;
92 Result result = new StreamResult(file); local
96 xformer.transform(source, result);
  /sdk/layoutlib_api/sample/src/com/example/android/render/
Main.java 20 import com.android.ide.common.rendering.api.Result;
118 Result result = session.getResult(); local
119 if (result.isSuccess() == false) {
120 System.err.println(result.getErrorMessage());
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 91 /// and returns the result.
133 Value *Result = ZI->getOperand(0);
136 // is the result of an assignment.
139 return Result;
156 assert(0 && "Stmt can't have complex result type!");
211 Expr::EvalResult Result;
212 if (!E->Evaluate(Result, CGF.getContext()))
215 assert(!Result.HasSideEffects && "Constant declref with side-effect?!");
218 if (Result.Val.isInt())
219 C = Builder.getInt(Result.Val.getInt())
1785 Value *result = Builder.CreateExtractValue(resultAndOverflow, 0); local
1883 Value *result = CGF.Builder.CreateBitCast(pointer, CGF.VoidPtrTy); local
1912 Value *result = CGF.Builder.CreateBitCast(pointer, CGF.VoidPtrTy); local
    [all...]
  /external/chromium/base/
stl_util-inl.h 58 // advanced, which could result in the hash function trying to deference a
75 // which could result in the hash function trying to dereference a stale
294 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) {
439 std::vector<T> result; local
440 result.reserve(values.size());
441 result.insert(result.begin(), values.begin(), values.end())
    [all...]

Completed in 708 milliseconds

<<11121314151617181920>>