/external/v8/src/mips/ |
register-allocator-mips.cc | 39 // Result implementation. 41 void Result::ToRegister() { 46 void Result::ToRegister(Register target) { 54 Result RegisterAllocator::AllocateByteRegisterWithoutSpilling() { 57 return Result();
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Interpolator_ResultTest.java | 20 import android.graphics.Interpolator.Result; 27 @TestTargetClass(Result.class) 36 assertEquals(Result.FREEZE_START, Result.valueOf("FREEZE_START")); 37 assertEquals(Result.FREEZE_END, Result.valueOf("FREEZE_END")); 38 assertEquals(Result.NORMAL, Result.valueOf("NORMAL")); 47 Result[] result = Result.values() local [all...] |
/external/llvm/lib/Support/ |
SystemUtils.cpp | 46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr); 47 Result.eraseComponent(); 49 if (!Result.isEmpty()) { 50 Result.appendComponent(ExeName); 51 Result.appendSuffix(sys::Path::GetEXESuffix()); 54 return Result;
|
/sdk/layoutlib_api/src/com/android/ide/common/rendering/api/ |
Result.java | 20 * Scene result class. This is an immutable class. 28 public class Result { 53 private Result mResult; 56 * Returns a {@link Result} object with this status. 59 public Result createResult() { 64 mResult = new Result(this); 71 * Returns a {@link Result} object with this status, and the given data. 74 * @see Result#getData() 76 public Result createResult(Object data) { 77 Result res = createResult() [all...] |
RenderSession.java | 19 import static com.android.ide.common.rendering.api.Result.Status.NOT_IMPLEMENTED; 21 import com.android.ide.common.rendering.api.Result.Status; 39 * Returns the last operation result. 41 public Result getResult() { 52 * <code>null</code> if the call failed (and the method returned a {@link Result} with 67 * <code>null</code> if the call failed (and the method returned a {@link Result} with 98 * {@link #getImage()} to access the result of the rendering. 102 * @return a {@link Result} indicating the status of the action. 104 public Result render() { 111 * {@link #getImage()} to access the result of the rendering [all...] |
/cts/libs/vogar-expect/src/vogar/ |
Result.java | 20 * The result of a test or benchmark execution. 22 public enum Result {
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnTextureCoords.h | 44 struct Result { 45 Result() 72 static Result compute(const LoopBlinnClassifier::Result& classification,
|
/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/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/llvm/include/llvm/ADT/ |
VectorExtras.h | 31 std::vector<T> Result; 32 Result.push_back(A); 34 Result.push_back(Val); 36 return Result;
|
/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);
|
Result.java | 23 public class Result implements IAnswer<Object>, Serializable {
31 private Result(IAnswer<?> value, boolean shouldFillInStackTrace) {
36 public static Result createThrowResult(final Throwable throwable) {
50 return new Result(new ThrowingAnswer(), true);
53 public static Result createReturnResult(final Object value) {
67 return new Result(new ReturningAnswer(), true);
70 public static Result createDelegatingResult(final Object value) {
95 return new Result(new DelegatingAnswer(), false);
98 public static Result createAnswerResult(IAnswer<?> answer) {
99 return new Result(answer, false); [all...] |
/external/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/clang/lib/Lex/ |
MacroArgs.cpp | 45 MacroArgs *Result; 48 Result = (MacroArgs*)malloc(sizeof(MacroArgs) + NumToks*sizeof(Token)); 50 new (Result) MacroArgs(NumToks, VarargsElided); 52 Result = *ResultEnt; 54 *ResultEnt = Result->ArgCache; 55 Result->NumUnexpArgTokens = NumToks; 56 Result->VarargsElided = VarargsElided; 59 // Copy the actual unexpanded tokens to immediately after the result ptr. 61 memcpy(const_cast<Token*>(Result->getUnexpArgument(0)), 64 return Result; [all...] |
Lexer.cpp | 207 std::string Result = Str; 209 for (unsigned i = 0, e = Result.size(); i != e; ++i) { 210 if (Result[i] == '\\' || Result[i] == Quote) { 211 Result.insert(Result.begin()+i, '\\'); 215 return Result; 302 std::string Result; 303 Result.reserve(Tok.getLength()); 309 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features)) [all...] |
/external/llvm/include/llvm/Object/ |
ObjectFile.h | 55 error_code getNext(RelocationRef &Result); 74 error_code getNext(SymbolRef &Result) const; 76 error_code getName(StringRef &Result) const; 77 error_code getAddress(uint64_t &Result) const; 78 error_code getSize(uint64_t &Result) const; 82 error_code getNMTypeChar(char &Result) const; 86 error_code isInternal(bool &Result) const; 105 error_code getNext(SectionRef &Result) const; 107 error_code getName(StringRef &Result) const; 108 error_code getAddress(uint64_t &Result) const [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/clang/lib/Basic/ |
VersionTuple.cpp | 20 std::string Result; 22 llvm::raw_string_ostream Out(Result); 25 return Result;
|
/external/chromium/chrome/common/extensions/ |
update_manifest.h | 37 // The result of parsing one <app> tag in an xml update check manifest. 38 struct Result { 39 Result(); 40 ~Result(); 54 std::vector<Result> list; 62 // Parses an update manifest xml string into Result data. Returns a bool
|
/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/clang/test/CodeGenCXX/ |
explicit-instantiation.cpp | 6 template<typename T, typename U, typename Result> 8 Result operator()(const T& t, const U& u) const; 11 template<typename T, typename U, typename Result> 12 Result plus<T, U, Result>::operator()(const T& t, const U& u) const {
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
par_loop.h | 54 * @param r Functor to "add" a single result to the already 57 * @param output Pointer to position where final result is written to 60 * @return User-supplied functor (that may contain a part of the result). 66 typename Result> 70 Op o, Fu& f, Red r, Result base, 71 Result& output, 79 Result *thread_results; 90 thread_results = static_cast<Result*>( 91 ::operator new(num_threads * sizeof(Result))); 98 Result* reduct = static_cast<Result*>(::operator new(sizeof(Result))) [all...] |