/frameworks/base/opengl/libs/EGL/ |
egl_tls.h | 59 int line, EGLint error, T returnValue, bool quiet = false) { 61 return returnValue;
|
/external/proguard/src/proguard/evaluation/ |
InvocationUnit.java | 49 Value returnValue);
|
/external/proguard/src/proguard/gui/ |
FilterDialog.java | 61 private int returnValue; 156 returnValue = APPROVE_OPTION; 288 returnValue = CANCEL_OPTION; 296 return returnValue;
|
ClassSpecificationDialog.java | 77 private int returnValue; 265 returnValue = APPROVE_OPTION; 476 returnValue = CANCEL_OPTION; 484 return returnValue;
|
MemberSpecificationDialog.java | 73 private int returnValue; 236 returnValue = APPROVE_OPTION; 425 returnValue = CANCEL_OPTION; 433 return returnValue;
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Completion.h | 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated };
|
/external/icu4c/samples/ufortune/ |
ufortune.c | 154 int returnValue=0; 162 if (optionError != NULL) {returnValue = -1;} 163 return returnValue;
|
/external/webkit/Source/JavaScriptCore/parser/ |
Lexer.h | 114 ALWAYS_INLINE void parseHex(double& returnValue); 115 ALWAYS_INLINE bool parseOctal(double& returnValue); 116 ALWAYS_INLINE bool parseDecimal(double& returnValue);
|
Lexer.cpp | 545 ALWAYS_INLINE void Lexer::parseHex(double& returnValue) 561 returnValue = hexValue; 581 returnValue = parseIntOverflow(m_buffer8.data(), m_buffer8.size(), 16); 584 ALWAYS_INLINE bool Lexer::parseOctal(double& returnValue) 601 returnValue = octalValue; 616 returnValue = parseIntOverflow(m_buffer8.data(), m_buffer8.size(), 8); 620 ALWAYS_INLINE bool Lexer::parseDecimal(double& returnValue) 641 returnValue = decimalValue; [all...] |
/external/webkit/Source/WebCore/dom/ |
Event.h | 97 bool returnValue() const { return !defaultPrevented(); } 98 void setReturnValue(bool returnValue) { setDefaultPrevented(!returnValue); }
|
Event.idl | 75 attribute boolean returnValue;
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
proxy_form_controller_test.js | 33 var mockFunctionFactory = function(returnValue, logging) { 35 returnValue = returnValue || null; 41 funk(returnValue); 43 return returnValue; 46 funky.getValue = function() { return returnValue; };
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
GLUtils.cpp | 278 EGLBoolean returnValue = eglInitialize(display, &majorVersion, &minorVersion); 279 checkEglError("eglInitialize", returnValue); 280 if (returnValue != EGL_TRUE) { 299 returnValue = eglMakeCurrent(display, surface, surface, context); 300 checkEglError("eglMakeCurrent", returnValue); 301 if (returnValue != EGL_TRUE) {
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/ |
SwtBaseDialog.java | 174 * @param returnValue The new value to be returned by {@link #open()}. 176 protected void setReturnValue(boolean returnValue) { 177 mReturnValue = returnValue;
|
/external/chromium/base/ |
callback_unittest.cc | 51 TEST(CallbackOld, ReturnValue) {
|
/external/v8/test/mjsunit/ |
object-define-properties.js | 52 // Check that we actually get the object back as returnvalue
|
debug-return-value.js | 110 exec_state.frame(0).returnValue().value()); 120 response.lookup(frames[0].returnValue.ref).value);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
PluginProxy.messages.in | 48 Evaluate(WebKit::NPVariantData npObjectAsVariantData, WTF::String scriptString, bool allowPopups) -> (bool returnValue, WebKit::NPVariantData resultData)
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/ |
H264SwDecApi.c | 343 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED; 421 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; 426 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY; 435 returnValue = H264SWDEC_PIC_RDY; 437 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; 446 returnValue = H264SWDEC_STRM_ERR; 451 returnValue = H264SWDEC_MEMFAIL; 463 returnValue); 467 return(returnValue);
|
/frameworks/base/opengl/tests/hwc/ |
hwcTestLib.cpp | 54 EGLBoolean returnValue; 71 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion); 72 checkEglError("eglInitialize", returnValue); 76 if (returnValue != EGL_TRUE) { 86 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy, 88 if (returnValue) { 90 returnValue); 113 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context); 114 checkEglError("eglMakeCurrent", returnValue); 115 if (returnValue != EGL_TRUE) [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8DOMWindowCustom.cpp | 385 v8::Handle<v8::Value> returnValue() const; 403 inline v8::Handle<v8::Value> DialogHandler::returnValue() const 408 v8::Handle<v8::Value> returnValue = m_dialogContext->Global()->Get(v8::String::New("returnValue")); 409 if (returnValue.IsEmpty()) 411 return returnValue; 437 return handler.returnValue();
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/ |
DeviceBridge.java | 332 ViewServerInfo returnValue = new ViewServerInfo(server, protocol); 334 sViewServerInfo.put(device, returnValue); 336 return returnValue; 401 Window[] returnValue = new Window[windows.size()]; 403 returnValue[returnValue.length - i - 1] = windows.get(i); 405 return returnValue;
|
/external/easymock/src/org/easymock/internal/ |
RecordState.java | 280 private void requireAssignable(Object returnValue) {
285 if (returnValue == null) {
293 if (!returnedType.isAssignableFrom(returnValue.getClass())) {
|
/external/clang/lib/CodeGen/ |
CGCall.cpp | 877 Builder.CreateStore(Zero, ReturnValue); [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSInjectedScriptManager.cpp | 58 if (comp.complType() != JSC::Normal && comp.complType() != JSC::ReturnValue)
|