Searched defs:returnValue (Results 1 - 25 of 85) sorted by relevance

1234

/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMReturnValueProvider.h10 id returnValue; variable
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DBeforeUnloadEvent.h44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } argument
45 String returnValue() const { return m_returnValue; } function in class:blink::FINAL
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dmain.h42 const T &error(GLenum errorCode, const T &returnValue) argument
46 return returnValue;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDialogElement.h42 void close(const String& returnValue, ExceptionState&);
43 void closeDialog(const String& returnValue = String());
61 String returnValue() const { return m_returnValue; } function in class:blink::FINAL
62 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } argument
H A DHTMLDialogElement.cpp105 void HTMLDialogElement::close(const String& returnValue, ExceptionState& exceptionState) argument
111 closeDialog(returnValue);
114 void HTMLDialogElement::closeDialog(const String& returnValue) argument
125 if (!returnValue.isNull())
126 m_returnValue = returnValue;
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.h44 const T &error(EGLint errorCode, const T &returnValue) argument
48 return returnValue;
52 const T &success(const T &returnValue) argument
56 return returnValue;
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java49 Value returnValue);
47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
/external/proguard/src/proguard/gui/
H A DOptimizationsDialog.java52 private int returnValue; field in class:OptimizationsDialog
161 returnValue = APPROVE_OPTION;
219 returnValue = CANCEL_OPTION;
227 return returnValue;
H A DFilterDialog.java61 private int returnValue; field in class:FilterDialog
156 returnValue = APPROVE_OPTION;
288 returnValue = CANCEL_OPTION;
296 return returnValue;
/external/webrtc/src/system_wrappers/source/
H A Daligned_malloc.cc61 AlignedMemory* returnValue = new AlignedMemory(); local
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;
H A Datomic32_posix.cc42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value); local
43 returnValue += value;
44 return returnValue;
49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value); local
50 returnValue -= value;
51 return returnValue;
H A Dcpu_win.cc480 bool returnValue = true; local
486 returnValue = false;
492 returnValue = false;
528 return returnValue;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptRegexp.cpp81 v8::Local<v8::Value> returnValue = V8ScriptRunner::callInternalFunction(exec, regex, WTF_ARRAY_LENGTH(argv), argv, isolate); local
93 ASSERT(!returnValue.IsEmpty());
94 if (!returnValue->IsArray())
97 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
H A DV8ErrorHandler.cpp61 v8::Local<v8::Value> returnValue; local
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) argument
93 return returnValue->IsBoolean() && returnValue->BooleanValue();
H A DV8AbstractEventListener.cpp114 v8::Local<v8::Value> returnValue; local
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) argument
163 return returnValue->IsBoolean() && !returnValue
[all...]
H A DV8ValueCache.cpp89 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) argument
92 returnValue.SetEmptyString();
100 m_lastV8String.SetReturnValue(returnValue);
104 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
H A DV8ValueCache.h74 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) argument
78 m_lastV8String.SetReturnValue(returnValue);
80 setReturnValueFromStringSlow(returnValue, stringImpl);
H A DDOMDataStore.h74 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable) argument
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) argument
98 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
100 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, objec
104 setReturnValueFromWrapperForMainWorld(v8::ReturnValue<v8::Value> returnValue, T* object) argument
231 setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, T* object) argument
[all...]
H A DScriptWrappable.h168 bool setReturnValue(v8::ReturnValue<v8::Value> returnValue) argument
172 returnValue.Set(persistent);
H A DDOMWrapperMap.h56 bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, KeyType* key) argument
58 return m_map.SetReturnValue(key, returnValue);
/external/chromium_org/third_party/icu/source/samples/ufortune/
H A Dufortune.c154 int returnValue=0; local
162 if (optionError != NULL) {returnValue = -1;}
163 return returnValue;
/external/icu/icu4c/source/samples/ufortune/
H A Dufortune.c154 int returnValue=0; local
162 if (optionError != NULL) {returnValue = -1;}
163 return returnValue;
/external/mockito/src/org/mockito/internal/handler/
H A DInvocationNotifierHandler.java48 private void notifyMethodCall(Invocation invocation, Object returnValue) { argument
51 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue));
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
H A Dmemory_pool_win.h179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*) local
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/third_party/angle/src/compiler/translator/
H A DConstantUnion.h188 ConstantUnion returnValue; local
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; local
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;
216 ConstantUnion returnValue; local
230 ConstantUnion returnValue; local
243 ConstantUnion returnValue; local
256 ConstantUnion returnValue; local
269 ConstantUnion returnValue; local
282 ConstantUnion returnValue; local
295 ConstantUnion returnValue; local
308 ConstantUnion returnValue; local
320 ConstantUnion returnValue; local
[all...]

Completed in 306 milliseconds

1234