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

1234

/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLParserVisitor.java11 * @param <Result> The return type of the visit operation. Use {@link Void} for
14 public interface XMLParserVisitor<Result> extends ParseTreeVisitor<Result> {
20 Result visitContent(@NotNull XMLParser.ContentContext ctx);
27 Result visitElement(@NotNull XMLParser.ElementContext ctx);
34 Result visitProlog(@NotNull XMLParser.PrologContext ctx);
41 Result visitDocument(@NotNull XMLParser.DocumentContext ctx);
48 Result visitAttribute(@NotNull XMLParser.AttributeContext ctx);
55 Result visitChardata(@NotNull XMLParser.ChardataContext ctx);
62 Result visitReferenc
[all...]
H A DXMLParserBaseVisitor.java12 * @param <Result> The return type of the visit operation. Use {@link Void} for
15 public class XMLParserBaseVisitor<Result> extends AbstractParseTreeVisitor<Result> implements XMLParserVisitor<Result> {
22 @Override public Result visitContent(@NotNull XMLParser.ContentContext ctx) { return visitChildren(ctx); }
30 @Override public Result visitElement(@NotNull XMLParser.ElementContext ctx) { return visitChildren(ctx); }
38 @Override public Result visitProlog(@NotNull XMLParser.PrologContext ctx) { return visitChildren(ctx); }
46 @Override public Result visitDocument(@NotNull XMLParser.DocumentContext ctx) { return visitChildren(ctx); }
54 @Override public Result visitAttribute(@NotNull XMLParser.AttributeContext ctx) { return visitChildren(ctx); }
62 @Override public Result visitChardat
[all...]
H A DXMLParser.java70 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
71 if ( visitor instanceof XMLParserVisitor<?> ) return ((XMLParserVisitor<? extends Result>)visitor).visitDocument(this);
154 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
155 if ( visitor instanceof XMLParserVisitor<?> ) return ((XMLParserVisitor<? extends Result>)visitor).visitProlog(this);
240 public <Result> Result accep
[all...]
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionVisitor.java11 * @param <Result> The return type of the visit operation. Use {@link Void} for
14 public interface BindingExpressionVisitor<Result> extends ParseTreeVisitor<Result> {
21 Result visitBracketOp(@NotNull BindingExpressionParser.BracketOpContext ctx);
29 Result visitResource(@NotNull BindingExpressionParser.ResourceContext ctx);
37 Result visitCastOp(@NotNull BindingExpressionParser.CastOpContext ctx);
45 Result visitUnaryOp(@NotNull BindingExpressionParser.UnaryOpContext ctx);
53 Result visitAndOrOp(@NotNull BindingExpressionParser.AndOrOpContext ctx);
61 Result visitMethodInvocation(@NotNull BindingExpressionParser.MethodInvocationContext ctx);
69 Result visitPrimar
[all...]
H A DBindingExpressionBaseVisitor.java12 * @param <Result> The return type of the visit operation. Use {@link Void} for
15 public class BindingExpressionBaseVisitor<Result> extends AbstractParseTreeVisitor<Result> implements BindingExpressionVisitor<Result> {
22 @Override public Result visitBracketOp(@NotNull BindingExpressionParser.BracketOpContext ctx) { return visitChildren(ctx); }
30 @Override public Result visitResource(@NotNull BindingExpressionParser.ResourceContext ctx) { return visitChildren(ctx); }
38 @Override public Result visitCastOp(@NotNull BindingExpressionParser.CastOpContext ctx) { return visitChildren(ctx); }
46 @Override public Result visitUnaryOp(@NotNull BindingExpressionParser.UnaryOpContext ctx) { return visitChildren(ctx); }
54 @Override public Result visitAndOrOp(@NotNull BindingExpressionParser.AndOrOpContext ctx) { return visitChildren(ctx); }
62 @Override public Result visitMethodInvocatio
[all...]
H A DBindingExpressionParser.java120 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
121 if ( visitor instanceof BindingExpressionVisitor<?> ) return ((BindingExpressionVisitor<? extends Result>)visitor).visitBindingSyntax(this);
175 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
176 if ( visitor instanceof BindingExpressionVisitor<?> ) return ((BindingExpressionVisitor<? extends Result>)visitor).visitDefaults(this);
230 public <Result> Result accep
[all...]
/frameworks/support/compat/java/android/support/v4/os/
H A DAsyncTaskCompat.java36 public static <Params, Progress, Result> AsyncTask<Params, Progress, Result> executeParallel(
37 AsyncTask<Params, Progress, Result> task,
/frameworks/support/compat/honeycomb/android/support/v4/os/
H A DAsyncTaskCompatHoneycomb.java26 static <Params, Progress, Result> void executeParallel(
27 AsyncTask<Params, Progress, Result> task,
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java30 * for (CursorJoiner.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/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DAbstractStatementRetriever.java69 public abstract Result retrieveStatements(AbstractAsset source)
75 public interface Result { interface in class:AbstractStatementRetriever
H A DDirectStatementRetriever.java51 public static class Result implements AbstractStatementRetriever.Result { class in class:DirectStatementRetriever
66 private Result(List<Statement> statements, Long expireMillis) { method in class:DirectStatementRetriever.Result
71 public static Result create(List<Statement> statements, Long expireMillis) {
72 return new Result(statements, expireMillis);
78 result.append("Result: ");
94 Result result = (Result) o;
121 public Result retrieveStatements(AbstractAsset source) throws AssociationServiceException {
141 private Result retrieveStatementFromUr
[all...]
/frameworks/support/compat/java/android/support/v4/content/
H A DModernAsyncTask.java52 abstract class ModernAsyncTask<Params, Progress, Result> {
84 private final WorkerRunnable<Params, Result> mWorker;
85 private final FutureTask<Result> mFuture;
130 mWorker = new WorkerRunnable<Params, Result>() {
132 public Result call() throws Exception {
134 Result result = null;
150 mFuture = new FutureTask<Result>(mWorker) {
154 final Result result = get();
172 void postResultIfNotInvoked(Result result) {
179 Result postResul
[all...]
/frameworks/base/core/java/android/os/
H A DAsyncTask.java51 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
104 * <li><code>Result</code>, the type of the result of the background
180 public abstract class AsyncTask<Params, Progress, Result> {
227 private final WorkerRunnable<Params, Result> mWorker;
228 private final FutureTask<Result> mFuture;
298 mWorker = new WorkerRunnable<Params, Result>() {
299 public Result call() throws Exception {
301 Result result = null;
317 mFuture = new FutureTask<Result>(mWorker) {
334 private void postResultIfNotInvoked(Result resul
[all...]
H A DSynchronousResultReceiver.java35 public static class Result { class in class:SynchronousResultReceiver
39 public Result(int resultCode, @Nullable Bundle bundle) { method in class:SynchronousResultReceiver.Result
45 private final CompletableFuture<Result> mFuture = new CompletableFuture<>();
54 mFuture.complete(new Result(resultCode, resultData));
60 * @return the Result
63 public @NonNull Result awaitResult(long timeoutMillis) throws TimeoutException {
/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() {
/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/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c510 * [out] Result of operation
517 OMX_S32 Result; local
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
563 * [out] Result o
570 OMX_S64 Result; local
622 OMX_S32 Result; local
675 OMX_S32 Result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c510 * [out] Result of operation
517 OMX_S32 Result; local
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
563 * [out] Result o
570 OMX_S64 Result; local
622 OMX_S32 Result; local
675 OMX_S32 Result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c510 * [out] Result of operation
517 OMX_S32 Result; local
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
563 * [out] Result o
570 OMX_S64 Result; local
622 OMX_S32 Result; local
675 OMX_S32 Result; local
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DRenderResult.java20 import com.android.ide.common.rendering.api.Result;
33 private final Result mRenderResult;
35 private RenderResult(@Nullable Result result, @Nullable List<ViewInfo> systemViewInfoList,
50 Result getResult() {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java23 import com.android.ide.common.rendering.api.Result;
46 private Result mLastResult;
49 public Result getResult() {
79 public Result render(long timeout, boolean forceMeasure) {
98 public Result animate(Object targetObject, String animationName,
116 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index,
139 public Result moveChild(Object parentView, Object childView, int index,
164 public Result removeChild(Object childView, IAnimationListener listener) {
207 /*package*/ BridgeRenderSession(RenderSessionImpl scene, Result lastResult) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_IDCT8x8blk_s.s66 Result RN 0 label
82 MOV Result, #OMX_Sts_NoErr
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_IDCT8x8blk_s.s66 Result RN 0 label
82 MOV Result, #OMX_Sts_NoErr
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolver.h33 /** \class Resolver::Result
39 struct Result { struct in class:mcld::Resolver
64 Result& pResult) const {
/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();

Completed in 693 milliseconds

1234