Searched refs:Result (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/core/java/android/database/
H A DCursorJoiner.java30 * for (CursorJointer.Result joinerResult : joiner) {
46 implements Iterator<CursorJoiner.Result>, Iterable<CursorJoiner.Result> {
50 private Result mCompareResult;
58 public enum Result { enum in class:CursorJoiner
98 public Iterator<Result> iterator() {
156 public Result next() {
171 mCompareResult = Result.LEFT;
174 mCompareResult = Result.BOTH;
177 mCompareResult = Result
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java47 abstract class ModernAsyncTask<Params, Progress, Result> {
78 private final WorkerRunnable<Params, Result> mWorker;
79 private final FutureTask<Result> mFuture;
118 mWorker = new WorkerRunnable<Params, Result>() {
119 public Result call() throws Exception {
127 mFuture = new FutureTask<Result>(mWorker) {
131 final Result result = get();
149 private void postResultIfNotInvoked(Result result) {
156 private Result postResult(Result resul
[all...]
/frameworks/base/core/java/android/os/
H A DAsyncTask.java48 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
101 * <li><code>Result</code>, the type of the result of the background
177 public abstract class AsyncTask<Params, Progress, Result> {
215 private final WorkerRunnable<Params, Result> mWorker;
216 private final FutureTask<Result> mFuture;
282 mWorker = new WorkerRunnable<Params, Result>() {
283 public Result call() throws Exception {
292 mFuture = new FutureTask<Result>(mWorker) {
309 private void postResultIfNotInvoked(Result result) {
316 private Result postResul
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DPlayAnimationThread.java20 import com.android.ide.common.rendering.api.Result;
21 import com.android.ide.common.rendering.api.Result.Status;
37 public Result preAnimation() {
H A DRenderAction.java19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_LOCK_INTERRUPTED;
20 import static com.android.ide.common.rendering.api.Result.Status.ERROR_TIMEOUT;
21 import static com.android.ide.common.rendering.api.Result.Status.SUCCESS;
28 import com.android.ide.common.rendering.api.Result;
95 public Result init(long timeout) {
98 Result result = acquireLock(timeout);
142 * {@link Result#SUCCESS}.
155 public Result acquire(long timeout) {
162 Result result = acquireLock(timeout);
176 * {@link Result#SUCCES
[all...]
H A DRenderDrawable.java19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_UNKNOWN;
24 import com.android.ide.common.rendering.api.Result;
25 import com.android.ide.common.rendering.api.Result.Status;
58 public Result render() {
/frameworks/base/graphics/java/android/graphics/
H A DInterpolator.java111 public enum Result { enum in class:Interpolator
121 public Result timeToValues(float[] values) {
136 public Result timeToValues(int msec, float[] values) {
141 case 0: return Result.NORMAL;
142 case 1: return Result.FREEZE_START;
143 default: return Result.FREEZE_END;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java23 import com.android.ide.common.rendering.api.Result;
44 private Result mLastResult;
47 public Result getResult() {
72 public Result getProperty(Object objectView, String propertyName) {
78 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
84 public Result render(long timeout) {
100 public Result animate(Object targetObject, String animationName,
118 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index,
141 public Result moveChild(Object parentView, Object childView, int index,
166 public Result removeChil
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c495 * [out] Result of operation
502 OMX_S32 Result; local
504 Result = Value1 + Value2;
509 if( (Result^Value1) >= 0)
511 /*Result has not saturated*/
512 return Result;
518 /*Result has saturated in positive side*/
523 /*Result has saturated in negative side*/
532 return Result;
548 * [out] Result o
555 OMX_S64 Result; local
607 OMX_S32 Result; local
660 OMX_S32 Result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c495 * [out] Result of operation
502 OMX_S32 Result; local
504 Result = Value1 + Value2;
509 if( (Result^Value1) >= 0)
511 /*Result has not saturated*/
512 return Result;
518 /*Result has saturated in positive side*/
523 /*Result has saturated in negative side*/
532 return Result;
548 * [out] Result o
555 OMX_S64 Result; local
607 OMX_S32 Result; local
660 OMX_S32 Result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c495 * [out] Result of operation
502 OMX_S32 Result; local
504 Result = Value1 + Value2;
509 if( (Result^Value1) >= 0)
511 /*Result has not saturated*/
512 return Result;
518 /*Result has saturated in positive side*/
523 /*Result has saturated in negative side*/
532 return Result;
548 * [out] Result o
555 OMX_S64 Result; local
607 OMX_S32 Result; local
660 OMX_S32 Result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_IDCT8x8blk_s.s52 Result RN 0 label
68 MOV Result, #OMX_Sts_NoErr
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_IDCT8x8blk_s.s52 Result RN 0 label
68 MOV Result, #OMX_Sts_NoErr
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolver.h41 /** \class Resolver::Result
47 struct Result { struct in class:mcld::Resolver
71 Result& pResult) const {
H A DRelocator.h39 enum Result { enum in class:mcld::Relocator
55 virtual Result applyRelocation(Relocation& pRelocation) = 0;
/frameworks/compile/mclinker/include/mcld/Support/
H A DHandleToArea.h57 struct Result { struct in class:mcld::HandleToArea
59 Result(FileHandle* pHandle, MemoryArea* pArea) function in struct:mcld::HandleToArea::Result
84 Result findFirst(const sys::fs::Path& pPath);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java21 import com.android.ide.common.rendering.api.Result;
22 import com.android.ide.common.rendering.api.Result.Status;
80 public abstract Result preAnimation();
105 Result result = preAnimation();
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DTestRequestBuilderTest.java32 import org.junit.runner.Result;
131 Result result = testRunner.run(request.getRequest());
145 Result result = testRunner.run(request.getRequest());
160 Result result = testRunner.run(request.getRequest());
200 Result r = testRunner.run(request.getRequest());
213 Result r = testRunner.run(request.getRequest());
228 Result result = testRunner.run(request.getRequest());
243 Result result = testRunner.run(request.getRequest());
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp95 Module* Result = ParseIRFile(FN, Err, Context); local
96 if (Result) {
97 return std::auto_ptr<Module>(Result); // Load successful!
/frameworks/compile/mclinker/lib/Support/
H A DHandleToArea.cpp60 HandleToArea::Result HandleToArea::findFirst(const sys::fs::Path& pPath)
70 return Result(bucket->handle, bucket->area);
75 return Result(NULL, NULL);
/frameworks/native/services/sensorservice/
H A Dtraits.h68 typedef T Result; typedef in struct:android::Select
72 typedef U Result; typedef in struct:android::Select
112 typedef typename Select<isStdArith || isPointer, T, const T&>::Result ParameterType;
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp28 typedef Relocator::Result (*ApplyFunctionType)(Relocation& pReloc,
77 Relocator::Result
465 HexagonRelocator::Result none(Relocation& pReloc, HexagonRelocator& pParent)
471 HexagonRelocator::Result relocB15PCREL(Relocation& pReloc,
488 HexagonRelocator::Result relocB22PCREL(Relocation& pReloc,
506 HexagonRelocator::Result relocB7PCREL(Relocation& pReloc,
523 HexagonRelocator::Result reloc32(Relocation& pReloc,
551 HexagonRelocator::Result reloc16(Relocation& pReloc,
564 HexagonRelocator::Result reloc8(Relocation& pReloc,
577 HexagonRelocator::Result relocLO1
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocationFunctions.h11 static MipsRelocator::Result Name(Relocation& pEntry, \
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFunctions.h11 static X86Relocator::Result Name(Relocation& pEntry, X86_32Relocator& pParent);
78 static X86Relocator::Result Name(Relocation& pEntry, X86_64Relocator& pParent);
/frameworks/compile/slang/
H A Dslang_rs_spec_table.cpp385 int Result = 1; local
388 Result = GenRSDataTypeEnums(DataTypes, NumDataTypes);
390 Result = GenClangBuiltinEnum(ClangBuilitinsMap, NumClangBuilitins);
392 Result = GenRSMatrixTypeEnums(DataTypes, NumDataTypes);
394 Result = GenRSObjectTypeEnums(DataTypes, NumDataTypes);
396 Result = GenRSDataElementEnums(DataElements, NumDataElements);
410 return Result;

Completed in 1056 milliseconds

12