Searched refs:returnValue (Results 1 - 25 of 130) sorted by relevance

123456

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A DantRun.pl58 my $returnValue = system $ANT_RUN_CMD, @ARGV;
59 if ($returnValue eq 0) {
H A Drunant.pl143 my $returnValue = system $JAVACMD, @ARGS;
144 if ($returnValue eq 0)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDialogElement.idl30 attribute DOMString returnValue;
31 [RaisesException] void close([Default=NullString] optional DOMString returnValue);
H A DHTMLDialogElement.h41 void close(const String& returnValue, ExceptionState&);
45 String returnValue() const { return m_returnValue; } function in class:WebCore::FINAL
46 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } argument
H A DHTMLDialogElement.cpp60 void HTMLDialogElement::close(const String& returnValue, ExceptionState& es) argument
70 if (!returnValue.isNull())
71 m_returnValue = returnValue;
/external/webrtc/src/system_wrappers/source/
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 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;
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DConstantUnion.h112 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...]
/external/chromium_org/third_party/angle_dx11/src/libEGL/
H A Dmain.h45 const T &error(EGLint errorCode, const T &returnValue) argument
49 return returnValue;
53 const T &success(const T &returnValue) argument
57 return returnValue;
/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMReturnValueProvider.h10 id returnValue; variable
/external/chromium_org/chrome/installer/setup/eula/
H A Doem.js10 window.returnValue = 6;
12 window.returnValue = 1;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8ErrorHandler.cpp56 v8::Local<v8::Value> returnValue; local
69 returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters);
71 returnValue = ScriptController::callFunctionWithInstrumentation(0, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters);
73 return returnValue;
76 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue) argument
78 return returnValue->IsBoolean() && returnValue->BooleanValue();
H A DV8ValueCache.h51 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) argument
55 returnValue.Set(*m_lastV8String.persistent());
57 setReturnValueFromStringSlow(returnValue, stringImpl);
H A DV8ValueCache.cpp67 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 DV8AbstractEventListener.cpp114 v8::Local<v8::Value> returnValue; local
133 returnValue = callListenerFunction(context, jsEvent, event);
155 ASSERT(!handleOutOfMemory() || returnValue.IsEmpty());
157 if (returnValue.IsEmpty())
160 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->storesResultAsString())
161 event->storeResult(toWebCoreString(returnValue));
163 if (m_isAttribute && shouldPreventDefault(returnValue))
167 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue) argument
171 return returnValue
[all...]
H A DV8ErrorHandler.h51 virtual bool shouldPreventDefault(v8::Local<v8::Value> returnValue);
/external/proguard/src/proguard/optimize/info/
H A DMethodOptimizationInfo.java48 private Value returnValue; field in class:MethodOptimizationInfo
245 public void generalizeReturnValue(Value returnValue) argument
247 this.returnValue = this.returnValue != null ?
248 this.returnValue.generalize(returnValue) :
249 returnValue;
255 return returnValue;
/external/proguard/src/proguard/gui/
H A DMemberSpecificationsPanel.java79 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/chromium/chrome/browser/resources/shared/js/cr/
H A Devent_target.js80 this.returnValue = false;
96 return !prevented && event.returnValue;
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/
H A Devent_target.js80 this.returnValue = false;
96 return !prevented && event.returnValue;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/
H A Devent_target.js80 this.returnValue = false;
96 return !prevented && event.returnValue;
/external/chromium_org/ui/webui/resources/js/cr/
H A Devent_target.js80 this.returnValue = false;
96 return !prevented && event.returnValue;
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java49 Value returnValue);
47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A Dmain.h40 const T &error(GLenum errorCode, const T &returnValue) argument
44 return returnValue;
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A DTLSAsyncDispatcherMixIn.py127 returnValue = self.readBuffer
129 return returnValue

Completed in 3672 milliseconds

123456