/external/chromium_org/third_party/WebKit/Source/core/events/ |
BeforeUnloadEvent.idl | 32 attribute DOMString returnValue;
|
BeforeUnloadEvent.h | 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } 45 String returnValue() const { return m_returnValue; }
|
Event.cpp | 105 bool returnValue = !defaultPrevented(); 106 if (returnValue) 110 return returnValue; 113 void Event::setLegacyReturnValue(ExecutionContext* executionContext, bool returnValue) 115 if (returnValue) 119 setDefaultPrevented(!returnValue);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDialogElement.idl | 28 attribute DOMString returnValue; 29 [RaisesException] void close(optional DOMString returnValue = null);
|
HTMLDialogElement.h | 42 void close(const String& returnValue, ExceptionState&); 43 void closeDialog(const String& returnValue = String()); 61 String returnValue() const { return m_returnValue; } 62 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
|
HTMLDialogElement.cpp | 105 void HTMLDialogElement::close(const String& returnValue, ExceptionState& exceptionState) 111 closeDialog(returnValue); 114 void HTMLDialogElement::closeDialog(const String& returnValue) 125 if (!returnValue.isNull()) 126 m_returnValue = returnValue;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
antRun.pl | 58 my $returnValue = system $ANT_RUN_CMD, @ARGV; 59 if ($returnValue eq 0) {
|
/external/deqp/framework/egl/ |
egluCallLogWrapper.inl | 9 EGLint returnValue = ::eglGetError(); 11 m_log << TestLog::Message << "// " << getErrorStr(returnValue) << " returned" << TestLog::EndMessage; 12 return returnValue; 19 EGLDisplay returnValue = ::eglGetDisplay(param0); 21 m_log << TestLog::Message << "// " << getEGLDisplayStr(returnValue) << " returned" << TestLog::EndMessage; 22 return returnValue; 29 EGLBoolean returnValue = ::eglInitialize(param0, param1, param2); 31 m_log << TestLog::Message << "// " << (returnValue != EGL_FALSE ? "EGL_TRUE" : "EGL_FALSE") << " returned" << TestLog::EndMessage; 32 return returnValue; 39 EGLBoolean returnValue = ::eglTerminate(param0) [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
ConstantUnion.h | 188 ConstantUnion returnValue; 191 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break; 192 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break; 193 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break; 197 return returnValue; 202 ConstantUnion returnValue; 205 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break; 206 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break; 207 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break; 211 return returnValue; [all...] |
/external/chromium_org/third_party/angle/src/libEGL/ |
main.h | 44 const T &error(EGLint errorCode, const T &returnValue) 48 return returnValue; 52 const T &success(const T &returnValue) 56 return returnValue;
|
/external/chromium_org/third_party/ocmock/OCMock/ |
OCMReturnValueProvider.h | 10 id returnValue;
|
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/ |
memory_pool_win.h | 179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*) 182 if(returnValue == NULL) 187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>(); 188 if(returnValue->payload == NULL) 190 delete returnValue; 193 returnValue->payload->base = returnValue; 195 return returnValue;
|
/external/chromium_org/chrome/installer/setup/eula/ |
oem.js | 10 window.returnValue = 6; 12 window.returnValue = 1;
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
V8ErrorHandler.cpp | 61 v8::Local<v8::Value> returnValue; 74 returnValue = V8ScriptRunner::callFunction(callFunction, scriptState()->executionContext(), thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate()); 76 returnValue = ScriptController::callFunction(scriptState()->executionContext(), callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate()); 78 return returnValue; 91 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue) 93 return returnValue->IsBoolean() && returnValue->BooleanValue();
|
V8AbstractEventListener.cpp | 114 v8::Local<v8::Value> returnValue; 128 returnValue = callListenerFunction(jsEvent, event); 147 if (returnValue.IsEmpty()) 150 if (m_isAttribute && !returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) { 151 TOSTRING_VOID(V8StringResource<>, stringReturnValue, returnValue); 155 if (m_isAttribute && shouldPreventDefault(returnValue)) 159 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue) 163 return returnValue->IsBoolean() && !returnValue->BooleanValue() [all...] |
V8ValueCache.cpp | 89 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) 92 returnValue.SetEmptyString(); 100 m_lastV8String.SetReturnValue(returnValue); 104 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
|
V8ValueCache.h | 74 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) 78 m_lastV8String.SetReturnValue(returnValue); 80 setReturnValueFromStringSlow(returnValue, stringImpl); 87 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
|
DOMDataStore.h | 74 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable) 78 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue); 86 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue); 88 return DOMWrapperWorld::mainWorld().domDataStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toScriptWrappableBase(object)); 90 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); 94 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object) 98 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue); [all...] |
ScriptRegexp.cpp | 81 v8::Local<v8::Value> returnValue = V8ScriptRunner::callInternalFunction(exec, regex, WTF_ARRAY_LENGTH(argv), argv, isolate); 93 ASSERT(!returnValue.IsEmpty()); 94 if (!returnValue->IsArray()) 97 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
|
/cts/tools/signature-tools/src/signature/io/html/ |
ExecutableMemberComparator.java | 53 int returnValue = aMember.getName().compareTo(bMember.getName()); 54 return returnValue != 0 ? returnValue : compareParameterLists(aMember 64 int returnValue = 0; 66 returnValue += getTypeName(aIt.next().getType()).compareTo( 69 return returnValue;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
JDWPConstants.java | 125 String returnValue = ""; 127 returnValue += "|VERIFIED"; 129 returnValue += "|PREPARED"; 131 returnValue += "|INITIALIZED"; 133 returnValue += "|ERROR"; 135 returnValue += "|ARRAY"; 137 returnValue += "|PRIMITIVE"; 139 if (returnValue.equals("")) { 140 returnValue = "NONE"; 142 returnValue = returnValue.substring(1) [all...] |
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
BaseRenderScriptComparer.java | 48 float[] returnValue = new float[mHeight]; 49 rowOutputs.copyTo(returnValue); 53 sum += returnValue[i];
|
/cts/tools/signature-tools/src/signature/model/impl/ |
SigParameterizedType.java | 42 ITypeReference returnValue = ownerType; 43 if (returnValue == null) { 45 returnValue = new SigClassReference(rawType 49 return returnValue;
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
main.h | 42 const T &error(GLenum errorCode, const T &returnValue) 46 return returnValue;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
InvokeMethodTest.java | 215 Value returnValue = reply.getNextValueAsValue(); 216 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()=" 217 + returnValue.getIntValue()); 223 assertTrue("returnValue must be != null", returnValue != null); 224 assertEquals("Invalid returned value,", 345, returnValue.getIntValue()); 249 returnValue = reply.getNextValueAsValue(); 250 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()=" 251 + returnValue.getIntValue()); 331 Value returnValue = reply.getNextValueAsValue() [all...] |