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

12 3 4 5 6 7 8 91011>>

  /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/swiftshader/third_party/LLVM/utils/not/
not.cpp 19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0,
21 if (Result < 0) {
26 return Result == 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFDataExtractor.cpp 36 uint64_t Result = 0;
45 Result = getUnsigned(Offset, getAddressSize());
52 Result = getULEB128(Offset);
55 Result = getSLEB128(Offset);
58 Result = getUnsigned(Offset, 2);
61 Result = getUnsigned(Offset, 4);
64 Result = getUnsigned(Offset, 8);
67 Result = getSigned(Offset, 2);
70 Result = getSigned(Offset, 4);
73 Result = getSigned(Offset, 8)
    [all...]
  /external/vogar/src/vogar/android/
UninstallApkTask.java 19 import vogar.Result;
32 @Override protected Result execute() throws Exception {
34 return Result.SUCCESS;
  /device/generic/goldfish/wifi/ipv6proxy/
socket.h 18 #include "result.h"
64 Result open(int domain, int type, int protocol);
70 Result setInterface(const std::string& interface);
75 Result setMulticastHopLimit(int hopLimit);
80 Result setUnicastHopLimit(int hopLimit);
85 Result setTransparent(bool transparent);
89 Result bind(const Address& address);
93 Result receive(Message* receivingMessage);
94 Result receiveFrom(Message* receivingMessage, Address* from);
96 Result send(const void* data, size_t size)
    [all...]
socket.cpp 60 Result Socket::open(int domain, int type, int protocol) {
62 return Result::error("open called on socket in invalid state");
66 return Result::error(strerror(errno));
69 return Result::success();
72 Result Socket::setInterface(const std::string& interface) {
74 return Result::error("attempting to set option in invalid state");
79 return res == -1 ? Result::error(strerror(errno)) : Result::success();
82 Result Socket::setMulticastHopLimit(int hopLimit) {
84 return Result::error("attempting to set option in invalid state")
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
ObjectFile.h 104 error_code getNext(SymbolRef &Result) const;
106 error_code getName(StringRef &Result) const;
107 error_code getAddress(uint64_t &Result) const;
108 error_code getOffset(uint64_t &Result) const;
109 error_code getSize(uint64_t &Result) const;
110 error_code getSymbolType(SymbolRef::SymbolType &Result) const;
114 error_code getNMTypeChar(char &Result) const;
118 error_code isInternal(bool &Result) const;
122 error_code isGlobal(bool &Result) const;
143 error_code getNext(RelocationRef &Result) const
    [all...]
  /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/swiftshader/third_party/llvm-7.0/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/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...]
  /device/generic/goldfish/network/netmgr/commands/
wifi_command.h 20 #include "result.h"
32 Result onCommand(const char* command, const char* args) override;
35 Result writeConfig();
36 Result triggerHostApd();
37 Result setBlocked(const char* ifName, bool blocked);
39 Result onAdd(const std::vector<std::string>& args);
40 Result onBlock(const std::vector<std::string>& args);
41 Result onUnblock(const std::vector<std::string>& args);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CFLAliasAnalysisUtils.h 25 FunctionHandle(Function *Fn, AAResult *Result)
26 : CallbackVH(Fn), Result(Result) {
28 assert(Result != nullptr);
35 AAResult *Result;
38 assert(Result != nullptr);
40 Result->evict(cast<Function>(Val));
  /device/generic/goldfish/dhcp/client/
interface.cpp 36 Result Interface::init(const char* interfaceName) {
40 return Result::error("Interface initialized more than once");
45 return Result::error("Failed to create interface socket for '%s': %s",
49 Result res = populateIndex();
69 return Result::success();
72 Result Interface::bringUp() {
76 Result Interface::bringDown() {
80 Result Interface::setMtu(uint16_t mtu) {
87 return Result::error("Failed to set interface MTU %u for '%s': %s",
93 return Result::success()
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/SemihostLib/
SemihostLib.c 38 INT32 Result;
53 Result = Semihost_SYS_OPEN(&OpenBlock);
55 if (Result == -1) {
58 *FileHandle = Result;
70 INT32 Result;
75 Result = Semihost_SYS_SEEK(&SeekBlock);
79 if (Result < 0) {
94 UINT32 Result;
104 Result = Semihost_SYS_READ(&ReadBlock);
106 if ((*Length != 0) && (Result == *Length)) {
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
InterpolatorTest.java 25 import android.graphics.Interpolator.Result;
79 // set key frames far enough apart so that processing time will not cause result to
83 verifyValue(1.5f, Result.NORMAL, interpolator);
90 verifyValue(2.0f, Result.FREEZE_START, interpolator);
97 verifyValue(3.0f, Result.FREEZE_END, interpolator);
117 verifyValue(1000, 1.0f, Result.FREEZE_START, interpolator);
118 verifyValue(3000, 1.5f, Result.NORMAL, interpolator);
119 verifyValue(6000, 2.0f, Result.FREEZE_END, interpolator);
122 verifyValue(-1000, 2.0f, Result.FREEZE_END, interpolator);
128 verifyValue(0, 1.0f, Result.FREEZE_START, interpolator)
223 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/arm-optimized-routines/math/single/
e_expf.c 20 int N; float XN, g, Rg, Result;
100 Result = fhex(((N/2) << 23) + 0x3f800000);
101 Result *= Rg;
102 Result *= fhex(((N-N/2) << 23) + 0x3f800000);
106 if (fai(Result) == 0)
107 return MATHERR_EXPF_UFL(Result);
108 if (fai(Result) == 0x7f800000)
109 return MATHERR_EXPF_OFL(Result);
110 return FLOAT_CHECKDENORM(Result);
112 Result = fhex(N * 8388608.0f + (float)0x3f800000)
    [all...]
  /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;
  /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/main/java/org/junit/experimental/results/
FailureList.java 5 import org.junit.runner.Result;
16 public Result result() { method in class:FailureList
17 Result result = new Result(); local
18 RunListener listener = result.createListener();
26 return result;
  /external/skia/src/codec/
SkWuffsCodec.h 15 std::unique_ptr<SkCodec> SkWuffsCodec_MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);
  /external/skqp/src/codec/
SkWuffsCodec.h 15 std::unique_ptr<SkCodec> SkWuffsCodec_MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);

Completed in 1151 milliseconds

12 3 4 5 6 7 8 91011>>