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

12 3 4 5 6 7 8 91011>>

  /hardware/bsp/intel/peripheral/libupm/src/lcd/
lcd.h 42 mraa::Result write(int x, int y, std::string msg);
44 virtual mraa::Result write(std::string msg) = 0;
45 virtual mraa::Result setCursor(int row, int column) = 0;
46 virtual mraa::Result clear() = 0;
47 virtual mraa::Result home() = 0;
ssd1308.cxx 39 mraa::Result error = m_i2c_lcd_control.address(m_lcd_control_address);
60 mraa::Result
63 mraa::Result error = mraa::SUCCESS;
78 mraa::Result
81 mraa::Result error = mraa::SUCCESS;
92 mraa::Result
95 mraa::Result error = mraa::SUCCESS;
108 mraa::Result
111 mraa::Result error = mraa::SUCCESS;
129 mraa::Result
    [all...]
  /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...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParserBaseVisitor.java 12 * @param <Result> The return type of the visit operation. Use {@link Void} for
15 public class XMLParserBaseVisitor<Result> extends AbstractParseTreeVisitor<Result> implements XMLParserVisitor<Result> {
19 * <p>The default implementation returns the result of calling
22 @Override public Result visitContent(@NotNull XMLParser.ContentContext ctx) { return visitChildren(ctx); }
27 * <p>The default implementation returns the result of calling
30 @Override public Result visitElement(@NotNull XMLParser.ElementContext ctx) { return visitChildren(ctx); }
35 * <p>The default implementation returns the result of calling
38 @Override public Result visitProlog(@NotNull XMLParser.PrologContext ctx) { return visitChildren(ctx);
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
TestResultLogger.java 12 private ArrayList<Result> mResults;
14 private class Result {
17 public Result(long t, long b) {
24 mResults = new ArrayList<Result>(1000);
33 mResults.add(new Result(System.currentTimeMillis(), bytesTransfered));
41 Result first = mResults.get(0);
42 Result last = mResults.get(mResults.size()-1);
51 * result entry.
54 * If the result log does not contain data to cover the entire period
60 Result preFirst = null
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionBaseVisitor.java 12 * @param <Result> The return type of the visit operation. Use {@link Void} for
15 public class BindingExpressionBaseVisitor<Result> extends AbstractParseTreeVisitor<Result> implements BindingExpressionVisitor<Result> {
19 * <p>The default implementation returns the result of calling
22 @Override public Result visitBracketOp(@NotNull BindingExpressionParser.BracketOpContext ctx) { return visitChildren(ctx); }
27 * <p>The default implementation returns the result of calling
30 @Override public Result visitResource(@NotNull BindingExpressionParser.ResourceContext ctx) { return visitChildren(ctx); }
35 * <p>The default implementation returns the result of calling
38 @Override public Result visitCastOp(@NotNull BindingExpressionParser.CastOpContext ctx) { return visitChildren(ctx);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
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...]
  /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
  /external/vogar/src/vogar/tasks/
MkdirTask.java 20 import vogar.Result;
31 @Override protected Result execute() throws Exception {
33 return Result.SUCCESS;
RmTask.java 20 import vogar.Result;
33 @Override protected Result execute() throws Exception {
35 return Result.SUCCESS;
  /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,
  /system/connectivity/shill/
portal_detector.h 52 // to access a URL and expecting a specific response. Any result
53 // that deviates from this result (DNS or HTTP errors, as well as
57 struct Result {
58 Result()
59 : trial_result(ConnectivityTrial::Result()),
62 explicit Result(ConnectivityTrial::Result result_in)
66 Result(ConnectivityTrial::Result result_in,
73 ConnectivityTrial::Result trial_result
    [all...]
mock_portal_detector.cc 27 base::Callback<void(const PortalDetector::Result&)>()) {}
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCDuplexInfo.cpp 690 MCInst Result;
702 Result.setOpcode(Hexagon::V4_SA1_inc);
703 addOps(Result, Inst, 0);
704 addOps(Result, Inst, 1);
708 Result.setOpcode(Hexagon::V4_SA1_dec);
709 addOps(Result, Inst, 0);
710 addOps(Result, Inst, 1);
714 Result.setOpcode(Hexagon::V4_SA1_addsp);
715 addOps(Result, Inst, 0);
716 addOps(Result, Inst, 2)
    [all...]
  /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;
  /hardware/bsp/intel/peripheral/libmraa/examples/java/
UartExample.java 28 import mraa.Result;
38 if (uart.setBaudRate(115200) != Result.SUCCESS) {
43 if (uart.setMode(8, UartParity.UART_PARITY_NONE, 1) != Result.SUCCESS) {
48 if (uart.setFlowcontrol(false, false) != Result.SUCCESS) {
  /libcore/luni/src/main/java/javax/xml/transform/
Result.java 18 // $Id: Result.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to build a transformation result tree.</p>
28 public interface Result {
32 * result tree disables output escaping.
34 * <p>Normally, result tree serialization escapes & and < (and
44 * <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and
54 * if the result tree enables output escaping at some point after having
63 * Set the system identifier for this Result.
65 * <p>If the Result is not to be written to a file, the system identifier is optional.
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASourceFile.cpp 23 HRESULT Result = SourceFile->get_fileName(&FileName16);
24 if (S_OK != Result)
41 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr);
45 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]);
46 if (S_OK != Result)
53 HRESULT Result = SourceFile->get_checksumType(&Type);
54 if (S_OK != Result)
61 HRESULT Result = SourceFile->get_compilands(&DiaEnumerator);
62 if (S_OK != Result)
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 41 const ast_matchers::MatchFinder::MatchResult &Result) {
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
44 *Result.SourceManager,
54 const ast_matchers::MatchFinder::MatchResult &Result) {
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
56 const Stmt *ToMatch = Result.Nodes.getStmtAs<Stmt>(ToId);
59 *Result.SourceManager, *FromMatch, *ToMatch));
67 const ast_matchers::MatchFinder::MatchResult &Result) {
68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body))
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 201 llvm::raw_svector_ostream &Result) {
202 Result << "<" << C->getTagName();
206 Result << " ";
208 Result << Attr.Name;
210 Result << "=\"" << Attr.Value << "\"";
215 Result << ">";
217 Result << "/>";
227 FC(FC), Result(Str), Traits(Traits)
258 llvm::raw_svector_ostream Result;
283 Result << " ";
    [all...]
  /frameworks/support/v4/honeycomb/android/support/v4/os/
AsyncTaskCompatHoneycomb.java 26 static <Params, Progress, Result> void executeParallel(
27 AsyncTask<Params, Progress, Result> task,
  /external/llvm/include/llvm/ADT/
StringSwitch.h 47 /// \brief The pointer to the result of this switch statement, once known,
49 const T *Result;
54 : Str(S), Result(nullptr) { }
59 if (!Result && N-1 == Str.size() &&
61 Result = &Value;
70 if (!Result && Str.size() >= N-1 &&
72 Result = &Value;
81 if (!Result && Str.size() >= N-1 &&
83 Result = &Value;
93 if (!Result &&
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
gpio.hpp 122 * @return Result of operation
124 Result
127 return (Result) mraa_gpio_edge_mode(m_gpio, (mraa_gpio_edge_t) mode);
130 Result
133 return (Result) mraa_gpio_isr(m_gpio, (mraa_gpio_edge_t) mode, (void (*) (void*)) pyfunc, (void*) args);
165 Result
173 return (Result) mraa_gpio_isr(m_gpio, (mraa_gpio_edge_t) mode, &uvwork, this);
176 Result
179 return (Result) mraa_gpio_isr(m_gpio, (mraa_gpio_edge_t) mode, mraa_java_isr_callback, runnable);
189 * @return Result of operatio
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/grovecircularled/
grovecircularled.h 84 mraa::Result setLevel (uint8_t level, bool direction=true);
91 mraa::Result setSpinner (uint8_t position);
98 mraa::Result setStatus (bool status[24]);
108 mraa::Result lockData ();
109 mraa::Result send16bitBlock (short data);
  /hardware/bsp/intel/peripheral/libupm/src/stepmotor/
stepmotor.h 99 mraa::Result stepForward (int ticks);
106 mraa::Result stepBackwards (int ticks);
118 mraa::Result move (int ticks);
119 mraa::Result dirForward ();
120 mraa::Result dirBackwards ();

Completed in 1001 milliseconds

12 3 4 5 6 7 8 91011>>