/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
PropertyViewer.java | 65 ArrayList<Property> returnValue = new ArrayList<Property>(); 69 returnValue.add(property); 73 returnValue.add(property); 77 return returnValue.toArray(new Property[returnValue.size()]); 155 String returnValue = ((Property) element).name; 156 int index = returnValue.indexOf(':'); 158 return returnValue.substring(index + 1); 160 return returnValue;
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPObject.cpp | 99 bool returnValue; 105 returnValue = m_npObject->_class->invoke(m_npObject, methodName, arguments.data(), argumentCount, &result); 113 if (!returnValue) 138 bool returnValue; 144 returnValue = m_npObject->_class->invokeDefault(m_npObject, arguments.data(), argumentCount, &result); 152 if (!returnValue) 177 bool returnValue; 183 returnValue = m_npObject->_class->construct(m_npObject, arguments.data(), argumentCount, &result); 187 if (!returnValue) 382 bool returnValue; [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
modal-dialog.html | 9 window.returnValue = document.form.toWindow.value;
|
showModalDialog-returnValue.html | 3 if (showModalDialog("data:text/html,<script>returnValue={value:'PASS'}; close()</"+"script>").value == "PASS")
|
/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)
|
ClassSpecificationsPanel.java | 70 int returnValue = classSpecificationDialog.showDialog(); 71 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION) 94 int returnValue = classSpecificationDialog.showDialog(); 95 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION)
|
OptimizationsDialog.java | 52 private int returnValue; 161 returnValue = APPROVE_OPTION; 219 returnValue = CANCEL_OPTION; 227 return returnValue;
|
ClassPathPanel.java | 97 int returnValue = chooser.showOpenDialog(owner); 98 if (returnValue == JFileChooser.APPROVE_OPTION) 147 int returnValue = chooser.showOpenDialog(owner); 148 if (returnValue == JFileChooser.APPROVE_OPTION) 190 int returnValue = filterDialog.showDialog(); 191 if (returnValue == FilterDialog.APPROVE_OPTION)
|
/frameworks/base/opengl/tests/gl2_yuvtex/ |
gl2_yuvtex.cpp | 335 EGLBoolean returnValue; 359 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); 360 checkEglError("eglInitialize", returnValue); 362 if (returnValue != EGL_TRUE) { 368 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); 369 if (returnValue) { 370 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); 392 returnValue = eglMakeCurrent(dpy, surface, surface, context); 393 checkEglError("eglMakeCurrent", returnValue); 394 if (returnValue != EGL_TRUE) [all...] |
/frameworks/base/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/webkit/Source/WebCore/rendering/ |
RenderQuote.cpp | 192 QuotesData* returnValue; 194 returnValue = quotesMap().get(lower.impl()); 195 if (returnValue) 196 return returnValue; 204 returnValue = QuotesData::create(lowerBound->arraySize); 205 if (!returnValue) 207 String* data = returnValue->data(); 210 quotesMap().set(lower.impl(), returnValue); 211 return returnValue;
|
/external/clang/test/Parser/ |
MicrosoftExtensions.cpp | 4 [repeatable][source_annotation_attribute( Parameter|ReturnValue )] 7 [returnvalue:SA_Post( attr=1)] 11 [returnvalue:SA_Post(attr=1)] 16 [returnvalue:SA_Post(attr=1)] 21 [returnvalue:SA_Post(attr=1)]
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebNSObjectExtras.mm | 66 id returnValue; 67 [invocation getReturnValue:&returnValue]; 68 [returnValue autorelease];
|
/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))
|
/dalvik/dx/junit-tests/com/android/dx/gen/ |
DexGeneratorTest.java | 84 code.returnValue(localResult); 114 code.returnValue(localResult); 139 code.returnValue(localResult); 167 directCode.returnValue(localA); 174 code.returnValue(localB); 201 superHashCode.returnValue(localResult); 207 generatedHashCode.returnValue(localZero); 234 code.returnValue(localResult); 280 code.returnValue(localResult); 289 code.returnValue(code.newLocal(Type.BOOLEAN)) [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
GaneshContext.cpp | 127 EGLBoolean returnValue = eglInitialize(display, &majorVersion, &minorVersion); 128 GLUtils::checkEglError("eglInitialize", returnValue); 176 EGLBoolean returnValue = eglMakeCurrent(display, tileQueue->m_eglSurface, tileQueue->m_eglSurface, m_surfaceContext); 177 GLUtils::checkEglError("eglMakeCurrent", returnValue);
|
/external/llvm/examples/ParallelJIT/ |
ParallelJIT.cpp | 281 void* returnValue; 282 result = pthread_join( add1Thread, &returnValue ); 287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; 289 result = pthread_join( fibThread1, &returnValue ); 294 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; 296 result = pthread_join( fibThread2, &returnValue ); 301 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
|
/frameworks/base/opengl/tests/gl2_copyTexImage/ |
gl2_copyTexImage.cpp | 366 EGLBoolean returnValue; 394 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); 395 checkEglError("eglInitialize", returnValue); 397 if (returnValue != EGL_TRUE) { 437 returnValue = eglMakeCurrent(dpy, surface, surface, context); 438 checkEglError("eglMakeCurrent", returnValue); 439 if (returnValue != EGL_TRUE) {
|
/external/icu4c/i18n/ |
dtfmtsym.cpp | 558 UnicodeString *returnValue = NULL; 565 returnValue = fMonths; 569 returnValue = fShortMonths; 573 returnValue = fNarrowMonths; 583 returnValue = fStandaloneMonths; 587 returnValue = fStandaloneShortMonths; 591 returnValue = fStandaloneNarrowMonths; 600 return returnValue; 620 UnicodeString *returnValue = NULL; 626 returnValue = fWeekdays [all...] |
/frameworks/base/media/libstagefright/codecs/aacdec/ |
get_prog_config.cpp | 138 RETURNING( tag = returnValue ) 144 RETURNING( pScratchPCE->profile = returnValue ) 150 RETURNING( pScratchPCE->sampling_rate_idx = returnValue ) 156 RETURNING( temp = returnValue ) 164 RETURNING( temp = returnValue ) 172 RETURNING( temp = returnValue ) 180 RETURNING( temp = returnValue ) 188 RETURNING( temp = returnValue ) 196 RETURNING( temp = returnValue ) 204 RETURNING( flag = returnValue ) [all...] |
/cts/tests/jni/ |
android_os_cts_FileUtils.cpp | 106 jint returnValue = chmod(fileStr, mode) == 0 ? 0 : errno; 108 return returnValue;
|
/external/chromium/chrome/browser/resources/shared/js/cr/ |
event_target.js | 80 this.returnValue = false; 96 return !prevented && event.returnValue;
|
/external/webkit/Source/WebCore/bindings/js/ |
JSErrorHandler.cpp | 96 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args); 105 if (returnValue.getBoolean(retvalbool) && !retvalbool)
|
/external/webkit/Source/WebKit2/UIProcess/ |
GenericCallback.h | 124 void performCallbackWithReturnValue(InternalReturnValueType returnValue) 128 m_callback(toAPI(returnValue), 0, context());
|