HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 1 - 25 of 1210) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
Interpolator_ResultTest.java 20 import android.graphics.Interpolator.Result;
27 assertEquals(Result.FREEZE_START, Result.valueOf("FREEZE_START"));
28 assertEquals(Result.FREEZE_END, Result.valueOf("FREEZE_END"));
29 assertEquals(Result.NORMAL, Result.valueOf("NORMAL"));
33 Result[] result = Result.values() local
    [all...]
InterpolatorTest.java 21 import android.graphics.Interpolator.Result;
64 // set key frames far enough apart so that processing time will not cause result to
68 assertValue(1.5f, Result.NORMAL, interpolator);
75 assertValue(2.0f, Result.FREEZE_START, interpolator);
82 assertValue(3.0f, Result.FREEZE_END, interpolator);
101 assertValue(1000, 1.0f, Result.FREEZE_START, interpolator);
102 assertValue(3000, 1.5f, Result.NORMAL, interpolator);
103 assertValue(6000, 2.0f, Result.FREEZE_END, interpolator);
106 assertValue(-1000, 2.0f, Result.FREEZE_END, interpolator);
112 assertValue(0, 1.0f, Result.FREEZE_START, interpolator)
205 final float[] result = new float[1]; local
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /external/llvm/include/llvm/CodeGen/
MachineRelocation.h 40 isResult, // Relocation has be transformed into its result pointer.
58 void *Result; // If this has been resolved to a resolved pointer
87 MachineRelocation Result;
88 Result.Offset = offset;
89 Result.ConstantVal = cst;
90 Result.TargetReloType = RelocationType;
91 Result.AddrType = isGV;
92 Result.MayNeedFarStub = MayNeedFarStub;
93 Result.GOTRelative = GOTrelative;
94 Result.TargetResolve = false
    [all...]
  /external/llvm/utils/not/
not.cpp 33 int Result = sys::ExecuteAndWait(Program, argv, nullptr, nullptr, 0, 0,
40 if (ExpectCrash && Result == 3)
41 Result = -3;
43 if (Result < 0) {
53 return Result == 0;
  /external/stlport/test/unit/
fadapter.h 14 template <class Result>
17 Result (*ptr)();
19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {}
20 Result operator()() const { return ptr(); }
21 Result operator()(__void_tag) const { return ptr(); }
32 template <class Result>
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) {
34 return pointer_to_void_function<Result>(x);
38 template <class Result>
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fadapter.h 14 template <class Result>
17 Result (*ptr)();
19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {}
20 Result operator()() const { return ptr(); }
21 Result operator()(__void_tag) const { return ptr(); }
32 template <class Result>
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) {
34 return pointer_to_void_function<Result>(x);
38 template <class Result>
    [all...]
  /ndk/tests/device/test-stlport/unit/
fadapter.h 14 template <class Result>
17 Result (*ptr)();
19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {}
20 Result operator()() const { return ptr(); }
21 Result operator()(__void_tag) const { return ptr(); }
32 template <class Result>
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) {
34 return pointer_to_void_function<Result>(x);
38 template <class Result>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementMicrotaskStep.h 45 enum Result {
50 virtual Result process() = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebLeakDetector.h 41 struct Result {
46 virtual void onLeakDetectionComplete(const Result&) = 0;
  /external/chromium_org/ui/wm/core/
nested_accelerator_delegate.h 18 enum Result {
29 virtual Result ProcessAccelerator(const ui::Accelerator& accelerator) = 0;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
Result.java 20 * Represents the result of a test.
22 public interface Result {
26 * Sets the test result of this object.
28 * @param resultCode The test result, either {@code RESULT_OK} or {@code RESULT_FAIL}.
  /external/chromium_org/net/websockets/
websocket_deflate_predictor_impl.cc 9 typedef WebSocketDeflatePredictor::Result Result;
11 Result WebSocketDeflatePredictorImpl::Predict(
websocket_deflate_predictor_impl_test.cc 16 typedef WebSocketDeflatePredictor::Result Result;
22 Result result = predictor.Predict(frames, 0); local
24 EXPECT_EQ(WebSocketDeflatePredictor::DEFLATE, result);
  /external/chromium_org/printing/
printing_context.h 28 // Tri-state result for user behavior-dependent functions.
29 enum Result {
39 typedef base::Callback<void(Result)> PrintSettingsCallback;
42 // context with the select device settings. The result of the call is returned
52 virtual Result UseDefaultSettings() = 0;
55 Result UsePdfSettings();
63 virtual Result UpdatePrinterSettings(bool external_preview) = 0;
67 Result UpdatePrintSettings(const base::DictionaryValue& job_settings);
70 virtual Result InitWithSettings(const PrintSettings& settings) = 0;
78 virtual Result NewDocument(const base::string16& document_name) = 0
    [all...]
printing_context_no_system_dialog.h 29 virtual Result UseDefaultSettings() OVERRIDE;
31 virtual Result UpdatePrinterSettings(bool external_preview) OVERRIDE;
32 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
33 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
34 virtual Result NewPage() OVERRIDE;
35 virtual Result PageDone() OVERRIDE;
36 virtual Result DocumentDone() OVERRIDE;
  /external/easymock/src/org/easymock/internal/
ExpectedInvocationAndResult.java 26 Result result; field in class:ExpectedInvocationAndResult
29 Result result) {
31 this.result = result;
38 public Result getResult() {
39 return result;
IMocksBehavior.java 21 void addExpected(ExpectedInvocation expected, Result result, Range count);
23 void addStub(ExpectedInvocation expected, Result result);
32 Result addActual(Invocation invocation);
  /external/clang/lib/Lex/
MacroArgs.cpp 48 MacroArgs *Result;
51 Result = (MacroArgs*)malloc(sizeof(MacroArgs) +
54 new (Result) MacroArgs(UnexpArgTokens.size(), VarargsElided);
56 Result = *ResultEnt;
58 *ResultEnt = Result->ArgCache;
59 Result->NumUnexpArgTokens = UnexpArgTokens.size();
60 Result->VarargsElided = VarargsElided;
63 // Copy the actual unexpanded tokens to immediately after the result ptr.
66 const_cast<Token*>(Result->getUnexpArgument(0)));
68 return Result;
    [all...]
  /external/robolectric/src/main/java/android/os/
ShadowAsyncTaskBridge.java 6 public class ShadowAsyncTaskBridge<Params, Progress, Result> {
7 private AsyncTask<Params, Progress, Result> asyncTask;
9 public ShadowAsyncTaskBridge(AsyncTask<Params, Progress, Result> asyncTask) {
13 public Result doInBackground(Params... params) {
21 public void onPostExecute(Result result) {
22 asyncTask.onPostExecute(result);
  /external/clang/test/SemaTemplate/
instantiate-call.cpp 12 template<typename T, typename Result>
15 Result result = f0(t); local
24 template<typename T, typename Result>
27 Result &result = f0(t); // expected-error {{undeclared identifier}} \ local
38 template<typename T, typename Result>
41 Result &result = f0(t); local
  /frameworks/support/v4/java/android/support/v4/os/
AsyncTaskCompat.java 36 public static <Params, Progress, Result> AsyncTask<Params, Progress, Result> executeParallel(
37 AsyncTask<Params, Progress, Result> task,
  /external/chromium_org/chrome/browser/net/
dns_probe_test_util.h 15 // (currently google.com) that returns |result|.
17 net::MockDnsClientRule::Result result);
  /external/chromium_org/sync/api/attachments/
attachment_store.h 36 enum Result {
41 typedef base::Callback<void(const Result&,
44 typedef base::Callback<void(const Result&)> WriteCallback;
45 typedef base::Callback<void(const Result&)> DropCallback;
51 // exist or could not be read, |callback|'s Result will be UNSPECIFIED_ERROR.
68 // not be written |callback|'s Result will be UNSPECIFIED_ERROR. When this
80 // could not be dropped, |callback|'s Result will be UNSPECIFIED_ERROR. When
  /external/junit/src/org/junit/experimental/results/
FailureList.java 8 import org.junit.runner.Result;
19 public Result result() { method in class:FailureList
20 Result result= new Result(); local
21 RunListener listener= result.createListener();
29 return result;

Completed in 1064 milliseconds

1 2 3 4 5 6 7 8 91011>>