/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...] |
/external/valgrind/none/tests/solaris/ |
proc_aout.stdout.exp | 0 Result of readlink("/proc/self/path/a.out"): proc_aout 2 Result of readlink("/proc/<pid>/path/a.out"): proc_aout 3 Result of readlinkat("/proc/self/path/a.out"): proc_aout 4 Result of readlinkat("/proc/<pid>/path/a.out"): proc_aout
|
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
pwm.hpp | 83 * @return Result of operation 85 Result 88 return (Result) mraa_pwm_write(m_pwm, percentage); 107 * @return Result of operation 109 Result 112 return (Result) mraa_pwm_period(m_pwm, period); 118 * @return Result of operation 120 Result 123 return (Result) mraa_pwm_period_ms(m_pwm, ms); 129 * @return Result of operatio [all...] |
i2c.hpp | 82 * @return Result of operation 84 Result 87 return (Result) mraa_i2c_frequency(m_i2c, (mraa_i2c_mode_t) mode); 95 * @return Result of operation 97 Result 100 return (Result) mraa_i2c_address(m_i2c, address); 170 * @return Result of operation 172 Result 175 return (Result) mraa_i2c_write_byte(m_i2c, data); 184 * @return Result of operatio [all...] |
spi.hpp | 85 * @return Result of operation 87 Result 90 return (Result) mraa_spi_mode(m_spi, (mraa_spi_mode_t) mode); 97 * @return Result of operation 99 Result 102 return (Result) mraa_spi_frequency(m_spi, hz); 169 * @return Result of operation 171 Result 174 return (Result) mraa_spi_transfer_buf(m_spi, txBuf, rxBuf, length); 184 * @return Result of operatio [all...] |
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
ssd1308.h | 76 * @return Result of the operation 78 mraa::Result draw(uint8_t* data, int bytes); 84 * @return Result of the operation 86 mraa::Result write(std::string msg); 92 * @return Result of the operation 94 mraa::Result setCursor(int row, int column); 98 * @return Result of the operation 100 mraa::Result clear(); 104 * @return Result of the operation 106 mraa::Result home() [all...] |
lcm1602.h | 106 * @return Result of the operation 108 mraa::Result write(std::string msg); 114 * @return Result of the operation 116 mraa::Result setCursor(int row, int column); 120 * @return Result of the operation 122 mraa::Result clear(); 126 * @return Result of the operation 128 mraa::Result home(); 135 * @return Result of operation 137 mraa::Result createChar(uint8_t charSlot, uint8_t charData[]) [all...] |
ssd1327.h | 76 * @return Result of the operation 78 mraa::Result draw(uint8_t* data, int bytes); 83 * @return Result of the operation 91 * @return Result of the operation 93 mraa::Result write(std::string msg); 99 * @return Result of the operation 101 mraa::Result setCursor(int row, int column); 105 * @return Result of the operation 107 mraa::Result clear(); 111 * @return Result of the operatio [all...] |
jhd1313m1.h | 74 * @return Result of the operation 76 mraa::Result scroll(bool direction); 83 * @return Result of the operation 85 mraa::Result setColor(uint8_t r, uint8_t g, uint8_t b); 88 virtual mraa::Result command(uint8_t cmd); 89 virtual mraa::Result data(uint8_t data);
|
/cts/libs/vogar-expect/src/vogar/ |
Result.java | 20 * The result of a test or benchmark execution. 22 public enum Result {
|
/external/vogar/src/vogar/ |
Result.java | 20 * The result of a test or benchmark execution. 22 public enum Result {
|
/external/llvm/lib/Analysis/ |
CGSCCPassManager.cpp | 18 CGSCCAnalysisManagerModuleProxy::Result 21 return Result(*CGAM); 24 CGSCCAnalysisManagerModuleProxy::Result::~Result() { 30 bool CGSCCAnalysisManagerModuleProxy::Result::invalidate( 39 // Return false to indicate that this result is still a valid proxy. 47 FunctionAnalysisManagerCGSCCProxy::Result 50 return Result(*FAM); 53 FunctionAnalysisManagerCGSCCProxy::Result::~Result() { [all...] |
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/ |
XMLParserVisitor.java | 11 * @param <Result> The return type of the visit operation. Use {@link Void} for 14 public interface XMLParserVisitor<Result> extends ParseTreeVisitor<Result> { 18 * @return the visitor result 20 Result visitContent(@NotNull XMLParser.ContentContext ctx); 25 * @return the visitor result 27 Result visitElement(@NotNull XMLParser.ElementContext ctx); 32 * @return the visitor result 34 Result visitProlog(@NotNull XMLParser.PrologContext ctx); 39 * @return the visitor result [all...] |
/art/cmdline/ |
cmdline_type_parser.h | 31 using Result = CmdlineParseResult<T>; 37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) { 39 return Result::Failure("Missing type specialization and/or value map"); 49 Result ParseAndAppend(const std::string& args ATTRIBUTE_UNUSED, 52 return Result::Failure("Missing type specialization and/or value map");
|
/external/llvm/lib/IR/ |
PassManager.cpp | 18 FunctionAnalysisManagerModuleProxy::Result 21 return Result(*FAM); 24 FunctionAnalysisManagerModuleProxy::Result::~Result() { 30 bool FunctionAnalysisManagerModuleProxy::Result::invalidate( 39 // Return false to indicate that this result is still a valid proxy.
|
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/ |
BindingExpressionVisitor.java | 11 * @param <Result> The return type of the visit operation. Use {@link Void} for 14 public interface BindingExpressionVisitor<Result> extends ParseTreeVisitor<Result> { 19 * @return the visitor result 21 Result visitBracketOp(@NotNull BindingExpressionParser.BracketOpContext ctx); 27 * @return the visitor result 29 Result visitResource(@NotNull BindingExpressionParser.ResourceContext ctx); 35 * @return the visitor result 37 Result visitCastOp(@NotNull BindingExpressionParser.CastOpContext ctx); 43 * @return the visitor 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...] |
/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/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/vogar/src/vogar/android/ |
UninstallApkTask.java | 19 import vogar.Result; 32 @Override protected Result execute() throws Exception { 34 return Result.SUCCESS;
|
/external/llvm/bindings/ocaml/bitwriter/ |
bitwriter_ocaml.c | 26 int Result = LLVMWriteBitcodeToFile(M, String_val(Path)); 27 return Val_bool(Result == 0); 33 int Result; 41 Result = LLVMWriteBitcodeToFD(M, Int_val(FD), 0, Unbuffered); 42 return Val_bool(Result == 0);
|
/external/llvm/utils/not/ |
not.cpp | 43 int Result = sys::ExecuteAndWait(*Program, argv, nullptr, nullptr, 0, 0, 50 if (ExpectCrash && Result == 3) 51 Result = -3; 53 if (Result < 0) { 63 return Result == 0;
|
/external/robolectric/v1/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);
|