/external/chromium_org/third_party/angle/src/compiler/ |
D | ConstantUnion.h | 112 ConstantUnion returnValue; variable 115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break; 116 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break; 120 return returnValue; 125 ConstantUnion returnValue; variable 128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break; 129 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break; 133 return returnValue; 138 ConstantUnion returnValue; variable 141 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break; [all …]
|
/external/webrtc/src/system_wrappers/source/ |
D | aligned_malloc.cc | 61 AlignedMemory* returnValue = new AlignedMemory(); in AlignedMalloc() local 62 if(returnValue == NULL) in AlignedMalloc() 71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) + in AlignedMalloc() 73 if(returnValue->memoryPointer == NULL) in AlignedMalloc() 75 delete returnValue; in AlignedMalloc() 81 uintptr_t alignStartPos = (uintptr_t)returnValue->memoryPointer; in AlignedMalloc() 89 returnValue->alignedBuffer = (void*)alignedPos; in AlignedMalloc() 96 uintptr_t headerValue = (uintptr_t)returnValue; in AlignedMalloc() 99 return returnValue->alignedBuffer; in AlignedMalloc()
|
D | atomic32_posix.cc | 42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value); in operator +=() local 43 returnValue += value; in operator +=() 44 return returnValue; in operator +=() 49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value); in operator -=() local 50 returnValue -= value; in operator -=() 51 return returnValue; in operator -=()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | DOMDataStore.h | 55 …static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::L… in setReturnValueFromWrapperFast() argument 65 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); in setReturnValueFromWrapperFast() 66 …return mainWorldStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object… in setReturnValueFromWrapperFast() 68 … return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); in setReturnValueFromWrapperFast() 72 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object) in setReturnValueFromWrapper() argument 76 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); in setReturnValueFromWrapper() 78 … return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); in setReturnValueFromWrapper() 82 …static bool setReturnValueFromWrapperForMainWorld(v8::ReturnValue<v8::Value> returnValue, T* objec… in setReturnValueFromWrapperForMainWorld() argument 85 return ScriptWrappable::setReturnValue(returnValue, object); in setReturnValueFromWrapperForMainWorld() 86 …return mainWorldStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object… in setReturnValueFromWrapperForMainWorld() [all …]
|
D | V8AbstractEventListener.cpp | 114 v8::Local<v8::Value> returnValue; in invokeEventHandler() local 129 returnValue = callListenerFunction(context, jsEvent, event); in invokeEventHandler() 148 ASSERT(!handleOutOfMemory() || returnValue.IsEmpty()); in invokeEventHandler() 150 if (returnValue.IsEmpty()) in invokeEventHandler() 153 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) { in invokeEventHandler() 154 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, stringReturnValue, returnValue); in invokeEventHandler() 158 if (m_isAttribute && shouldPreventDefault(returnValue)) in invokeEventHandler() 162 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue) in shouldPreventDefault() argument 166 return returnValue->IsBoolean() && !returnValue->BooleanValue(); in shouldPreventDefault()
|
D | V8ErrorHandler.cpp | 64 v8::Local<v8::Value> returnValue; in callListenerFunction() local 77 …returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(para… in callListenerFunction() 79 …returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(pa… in callListenerFunction() 81 return returnValue; in callListenerFunction() 94 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue) in shouldPreventDefault() argument 96 return returnValue->IsBoolean() && returnValue->BooleanValue(); in shouldPreventDefault()
|
D | V8ValueCache.cpp | 67 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* … in setReturnValueFromStringSlow() argument 70 returnValue.SetEmptyString(); in setReturnValueFromStringSlow() 78 returnValue.Set(*cachedV8String.persistent()); in setReturnValueFromStringSlow() 82 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate())); in setReturnValueFromStringSlow()
|
D | UnsafePersistent.h | 68 inline bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, U* object) in setReturnValueWithSecurityCheck() argument 73 returnValue.Set(result); in setReturnValueWithSecurityCheck() 77 inline bool setReturnValue(v8::ReturnValue<v8::Value> returnValue) in setReturnValue() argument 79 returnValue.Set(deprecatedHandle()); in setReturnValue()
|
D | V8ValueCache.h | 50 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) in setReturnValueFromString() argument 54 returnValue.Set(*m_lastV8String.persistent()); in setReturnValueFromString() 56 setReturnValueFromStringSlow(returnValue, stringImpl); in setReturnValueFromString()
|
D | ScriptWrappable.h | 135 static bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, T* object) in setReturnValueWithSecurityCheck() argument 137 …UnsafeWrapperFromObject(object).template setReturnValueWithSecurityCheck<V8T>(returnValue, object); in setReturnValueWithSecurityCheck() 141 static bool setReturnValue(v8::ReturnValue<v8::Value> returnValue, T* object) in setReturnValue() argument 143 return ScriptWrappable::getUnsafeWrapperFromObject(object).setReturnValue(returnValue); in setReturnValue()
|
/external/proguard/src/proguard/optimize/info/ |
D | MethodOptimizationInfo.java | 48 private Value returnValue; field in MethodOptimizationInfo 245 public void generalizeReturnValue(Value returnValue) in generalizeReturnValue() argument 247 this.returnValue = this.returnValue != null ? in generalizeReturnValue() 248 this.returnValue.generalize(returnValue) : in generalizeReturnValue() 249 returnValue; in generalizeReturnValue() 255 return returnValue; in getReturnValue()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLDialogElement.h | 42 void close(const String& returnValue, ExceptionState&); 43 void closeDialog(const String& returnValue = String()); 57 String returnValue() const { return m_returnValue; } in returnValue() function 58 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } in setReturnValue() argument
|
D | HTMLDialogElement.cpp | 107 void HTMLDialogElement::close(const String& returnValue, ExceptionState& exceptionState) in close() argument 113 closeDialog(returnValue); in close() 116 void HTMLDialogElement::closeDialog(const String& returnValue) in closeDialog() argument 127 if (!returnValue.isNull()) in closeDialog() 128 m_returnValue = returnValue; in closeDialog()
|
/external/chromium_org/third_party/angle/src/libEGL/ |
D | main.h | 45 const T &error(EGLint errorCode, const T &returnValue) in error() argument 49 return returnValue; in error() 53 const T &success(const T &returnValue) in success() argument 57 return returnValue; in success()
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | BeforeUnloadEvent.h | 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } in setReturnValue() argument 45 String returnValue() const { return m_returnValue; } in returnValue() function
|
/external/proguard/src/proguard/gui/ |
D | MemberSpecificationsPanel.java | 79 int returnValue = fieldSpecificationDialog.showDialog(); in addAddFieldButton() 80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddFieldButton() 101 int returnValue = methodSpecificationDialog.showDialog(); in addAddMethodButton() 102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddMethodButton() 131 int returnValue = memberSpecificationDialog.showDialog(); in addEditButton() 132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addEditButton()
|
D | ClassSpecificationsPanel.java | 70 int returnValue = classSpecificationDialog.showDialog(); in addAddButton() 71 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION) in addAddButton() 94 int returnValue = classSpecificationDialog.showDialog(); in addEditButton() 95 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION) in addEditButton()
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 282 void* returnValue; in main() local 283 result = pthread_join( add1Thread, &returnValue ); in main() 288 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main() 290 result = pthread_join( fibThread1, &returnValue ); in main() 295 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main() 297 result = pthread_join( fibThread2, &returnValue ); in main() 302 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
|
/external/chromium_org/third_party/ocmock/OCMock/ |
D | OCMReturnValueProvider.m | 15 returnValue = [aValue retain]; 21 [returnValue release]; 30 [anInvocation setReturnValue:&returnValue];
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | dtfmtsym.cpp | 558 UnicodeString *returnValue = NULL; in getMonths() local 565 returnValue = fMonths; in getMonths() 569 returnValue = fShortMonths; in getMonths() 573 returnValue = fNarrowMonths; in getMonths() 583 returnValue = fStandaloneMonths; in getMonths() 587 returnValue = fStandaloneShortMonths; in getMonths() 591 returnValue = fStandaloneNarrowMonths; in getMonths() 600 return returnValue; in getMonths() 620 UnicodeString *returnValue = NULL; in getWeekdays() local 626 returnValue = fWeekdays; in getWeekdays() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
D | antRun.pl | 58 my $returnValue = system $ANT_RUN_CMD, @ARGV; 59 if ($returnValue eq 0) {
|
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
D | SyncStatusHelper.java | 281 boolean returnValue; in isSyncEnabled() 283 returnValue = mCachedMasterSyncAutomatically && in isSyncEnabled() 288 return returnValue; in isSyncEnabled() 315 boolean returnValue; in isSyncEnabledForChrome() 317 returnValue = mCachedSettings.getSyncAutomatically(account); in isSyncEnabledForChrome() 321 return returnValue; in isSyncEnabledForChrome()
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 88 code.returnValue(localResult); in testNewInstance() 135 code.returnValue(localResult); in testInvokeStatic() 181 code.returnValue(localResult); in testInvokeVirtual() 209 directCode.returnValue(localA); in testInvokeDirect() 216 code.returnValue(localB); in testInvokeDirect() 243 superHashCode.returnValue(localResult); in testInvokeSuper() 249 generatedHashCode.returnValue(localZero); in testInvokeSuper() 271 code.returnValue(localResult); in testInvokeInterface() 295 code.returnValue(result); in testInvokeVoidMethodIgnoresTargetLocal() 341 code.returnValue(localResult); in testInvokeTypeSafety() [all …]
|
/external/icu4c/i18n/ |
D | dtfmtsym.cpp | 553 UnicodeString *returnValue = NULL; in getMonths() local 560 returnValue = fMonths; in getMonths() 565 returnValue = fShortMonths; in getMonths() 569 returnValue = fNarrowMonths; in getMonths() 579 returnValue = fStandaloneMonths; in getMonths() 584 returnValue = fStandaloneShortMonths; in getMonths() 588 returnValue = fStandaloneNarrowMonths; in getMonths() 597 return returnValue; in getMonths() 617 UnicodeString *returnValue = NULL; in getWeekdays() local 623 returnValue = fWeekdays; in getWeekdays() [all …]
|
/external/chromium_org/chrome/installer/setup/eula/ |
D | oem.js | 10 window.returnValue = 6; 12 window.returnValue = 1;
|