HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 1 - 25 of 397) 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/chromium_org/third_party/angle/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...]
  /external/chromium_org/third_party/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/chromium_org/chrome/installer/setup/eula/
oem.js 10 window.returnValue = 6;
12 window.returnValue = 1;
  /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/v8/src/
arguments.cc 40 // Check the ReturnValue.
61 #define WRITE_CALL_0(Function, ReturnValue) \
62 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f) { \
66 PropertyCallbackInfo<ReturnValue> info(begin()); \
68 return GetReturnValue<ReturnValue>(isolate); \
72 #define WRITE_CALL_1(Function, ReturnValue, Arg1) \
73 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
78 PropertyCallbackInfo<ReturnValue> info(begin()); \
80 return GetReturnValue<ReturnValue>(isolate); \
84 #define WRITE_CALL_2(Function, ReturnValue, Arg1, Arg2)
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMDataStore.h 55 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable)
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)
76 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object);
78 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object)
    [all...]
V8ValueCache.h 50 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
54 returnValue.Set(*m_lastV8String.persistent());
56 setReturnValueFromStringSlow(returnValue, stringImpl);
63 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
UnsafePersistent.h 68 inline bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, U* object)
73 returnValue.Set(result);
77 inline bool setReturnValue(v8::ReturnValue<v8::Value> returnValue)
79 returnValue.Set(deprecatedHandle());
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;
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)
166 return returnValue->IsBoolean() && !returnValue->BooleanValue()
    [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/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.h 42 void close(const String& returnValue, ExceptionState&);
43 void closeDialog(const String& returnValue = String());
57 String returnValue() const { return m_returnValue; }
58 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
HTMLDialogElement.idl 30 attribute DOMString returnValue;
31 [RaisesException] void close([Default=NullString] optional DOMString returnValue);
  /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/chrome/third_party/mock4js/examples/
PriceServiceTest.html 32 mockPriceCache.expects(once()).getCachedPrice("USDGBP").will(returnValue(null));
33 mockPriceFetcher.expects(once()).getPriceFromServer("USDGBP").will(returnValue(123.4));
42 mockPriceCache.expects(once()).getCachedPrice("USDGBP").will(returnValue(123.4));
  /external/chromium_org/third_party/WebKit/Source/core/events/
BeforeUnloadEvent.h 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
45 String returnValue() const { return m_returnValue; }
  /external/chromium_org/third_party/ocmock/OCMock/
OCMReturnValueProvider.m 15 returnValue = [aValue retain];
21 [returnValue release];
30 [anInvocation setReturnValue:&returnValue];
OCMBoxedReturnValueProvider.m 13 if(strcmp([[anInvocation methodSignature] methodReturnType], [(NSValue *)returnValue objCType]) != 0)
16 [returnValue getValue:buffer];
  /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/ManualTests/
DOMContextMenuEvent.html 33 if ((typeof event.returnValue) != "undefined")
34 event.returnValue = false;
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.h 40 const T &error(GLenum errorCode, const T &returnValue)
44 return returnValue;

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>