HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /frameworks/base/opengl/tools/glgen/stubs/jsr239/
glGetString.java-impl 10 String returnValue;
11 returnValue = _glGetString(
14 return returnValue;
  /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;
  /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;
  /frameworks/base/media/libstagefright/codecs/aacdec/
getbits.h 102 UInt32 returnValue = 0;
117 returnValue = (((UInt32) * (pElem)) << 24) |
135 returnValue = (((UInt32) * (pElem + 2)) << 8);
137 returnValue |= (((UInt32) * (pElem + 1)) << 16);
139 returnValue |= (((UInt32) * (pElem)) << 24);
148 returnValue = (((UInt32) * (pElem)) << 24) |
158 returnValue = returnValue << (bitIndex);
161 returnValue = returnValue >> (32 - neededBits)
    [all...]
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...]
  /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/webkit/WebCore/manual-tests/
DOMContextMenuEvent.html 33 if ((typeof event.returnValue) != "undefined")
34 event.returnValue = false;
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/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginHostProxy.mm 481 kern_return_t WKPCBooleanAndDataReply(mach_port_t clientPort, uint32_t pluginID, uint32_t requestID, boolean_t returnValue, data_t resultData, mach_msg_type_number_t resultLength)
494 instanceProxy->setCurrentReply(requestID, new NetscapePluginInstanceProxy::BooleanAndDataReply(returnValue, result));
581 boolean_t returnValue = instanceProxy->evaluate(objectID, script, resultData, resultLength, allowPopups);
583 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
640 boolean_t returnValue = instanceProxy->invoke(objectID, methodNameIdentifier, argumentsData, argumentsLength, resultData, resultLength);
642 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
666 boolean_t returnValue = instanceProxy->invokeDefault(objectID, argumentsData, argumentsLength, resultData, resultLength);
668 _WKPHBooleanAndDataReply(hostProxy->port(), instanceProxy->pluginID(), requestID, returnValue, resultData, resultLength);
677 boolean_t* returnValue, data_t* resultData, mach_msg_type_number_t* resultLength)
691 *returnValue = instanceProxy->construct(objectID, argumentsData, argumentsLength, *resultData, *resultLength)
    [all...]
WebKitPluginClient.defs 62 out returnValue :boolean_t;
69 out returnValue :boolean_t);
74 out returnValue :boolean_t;
84 out returnValue :boolean_t;
94 out returnValue :boolean_t;
143 out returnValue :boolean_t;
231 returnValue :boolean_t;
  /frameworks/base/opengl/tests/gl2_basic/
gl2_basic.cpp 262 EGLBoolean returnValue;
286 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
287 checkEglError("eglInitialize", returnValue);
289 if (returnValue != EGL_TRUE) {
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
303 if (returnValue) {
304 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
326 returnValue = eglMakeCurrent(dpy, surface, surface, context);
327 checkEglError("eglMakeCurrent", returnValue);
328 if (returnValue != EGL_TRUE)
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8AbstractEventListener.cpp 126 v8::Local<v8::Value> returnValue;
146 returnValue = callListenerFunction(context, jsEvent, event);
167 ASSERT(!V8Proxy::handleOutOfMemory() || returnValue.IsEmpty());
169 if (returnValue.IsEmpty())
172 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->storesResultAsString())
173 event->storeResult(toWebCoreString(returnValue));
177 if (m_isAttribute && returnValue->IsBoolean() && !returnValue->BooleanValue())
V8WorkerContextEventListener.cpp 107 v8::Local<v8::Value> returnValue;
119 returnValue = callFunction->Call(thisValue, 3, parameters);
130 bool errorHandled = returnValue->IsBoolean() && !returnValue->BooleanValue();
  /external/chromium/base/
task_unittest.cc 34 TEST(Task, 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)
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/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/WebKit/mac/Misc/
WebNSObjectExtras.mm 66 id returnValue;
67 [invocation getReturnValue:&returnValue];
68 [returnValue autorelease];
  /external/webkit/WebCore/storage/
LocalStorageThread.cpp 89 void* returnValue;
91 waitForThreadCompletion(m_threadID, &returnValue);
  /external/chromium/third_party/icu/source/i18n/
dtfmtsym.cpp 556 UnicodeString *returnValue = NULL;
563 returnValue = fMonths;
567 returnValue = fShortMonths;
571 returnValue = fNarrowMonths;
581 returnValue = fStandaloneMonths;
585 returnValue = fStandaloneShortMonths;
589 returnValue = fStandaloneNarrowMonths;
598 return returnValue;
618 UnicodeString *returnValue = NULL;
624 returnValue = fWeekdays
    [all...]
  /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...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/FW_Transfer/DebugTrace_Xfer/
DebugTraceXfer.c 133 TI_STATUS returnValue;
279 return pDebugTrace->returnValue;
310 pDebugTrace->returnValue = OK;
312 while(pDebugTrace->returnValue != TNETWIF_PENDING)
318 pDebugTrace->returnValue = TNETWIF_ReadMemOpt (pDebugTrace->hTNETWIF,
347 pDebugTrace->returnValue = TNETWIF_WriteRegOpt(pDebugTrace->hTNETWIF, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_DEBUG_ACK,
366 pDebugTrace->returnValue = TNETWIF_OK;
384 if (pDebugTrace->returnValue == TNETWIF_ERROR)

Completed in 663 milliseconds

1 2 3 4 5