/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | ActivityResultFacade.java | 44 private Intent mResult = null; field in ActivityResultFacade 55 mResult = new Intent(); in setResultBoolean() 56 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.booleanValue()); in setResultBoolean() 67 mResult = new Intent(); in setResultByte() 68 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.byteValue()); in setResultByte() 79 mResult = new Intent(); in setResultShort() 80 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.shortValue()); in setResultShort() 91 mResult = new Intent(); in setResultChar() 92 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.charValue()); in setResultChar() 103 mResult = new Intent(); in setResultInteger() [all …]
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 47 private byte[] mResult; field in OpenSSLECDHKeyAgreement 83 System.arraycopy(buffer, 0, mResult, 0, mResult.length); in engineDoPhase() 89 mResult = result; in engineDoPhase() 99 if (mResult.length > available) { in engineGenerateSecret() 101 "Needed: " + mResult.length + ", available: " + available); in engineGenerateSecret() 104 System.arraycopy(mResult, 0, sharedSecret, offset, mResult.length); in engineGenerateSecret() 105 return mResult.length; in engineGenerateSecret() 111 return mResult; in engineGenerateSecret() 147 if (mResult == null) { in checkCompleted()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 49 private byte[] mResult; field in OpenSSLECDHKeyAgreement 85 System.arraycopy(buffer, 0, mResult, 0, mResult.length); in engineDoPhase() 91 mResult = result; in engineDoPhase() 101 if (mResult.length > available) { in engineGenerateSecret() 103 "Needed: " + mResult.length + ", available: " + available); in engineGenerateSecret() 106 System.arraycopy(mResult, 0, sharedSecret, offset, mResult.length); in engineGenerateSecret() 107 return mResult.length; in engineGenerateSecret() 113 return mResult; in engineGenerateSecret() 149 if (mResult == null) { in checkCompleted()
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | PollingAction.java | 50 private int mResult; field in PollingAction 65 mResult = code; 121 mResult = ResultCode.SUBSCRIBE_NOT_FOUND; in doInBackground() 134 mResult = ResultCode.ERROR_SERVICE_NOT_AVAILABLE; in doInBackground() 150 mResult = ResultCode.SUCCESS; in doInBackground() 153 mResult = ret; in doInBackground() 161 if (mResult == ResultCode.SUCCESS) { in doInBackground() 165 logger.info("Capability discovery failure result = " + mResult); in doInBackground() 188 logger.print("The action final result = " + mResult); in doInBackground() 189 mPollingTask.onPostExecute(mResult); in doInBackground() [all …]
|
/external/sl4a/Utils/src/com/googlecode/android_scripting/future/ |
D | FutureResult.java | 30 private volatile T mResult = null; field in FutureResult 33 mResult = result; in set() 45 return mResult; in get() 51 return mResult; in get() 61 return mResult != null; in isDone()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Query.cpp | 29 mResult = GL_FALSE; in Query() 108 mResult = GL_FALSE; in end() 121 return (GLuint)mResult; in getResult() 152 mResult = (resultSum > 0) ? GL_TRUE : GL_FALSE; in testQuery() 155 mResult = resultSum; in testQuery()
|
D | Query.h | 47 GLint mResult; variable
|
/external/angle/src/libANGLE/renderer/gl/ |
D | ShaderGL.cpp | 35 mResult(false), in TranslateTaskGL() 42 mResult = sh::Compile(mHandle, &source, 1, mOptions); in operator ()() 43 if (mResult) in operator ()() 50 bool getResult() { return mResult; } in getResult() 61 bool mResult; member in rx::TranslateTaskGL 110 mResult(result), in WaitableCompileEventNativeParallel() 119 bool getResult() override { return mResult; } in getResult() 125 bool mResult; member in rx::WaitableCompileEventNativeParallel 136 mResult(result) in WaitableCompileEventDone() 139 bool getResult() override { return mResult; } in getResult() [all …]
|
/external/sl4a/Common/src/com/googlecode/android_scripting/future/ |
D | FutureActivityTask.java | 36 private final FutureResult<T> mResult = new FutureResult<T>(); field in FutureActivityTask 77 mResult.set(result); in setResult() 81 return mResult.get(); in getResult() 85 return mResult.get(timeout, unit); in getResult()
|
/external/angle/src/libANGLE/renderer/ |
D | ShaderImpl.cpp | 44 : mHandle(handle), mOptions(options), mSource(source), mResult(false) in TranslateTask() 50 mResult = sh::Compile(mHandle, &source, 1, mOptions); in operator ()() 53 bool getResult() { return mResult; } in getResult() 61 bool mResult; member in rx::TranslateTask
|
D | ProgramImpl.h | 54 LinkEventDone(angle::Result result) : mResult(result) {} in LinkEventDone() 59 angle::Result mResult; 64 return mResult; in wait()
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | RequestFuture.java | 58 private T mResult; field in RequestFuture 107 return mResult; in doGet() 131 return mResult; in doGet() 150 mResult = response; in onResponse()
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Query9.cpp | 23 mResult(GL_FALSE), in Query9() 64 mResult = GL_FALSE; in end() 88 *params = static_cast<T>(mResult); in getResultBase() 136 mResult = (numPixels > 0) ? GL_TRUE : GL_FALSE; in testQuery() 148 mResult = (completed == TRUE) ? GL_TRUE : GL_FALSE; in testQuery()
|
D | Query9.h | 41 GLuint64 mResult; variable
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Query11.cpp | 60 : QueryImpl(type), mResult(0), mResultSum(0), mRenderer(renderer) in Query11() 210 mResultSum = MergeQueryResults(getType(), mResultSum, mResult); in flush() 236 mResult = (numPixels > 0) ? GL_TRUE : GL_FALSE; in testQuery() 252 mResult = static_cast<GLuint64>(soStats.NumPrimitivesWritten); in testQuery() 296 mResult = checkedTime.ValueOrDie(); in testQuery() 300 mResult = std::numeric_limits<GLuint64>::max() / timeStats.Frequency; in testQuery() 316 mResult = 0; in testQuery() 333 mResult = (completed == TRUE) ? GL_TRUE : GL_FALSE; in testQuery()
|
D | Query11.h | 60 GLuint64 mResult; variable
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | ZipExtractorTask.java | 218 final FutureResult<Replace> mResult = new FutureResult<Replace>(); in showDialog() local 242 mResult.set(result); in showDialog() 253 mResult.set(Replace.SKIPALL); in showDialog() 262 return mResult.get(); in showDialog()
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | ShaderD3D.cpp | 34 mResult(false) in TranslateTaskD3D() 46 mResult = sh::Compile(mHandle, &srcStrings[0], srcStrings.size(), mOptions); in operator ()() 49 bool getResult() { return mResult; } in getResult() 56 bool mResult; member in rx::TranslateTaskD3D
|
D | ProgramD3D.cpp | 550 void operator()() override { mResult = run(); } in operator ()() 552 angle::Result getResult() const { return mResult; } in getResult() 579 angle::Result mResult = angle::Result::Continue; member in rx::ProgramD3D::GetExecutableTask
|
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/system/impl/ |
D | WatcherImplTest.java | 80 private int mResult = Integer.MIN_VALUE; field in WatcherImplTest.WatcherResult 98 this.mResult = result; in onResult() 109 return mResult; in getResult()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | UnicodeMap.java | 653 T mResult = getValue(cp); 654 if (mResult != null) { 655 result.append(mResult);
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | UnicodeMap.java | 650 T mResult = getValue(cp); 651 if (mResult != null) { 652 result.append(mResult);
|