HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 226 - 250 of 1543) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/codec/
SkWebpCodec.h 26 Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, SkPMColor*, int*, int*)
SkJpegCodec.h 45 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options&,
50 Result onGetYUV8Planes(const YUVSizeInfo& sizeInfo, void* pixels[3]) override;
105 Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options,
  /external/vogar/src/vogar/
Target.java 46 @Override protected Result execute() throws Exception {
48 return Result.SUCCESS;
55 @Override protected Result execute() throws Exception {
57 return Result.SUCCESS;
JarSuggestions.java 42 Result result = outcome.getResult(); local
43 if (result != Result.COMPILE_FAILED && result != Result.EXEC_FAILED) {
  /hardware/bsp/intel/peripheral/libupm/src/m24lr64e/
m24lr64e.h 220 * @result buf Buffer to hold the UID. Must be UID_LENGTH bytes.
243 mraa::Result writeByte(unsigned int address, uint8_t data);
252 mraa::Result writeBytes(unsigned int address, uint8_t* buffer, int len);
273 mraa::Result EEPROM_Write_Byte(unsigned int address, uint8_t data);
274 mraa::Result EEPROM_Write_Bytes(unsigned int address, uint8_t* data,
  /hardware/bsp/intel/peripheral/libupm/src/mpr121/
mpr121.h 94 * @return mraa::Result
96 mraa::Result writeBytes(uint8_t reg, uint8_t *buffer, int len);
  /system/connectivity/shill/
mock_connection_health_checker.h 34 const base::Callback<void(Result)>& result_callback);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
MifareUltralightTagTester.java 66 public Result verifyTag(Tag tag) throws IOException {
72 return new Result(expectedContent, actualContent,
75 return new Result(expectedContent, null, false);
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 24 * The expected result of an action execution. This is typically encoded in the
28 * result UNSUPPORTED
33 * result COMPILE_FAILED
42 /** The action's expected result, such as {@code EXEC_FAILED}. */
43 private final Result result; field in class:Expectation
57 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) {
58 if (result == null || description == null || pattern == null) {
60 "result=" + result + " description=" + description + " pattern=" + pattern)
    [all...]
  /external/chromium-trace/catapult/third_party/typ/typ/tests/
json_results_test.py 72 json_results.Result('foo_test.FooTest.test_fail',
75 result_set.add(json_results.Result('foo_test.FooTest.test_pass',
78 result_set.add(json_results.Result('foo_test.FooTest.test_skip',
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 40 // is signed, /then/ match the signedness of the result type.
50 llvm::APSInt Result(Value, Value.isUnsigned());
51 apply(Result);
52 return Result;
  /external/clang/lib/Index/
SimpleFormatContext.h 57 std::string Result;
58 llvm::raw_string_ostream OS(Result);
61 return Result;
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 55 const DiagnosticRecord *Result =
59 assert(Result && "diagnostic not found; table may be out of date");
60 return *Result;
  /external/clang/unittests/Rewrite/
RewriteBufferTest.cpp 44 std::string Result;
45 raw_string_ostream OS(Result);
48 EXPECT_EQ(Output, Result);
  /external/junit/src/org/junit/experimental/results/
PrintableResult.java 10 import org.junit.runner.Result;
14 * A test result that prints nicely in error messages.
24 * The result of running JUnit on {@code type}
31 * The result of running JUnit on Request {@code request}
37 private Result result; field in class:PrintableResult
40 * A result that includes the given {@code failures}
43 this(new FailureList(failures).result());
46 private PrintableResult(Result result) {
    [all...]
  /external/llvm/include/llvm/ADT/
SetOperations.h 52 S1Ty Result;
56 Result.insert(*SI);
57 return Result;
  /external/llvm/tools/llvm-readobj/
ObjDumper.h 77 std::unique_ptr<ObjDumper> &Result);
81 std::unique_ptr<ObjDumper> &Result);
85 std::unique_ptr<ObjDumper> &Result);
  /external/skia/include/utils/
SkInterpolator.h 17 enum Result {
62 Result timeToT(SkMSec time, SkScalar* T, int* index, bool* exact) const;
108 those values are the result of pinning to either the first
114 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
  /external/vogar/src/vogar/tasks/
PrepareTarget.java 20 import vogar.Result;
35 @Override protected Result execute() throws Exception {
59 return Result.SUCCESS;
  /hardware/bsp/intel/peripheral/libupm/src/lsm303/
lsm303.h 120 mraa::Result getCoordinates();
126 mraa::Result getAcceleration();
170 mraa::Result setRegisterSafe(uint8_t slave, uint8_t sregister, uint8_t data);
  /hardware/bsp/intel/peripheral/libupm/src/max31723/
max31723.cxx 35 mraa::Result error = mraa::SUCCESS;
103 mraa::Result
108 mraa::Result
  /hardware/bsp/intel/peripheral/libupm/src/max5487/
max5487.cxx 35 mraa::Result error = mraa::SUCCESS;
85 mraa::Result
90 mraa::Result
  /hardware/bsp/intel/peripheral/libupm/src/mlx90614/
mlx90614.cxx 40 mraa::Result ret = m_i2Ctx.address(m_i2cAddr);
83 mraa::Result
85 mraa::Result error = mraa::SUCCESS;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
FullresRenderingRequestTask.java 19 static class RenderResult implements Result {
47 public Result doInBackground(Request message) {
49 RenderResult result = null; local
51 result = new RenderResult();
52 result.request = request;
53 return result;
57 public void onResult(Result message) {
HighresRenderingRequestTask.java 39 static class RenderResult implements Result {
70 public Result doInBackground(Request message) {
72 RenderResult result = null; local
74 result = new RenderResult();
75 result.request = request;
76 return result;
80 public void onResult(Result message) {

Completed in 732 milliseconds

1 2 3 4 5 6 7 8 91011>>