/external/chromium_org/third_party/ocmock/OCMock/ |
H A D | OCMReturnValueProvider.h | 10 id returnValue; variable
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
H A D | BeforeUnloadEvent.h | 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } argument 45 String returnValue() const { return m_returnValue; } function in class:WebCore::BeforeUnloadEvent
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
H A D | main.h | 40 const T &error(GLenum errorCode, const T &returnValue) argument 44 return returnValue;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
H A D | V8ValueCache.cpp | 67 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) argument 70 returnValue.SetEmptyString(); 78 returnValue.Set(*cachedV8String.persistent()); 82 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
|
H A D | V8ValueCache.h | 50 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) argument 54 returnValue.Set(*m_lastV8String.persistent()); 56 setReturnValueFromStringSlow(returnValue, stringImpl);
|
H A D | ScriptRegexp.cpp | 83 v8::Local<v8::Value> returnValue = exec->Call(regex, 1, argv); local 92 if (!returnValue->IsArray()) 95 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
|
H A D | V8ErrorHandler.cpp | 64 v8::Local<v8::Value> returnValue; local 77 returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate); 79 returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate); 81 return returnValue; 94 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue) argument 96 return returnValue->IsBoolean() && returnValue->BooleanValue();
|
H A D | DOMWrapperMap.h | 57 bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, KeyType* key) argument 62 returnValue.Set(*(it->value.persistent()));
|
H A D | UnsafePersistent.h | 68 inline bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, U* object) argument 73 returnValue.Set(result); 77 inline bool setReturnValue(v8::ReturnValue<v8::Value> returnValue) argument 79 returnValue.Set(deprecatedHandle());
|
H A D | V8AbstractEventListener.cpp | 114 v8::Local<v8::Value> returnValue; local 129 returnValue = callListenerFunction(context, jsEvent, event); 148 ASSERT(!handleOutOfMemory() || returnValue.IsEmpty()); 150 if (returnValue.IsEmpty()) 153 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) { 154 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, stringReturnValue, returnValue); 158 if (m_isAttribute && shouldPreventDefault(returnValue)) 162 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue) argument 166 return returnValue [all...] |
H A D | DOMDataStore.h | 55 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable) argument 65 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); 66 return mainWorldStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object)); 68 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); 72 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object) argument 76 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); 78 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); 82 static bool setReturnValueFromWrapperForMainWorld(v8::ReturnValue<v8::Value> returnValue, argument 154 setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, T* object) argument [all...] |
H A D | ScriptWrappable.h | 135 static bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, T* object) argument 137 return ScriptWrappable::getUnsafeWrapperFromObject(object).template setReturnValueWithSecurityCheck<V8T>(returnValue, object); 141 static bool setReturnValue(v8::ReturnValue<v8::Value> returnValue, T* object) argument 143 return ScriptWrappable::getUnsafeWrapperFromObject(object).setReturnValue(returnValue);
|
/external/chromium_org/third_party/angle/src/libEGL/ |
H A D | main.h | 45 const T &error(EGLint errorCode, const T &returnValue) argument 49 return returnValue; 53 const T &success(const T &returnValue) argument 57 return returnValue;
|
/external/proguard/src/proguard/evaluation/ |
H A D | InvocationUnit.java | 49 Value returnValue); 47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
|
/external/proguard/src/proguard/gui/ |
H A D | OptimizationsDialog.java | 52 private int returnValue; field in class:OptimizationsDialog 161 returnValue = APPROVE_OPTION; 219 returnValue = CANCEL_OPTION; 227 return returnValue;
|
H A D | FilterDialog.java | 61 private int returnValue; field in class:FilterDialog 156 returnValue = APPROVE_OPTION; 288 returnValue = CANCEL_OPTION; 296 return returnValue;
|
H A D | MemberSpecificationDialog.java | 73 private int returnValue; field in class:MemberSpecificationDialog 236 returnValue = APPROVE_OPTION; 425 returnValue = CANCEL_OPTION; 433 return returnValue;
|
/external/webrtc/src/system_wrappers/source/ |
H A D | aligned_malloc.cc | 61 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 D | atomic32_posix.cc | 42 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;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
H A D | HTMLDialogElement.h | 42 void close(const String& returnValue, ExceptionState&); 43 void closeDialog(const String& returnValue = String()); 57 String returnValue() const { return m_returnValue; } function in class:WebCore::FINAL 58 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } argument
|
H A D | HTMLDialogElement.cpp | 107 void HTMLDialogElement::close(const String& returnValue, ExceptionState& exceptionState) argument 113 closeDialog(returnValue); 116 void HTMLDialogElement::closeDialog(const String& returnValue) argument 127 if (!returnValue.isNull()) 128 m_returnValue = returnValue;
|
/external/icu4c/samples/ufortune/ |
H A D | ufortune.c | 154 int returnValue=0; local 162 if (optionError != NULL) {returnValue = -1;} 163 return returnValue;
|
/external/mockito/src/org/mockito/internal/handler/ |
H A D | InvocationNotifierHandler.java | 48 private void notifyMethodCall(Invocation invocation, Object returnValue) {
argument 51 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue));
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
H A D | JavaScriptCallFrame.cpp | 141 v8::Handle<v8::Value> JavaScriptCallFrame::returnValue() const function in class:WebCore::JavaScriptCallFrame 143 return m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "returnValue"));
|
/external/chromium_org/third_party/angle/src/compiler/ |
H A D | ConstantUnion.h | 112 ConstantUnion returnValue; local 115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break; 116 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break; 120 return returnValue; 125 ConstantUnion returnValue; local 128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break; 129 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break; 133 return returnValue; 138 ConstantUnion returnValue; local 141 case EbtInt: returnValue 151 ConstantUnion returnValue; local 163 ConstantUnion returnValue; local 175 ConstantUnion returnValue; local 187 ConstantUnion returnValue; local 199 ConstantUnion returnValue; local 211 ConstantUnion returnValue; local 223 ConstantUnion returnValue; local 235 ConstantUnion returnValue; local [all...] |