HomeSort by relevance Sort by last modified time
    Searched refs:returnValue (Results 1 - 25 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/events/
BeforeUnloadEvent.idl 32 attribute DOMString returnValue;
BeforeUnloadEvent.h 43 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
44 String returnValue() const { return m_returnValue; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.idl 30 attribute DOMString returnValue;
31 [RaisesException] void close(optional DOMString returnValue = null);
HTMLDialogElement.h 41 void close(const String& returnValue, ExceptionState&);
42 void closeDialog(const String& returnValue = String());
60 String returnValue() const { return m_returnValue; }
61 void setReturnValue(const String& returnValue) { 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) {
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 120 uint32 returnValue = 0;
124 return (returnValue);
135 returnValue = (((uint32)(Elem)) << 24) |
144 returnValue <<= bitIndex;
147 returnValue >>= (32 - neededBits);
151 return (returnValue);
166 uint16 returnValue;
174 returnValue = (((uint16)(Elem)) << 8) |
182 returnValue = (returnValue << (bitIndex))
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
ConstantUnion.h 127 ConstantUnion returnValue;
130 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
131 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
132 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
136 return returnValue;
141 ConstantUnion returnValue;
144 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
145 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
146 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
150 return returnValue;
    [all...]
  /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/webrtc/src/system_wrappers/source/
atomic32_posix.cc 42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value);
43 returnValue += value;
44 return returnValue;
49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value);
50 returnValue -= value;
51 return returnValue;
aligned_malloc.cc 61 AlignedMemory* returnValue = new AlignedMemory();
62 if(returnValue == NULL)
71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) +
73 if(returnValue->memoryPointer == NULL)
75 delete returnValue;
81 uintptr_t alignStartPos = (uintptr_t)returnValue->memoryPointer;
89 returnValue->alignedBuffer = (void*)alignedPos;
96 uintptr_t headerValue = (uintptr_t)returnValue;
99 return returnValue->alignedBuffer;
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTestsStrict.java 28 Object returnValue = m.invoke(null, input);
32 (double) returnValue, 0D);
35 (int) returnValue, 0D);
47 Object returnValue;
50 returnValue = m.invoke(null, input1, (int) input2);
53 returnValue = m.invoke(null, input1, input2);
57 assertEquals(extra + ": " + m + ": " , expectedOutput, (double) returnValue, 0D);
59 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue, 0D);
RunCSVTests.java 58 Object returnValue = m.invoke(null, input);
69 (double) returnValue, allowedError);
72 (int) returnValue, allowedError);
85 Object returnValue;
88 returnValue = m.invoke(null, input1, (int) input2);
91 returnValue = m.invoke(null, input1, input2);
102 assertEquals(extra + ": " + m + ": ", expectedOutput, (double) returnValue,
105 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue,
  /frameworks/base/core/java/android/transition/
TransitionValues.java 80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
81 returnValue += " view = " + view + "\n";
82 returnValue += " values:";
84 returnValue += " " + s + ": " + values.get(s) + "\n";
86 return returnValue;
  /external/chromium_org/third_party/angle/src/libEGL/
main.h 45 const T &error(EGLint errorCode, const T &returnValue)
49 return returnValue;
53 const T &success(const T &returnValue)
57 return returnValue;
  /external/chromium_org/third_party/ocmock/OCMock/
OCMReturnValueProvider.h 10 id returnValue;
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 60 EGLBoolean returnValue;
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
84 if (returnValue != EGL_TRUE) {
91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
92 if (returnValue) {
93 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
112 returnValue = eglMakeCurrent(dpy, surface, surface, context);
113 checkEglError("eglMakeCurrent", returnValue);
114 if (returnValue != EGL_TRUE)
    [all...]
  /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/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 48 private Value returnValue;
245 public void generalizeReturnValue(Value returnValue)
247 this.returnValue = this.returnValue != null ?
248 this.returnValue.generalize(returnValue) :
249 returnValue;
255 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/v8/
DOMDataStore.h 67 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable)
71 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
79 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
81 return DOMWrapperWorld::mainWorld().domDataStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object));
83 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object);
87 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object)
91 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
    [all...]
V8ErrorHandler.cpp 62 v8::Local<v8::Value> returnValue;
75 returnValue = V8ScriptRunner::callFunction(callFunction, scriptState()->executionContext(), thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
77 returnValue = ScriptController::callFunction(scriptState()->executionContext(), callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
79 return returnValue;
92 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)
94 return returnValue->IsBoolean() && returnValue->BooleanValue();
V8AbstractEventListener.cpp 112 v8::Local<v8::Value> returnValue;
126 returnValue = callListenerFunction(jsEvent, event);
145 if (returnValue.IsEmpty())
148 if (m_isAttribute && !returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) {
149 TOSTRING_VOID(V8StringResource<>, stringReturnValue, returnValue);
153 if (m_isAttribute && shouldPreventDefault(returnValue))
157 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue)
161 return returnValue->IsBoolean() && !returnValue->BooleanValue()
    [all...]
  /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;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /packages/apps/Contacts/src/com/android/contacts/widget/
TouchlessScrollView.java 35 final Parcelable returnValue = super.onSaveInstanceState();
37 return returnValue;

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>