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

1 2 3 4 5 6 7 8

  /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/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;
  /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.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);
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...]
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...]
  /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/webkit/Source/WebCore/bindings/v8/
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;
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;
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())
  /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...]
  /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/ThirdParty/ANGLE/src/libGLESv2/
main.h 40 const T &error(GLenum errorCode, const T &returnValue)
44 return returnValue;
  /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/native/opengl/libs/EGL/
egl_tls.h 57 int line, EGLint error, T returnValue, bool quiet = false) {
59 return returnValue;
  /external/proguard/src/proguard/gui/
MemberSpecificationsPanel.java 79 int returnValue = fieldSpecificationDialog.showDialog();
80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
101 int returnValue = methodSpecificationDialog.showDialog();
102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
131 int returnValue = memberSpecificationDialog.showDialog();
132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
  /external/webkit/Source/WebKit/mac/Misc/
WebNSObjectExtras.mm 66 id returnValue;
67 [invocation getReturnValue:&returnValue];
68 [returnValue autorelease];
  /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/evaluation/
InvocationUnit.java 49 Value returnValue);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GaneshContext.cpp 98 EGLBoolean returnValue = eglInitialize(display, &majorVersion, &minorVersion);
99 GLUtils::checkEglError("eglInitialize", returnValue);
146 EGLBoolean returnValue = eglMakeCurrent(display, tileQueue->m_eglSurface, tileQueue->m_eglSurface, m_surfaceContext);
147 GLUtils::checkEglError("eglMakeCurrent", returnValue);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H264SwDecApi.c 343 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED;
421 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
426 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY;
435 returnValue = H264SWDEC_PIC_RDY;
437 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
446 returnValue = H264SWDEC_STRM_ERR;
451 returnValue = H264SWDEC_MEMFAIL;
463 returnValue);
467 return(returnValue);
  /external/webkit/Source/WebCore/storage/
LocalStorageThread.cpp 89 void* returnValue;
91 waitForThreadCompletion(m_threadID, &returnValue);
  /external/webkit/Tools/TestWebKitAPI/
Test.h 84 #define TEST_ASSERT_RETURN(expression, returnValue) _TEST_ASSERT_HELPER(expression, return (returnValue))

Completed in 837 milliseconds

1 2 3 4 5 6 7 8