/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...] |
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/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/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 | 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...] |
/external/llvm/include/llvm/Object/ |
ObjectFile.h | 106 error_code getNext(RelocationRef &Result) const; 108 error_code getAddress(uint64_t &Result) const; 109 error_code getOffset(uint64_t &Result) const; 110 error_code getSymbol(SymbolRef &Result) const; 111 error_code getType(uint64_t &Result) const; 116 error_code getHidden(bool &Result) const; 121 error_code getTypeName(SmallVectorImpl<char> &Result) const; 122 error_code getAdditionalInfo(int64_t &Result) const; 128 error_code getValueString(SmallVectorImpl<char> &Result) const; 147 error_code getNext(SectionRef &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
|
/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;
|
/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/unittests/Tooling/ |
CompilationDatabaseTest.cpp | 134 std::vector<std::string> Result = unescapeJsonCommandLine(""); 135 EXPECT_TRUE(Result.empty()); 139 std::vector<std::string> Result = unescapeJsonCommandLine("a b c"); 140 ASSERT_EQ(3ul, Result.size()); 141 EXPECT_EQ("a", Result[0]); 142 EXPECT_EQ("b", Result[1]); 143 EXPECT_EQ("c", Result[2]); 147 std::vector<std::string> Result = unescapeJsonCommandLine(" a b "); 148 ASSERT_EQ(2ul, Result.size()); 149 EXPECT_EQ("a", Result[0]) [all...] |
/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 {
|
/prebuilts/gcc/linux-x86/host/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...] |