HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
glGetString.java-impl 10 String returnValue;
11 returnValue = _glGetString(
14 return returnValue;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ConstantUnion.h 143 ConstantUnion returnValue;
146 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
147 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
151 return returnValue;
156 ConstantUnion returnValue;
159 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
160 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
164 return returnValue;
169 ConstantUnion returnValue;
172 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.cpp 64 void NPObjectMessageReceiver::hasMethod(const NPIdentifierData& methodNameData, bool& returnValue)
67 returnValue = false;
71 returnValue = m_npObject->_class->hasMethod(m_npObject, methodNameData.createNPIdentifier());
74 void NPObjectMessageReceiver::invoke(const NPIdentifierData& methodNameData, const Vector<NPVariantData>& argumentsData, bool& returnValue, NPVariantData& resultData)
77 returnValue = false;
88 returnValue = m_npObject->_class->invoke(m_npObject, methodNameData.createNPIdentifier(), arguments.data(), arguments.size(), &result);
89 if (returnValue) {
102 void NPObjectMessageReceiver::invokeDefault(const Vector<NPVariantData>& argumentsData, bool& returnValue, NPVariantData& resultData)
105 returnValue = false;
116 returnValue = m_npObject->_class->invokeDefault(m_npObject, arguments.data(), arguments.size(), &result)
    [all...]
NPObjectMessageReceiver.messages.in 27 HasMethod(WebKit::NPIdentifierData methodName) -> (bool returnValue)
28 Invoke(WebKit::NPIdentifierData methodName, Vector<WebKit::NPVariantData> argumentsData) -> (bool returnValue, WebKit::NPVariantData resultData)
29 InvokeDefault(Vector<WebKit::NPVariantData> argumentsData) -> (bool returnValue, WebKit::NPVariantData resultData)
30 HasProperty(WebKit::NPIdentifierData propertyName) -> (bool returnValue)
31 GetProperty(WebKit::NPIdentifierData propertyName) -> (bool returnValue, WebKit::NPVariantData resultData)
32 SetProperty(WebKit::NPIdentifierData propertyName, WebKit::NPVariantData propertyValueData) -> (bool returnValue)
33 RemoveProperty(WebKit::NPIdentifierData propertyName) -> (bool returnValue)
34 Enumerate() -> (bool returnValue, Vector<WebKit::NPIdentifierData> identifiersData)
35 Construct(Vector<WebKit::NPVariantData> argumentsData) -> (bool returnValue, WebKit::NPVariantData resultData)
NPObjectProxy.cpp 101 bool returnValue = false;
103 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::HasMethod(methodNameData), Messages::NPObjectMessageReceiver::HasMethod::Reply(returnValue), m_npObjectID))
106 return returnValue;
119 bool returnValue = false;
122 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::Invoke(methodNameData, argumentsData), Messages::NPObjectMessageReceiver::Invoke::Reply(returnValue, resultData), m_npObjectID))
125 if (!returnValue)
141 bool returnValue = false;
144 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::InvokeDefault(argumentsData), Messages::NPObjectMessageReceiver::InvokeDefault::Reply(returnValue, resultData), m_npObjectID))
147 if (!returnValue)
161 bool returnValue = false
    [all...]
NPObjectMessageReceiver.h 60 void hasMethod(const NPIdentifierData&, bool& returnValue);
61 void invoke(const NPIdentifierData&, const Vector<NPVariantData>& argumentsData, bool& returnValue, NPVariantData& resultData);
62 void invokeDefault(const Vector<NPVariantData>& argumentsData, bool& returnValue, NPVariantData& resultData);
63 void hasProperty(const NPIdentifierData&, bool& returnValue);
64 void getProperty(const NPIdentifierData&, bool& returnValue, NPVariantData& resultData);
65 void setProperty(const NPIdentifierData&, const NPVariantData& propertyValueData, bool& returnValue);
66 void removeProperty(const NPIdentifierData&, bool& returnValue);
67 void enumerate(bool& returnValue, Vector<NPIdentifierData>& identifiersData);
68 void construct(const Vector<NPVariantData>& argumentsData, bool& returnValue, NPVariantData& resultData);
  /external/webrtc/src/system_wrappers/source/
atomic32_linux.h 69 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,1);
70 returnValue++;
71 return returnValue;
76 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,1);
77 returnValue--;
78 return returnValue;
95 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,rhs);
96 returnValue += rhs;
97 return returnValue;
102 WebRtc_Word32 returnValue = __sync_fetch_and_sub(_value,rhs)
    [all...]
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;
  /external/webkit/Source/ThirdParty/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/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 155 ReturnValue: string;
157 ReturnValue := FIANTLRString.GetValue;
158 CheckEquals(ReturnValue,'foo');
183 ReturnValue: string;
185 ReturnValue := FANTLRString.ToString;
186 CheckEquals(ReturnValue,'foo');
205 ReturnValue: IANTLRInterface;
207 ReturnValue := FICloneable.Clone;
208 Check(Supports(ReturnValue, IFoo));
209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value)
    [all...]
  /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) {
90 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
91 if (returnValue) {
92 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
111 returnValue = eglMakeCurrent(dpy, surface, surface, context);
112 checkEglError("eglMakeCurrent", returnValue);
113 if (returnValue != EGL_TRUE)
    [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;
  /external/webkit/Source/WebCore/bindings/v8/
V8WorkerContextErrorHandler.cpp 51 v8::Local<v8::Value> returnValue;
57 returnValue = callFunction->Call(thisValue, 3, parameters);
58 if (!returnValue.IsEmpty() && returnValue->IsBoolean() && !returnValue->BooleanValue())
61 return returnValue;
V8WindowErrorHandler.cpp 52 v8::Local<v8::Value> returnValue;
59 returnValue = callFunction->Call(thisValue, 3, parameters);
60 if (!tryCatch.HasCaught() && !returnValue.IsEmpty() && returnValue->IsBoolean() && !returnValue->BooleanValue())
63 return returnValue;
V8AbstractEventListener.cpp 143 v8::Local<v8::Value> returnValue;
162 returnValue = callListenerFunction(context, jsEvent, event);
186 ASSERT(!V8Proxy::handleOutOfMemory() || returnValue.IsEmpty());
188 if (returnValue.IsEmpty())
191 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->storesResultAsString())
192 event->storeResult(toWebCoreString(returnValue));
196 if (m_isAttribute && returnValue->IsBoolean() && !returnValue->BooleanValue())
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.h 40 const T &error(GLenum errorCode, const T &returnValue)
44 return returnValue;
  /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/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/webkit/Source/WebCore/manual-tests/
DOMContextMenuEvent.html 33 if ((typeof event.returnValue) != "undefined")
34 event.returnValue = false;
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginHostProxy.mm 475 kern_return_t WKPCBooleanAndDataReply(mach_port_t clientPort, uint32_t pluginID, uint32_t requestID, boolean_t returnValue, data_t resultData, mach_msg_type_number_t resultLength)
488 instanceProxy->setCurrentReply(requestID, new NetscapePluginInstanceProxy::BooleanAndDataReply(returnValue, result));
574 boolean_t returnValue = instanceProxy->evaluate(objectID, script, resultData, resultLength, allowPopups);
580 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
637 boolean_t returnValue = instanceProxy->invoke(objectID, methodNameIdentifier, argumentsData, argumentsLength, resultData, resultLength);
643 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
667 boolean_t returnValue = instanceProxy->invokeDefault(objectID, argumentsData, argumentsLength, resultData, resultLength);
673 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
682 boolean_t* returnValue, data_t* resultData, mach_msg_type_number_t* resultLength)
696 *returnValue = instanceProxy->construct(objectID, argumentsData, argumentsLength, *resultData, *resultLength)
    [all...]
WebKitPluginClient.defs 62 out returnValue :boolean_t;
69 out returnValue :boolean_t);
74 out returnValue :boolean_t;
84 out returnValue :boolean_t;
94 out returnValue :boolean_t;
143 out returnValue :boolean_t;
231 returnValue :boolean_t;
  /external/chromium/base/
callback_old.h 222 template <typename ReturnValue>
227 virtual ReturnValue Run() = 0;
231 template <class T, typename Method, typename ReturnValue>
234 public CallbackWithReturnValue<ReturnValue>::Type {
239 virtual ReturnValue Run() {
247 template <class T, typename ReturnValue>
248 typename CallbackWithReturnValue<ReturnValue>::Type*
249 NewCallbackWithReturnValue(T* object, ReturnValue (T::*method)()) {
250 return new CallbackWithReturnValueImpl<T, ReturnValue (T::*)(), ReturnValue>(
    [all...]
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 262 EGLBoolean returnValue;
286 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
287 checkEglError("eglInitialize", returnValue);
289 if (returnValue != EGL_TRUE) {
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
303 if (returnValue) {
304 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
326 returnValue = eglMakeCurrent(dpy, surface, surface, context);
327 checkEglError("eglMakeCurrent", returnValue);
328 if (returnValue != EGL_TRUE)
    [all...]
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 225 EGLBoolean returnValue;
249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
250 checkEglError("eglInitialize", returnValue);
252 if (returnValue != EGL_TRUE) {
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
259 if (returnValue) {
260 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
282 returnValue = eglMakeCurrent(dpy, surface, surface, context);
283 checkEglError("eglMakeCurrent", returnValue);
284 if (returnValue != EGL_TRUE)
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PropertyViewer.java 62 ArrayList<Property> returnValue = new ArrayList<Property>();
66 returnValue.add(property);
70 returnValue.add(property);
74 return returnValue.toArray(new Property[returnValue.size()]);
159 String returnValue = ((Property) element).name;
160 int index = returnValue.indexOf(':');
162 return returnValue.substring(index + 1);
164 return returnValue;

Completed in 1203 milliseconds

1 2 3 4 5 6 7 8 91011>>