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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.idl 30 attribute DOMString returnValue;
31 [RaisesException] void close([Default=NullString] optional DOMString returnValue);
HTMLDialogElement.h 41 void close(const String& returnValue, ExceptionState&);
45 String returnValue() const { return m_returnValue; }
46 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
HTMLDialogElement.cpp 60 void HTMLDialogElement::close(const String& returnValue, ExceptionState& es)
70 if (!returnValue.isNull())
71 m_returnValue = returnValue;
  /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/chromium_org/third_party/angle_dx11/src/compiler/
ConstantUnion.h 112 ConstantUnion returnValue;
115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
116 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
120 return returnValue;
125 ConstantUnion returnValue;
128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
129 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
133 return returnValue;
138 ConstantUnion returnValue;
141 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionValues.java 74 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
75 returnValue += " view = " + view + "\n";
76 returnValue += " values:";
78 returnValue += " " + s + ": " + values.get(s) + "\n";
80 return returnValue;
  /external/chromium_org/third_party/angle_dx11/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/chromium_org/third_party/ocmock/OCMock/
OCMReturnValueProvider.h 10 id returnValue;
  /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/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ErrorHandler.cpp 56 v8::Local<v8::Value> returnValue;
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)
78 return returnValue->IsBoolean() && returnValue->BooleanValue();
V8ValueCache.h 51 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
55 returnValue.Set(*m_lastV8String.persistent());
57 setReturnValueFromStringSlow(returnValue, stringImpl);
64 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
V8ValueCache.cpp 67 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
70 returnValue.SetEmptyString();
78 returnValue.Set(*cachedV8String.persistent());
82 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
V8AbstractEventListener.cpp 114 v8::Local<v8::Value> returnValue;
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)
171 return returnValue->IsBoolean() && !returnValue->BooleanValue()
    [all...]
V8ErrorHandler.h 51 virtual bool shouldPreventDefault(v8::Local<v8::Value> 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/chromium_org/chrome/installer/setup/eula/
oem.js 10 window.returnValue = 6;
12 window.returnValue = 1;
  /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/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /frameworks/base/core/java/android/hardware/camera2/utils/
CameraBinderDecorator.java 66 int returnValue = (Integer) result;
68 switch (returnValue) {
104 if (returnValue < 0) {
106 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)
  /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/chromium_org/third_party/WebKit/Source/modules/crypto/
KeyOperation.h 67 ScriptObject returnValue(ExceptionState&);

Completed in 299 milliseconds

1 2 3 4 5 6 7 8 9