HomeSort by relevance Sort by last modified time
    Searched defs:returnValue (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /external/chromium_org/chrome/common/extensions/
extension_file_util.cc 439 SubstitutionMap* returnValue = new SubstitutionMap();
447 *returnValue = *bundle->dictionary();
452 returnValue->insert(
455 return returnValue;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.cpp 123 NPObject* returnValue = v8ObjectToNPObject(object);
124 _NPN_RetainObject(returnValue);
125 return returnValue;
V8NPObject.cpp 146 v8::Handle<v8::Value> returnValue;
148 returnValue = convertNPVariantToV8Object(&result, npObject, info.GetIsolate());
151 v8SetReturnValue(info, returnValue);
238 v8::Handle<v8::Value> returnValue;
240 returnValue = convertNPVariantToV8Object(&result, npObject, isolate);
242 return returnValue;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WindowCustom.cpp 321 v8::Handle<v8::Value> returnValue(v8::Isolate*) const;
339 inline v8::Handle<v8::Value> DialogHandler::returnValue(v8::Isolate* isolate) const
344 v8::Handle<v8::Value> returnValue = m_dialogContext->Global()->Get(v8AtomicString(isolate, "returnValue"));
345 if (returnValue.IsEmpty())
347 return returnValue;
370 v8SetReturnValue(info, handler.returnValue(info.GetIsolate()));
  /external/clang/lib/Driver/
WindowsToolChain.cpp 91 bool returnValue = false;
167 returnValue = true;
179 returnValue = true;
183 return returnValue;
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 282 void* returnValue;
283 result = pthread_join( add1Thread, &returnValue );
288 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
290 result = pthread_join( fibThread1, &returnValue );
295 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
297 result = pthread_join( fibThread2, &returnValue );
302 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
  /external/proguard/src/proguard/gui/
FilterDialog.java 61 private int returnValue;
156 returnValue = APPROVE_OPTION;
288 returnValue = CANCEL_OPTION;
296 return returnValue;
OptimizationsDialog.java 52 private int returnValue;
161 returnValue = APPROVE_OPTION;
219 returnValue = CANCEL_OPTION;
227 return returnValue;
ClassSpecificationDialog.java 77 private int returnValue;
265 returnValue = APPROVE_OPTION;
476 returnValue = CANCEL_OPTION;
484 return returnValue;
MemberSpecificationDialog.java 73 private int returnValue;
236 returnValue = APPROVE_OPTION;
425 returnValue = CANCEL_OPTION;
433 return 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;
  /frameworks/base/obex/javax/obex/
ClientSession.java 178 HeaderSet returnValue = op.getReceivedHeader();
181 return returnValue;
  /frameworks/native/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...]
  /frameworks/native/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) {
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 225 EGLBoolean returnValue;
249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
250 checkEglError("eglInitialize", returnValue);
252 if (returnValue != EGL_TRUE) {
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
259 if (returnValue) {
260 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
282 returnValue = eglMakeCurrent(dpy, surface, surface, context);
283 checkEglError("eglMakeCurrent", returnValue);
284 if (returnValue != EGL_TRUE)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
LayoutUnit.h 130 LayoutUnit returnValue;
131 returnValue.setRawValue(::abs(m_value));
132 return returnValue;
  /frameworks/native/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...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 901 Object returnValue = method.invoke(null, new Object[0]);
903 h.put(VERSION + "xalan2_2", (String)returnValue);
1000 Object returnValue = method.invoke(null, new Object[0]);
1002 h.put(VERSION + "ant", (String)returnValue);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp 463 Node* returnValue = insertAdjacent(where, newChild, exceptionState);
464 return toElement(returnValue);
    [all...]
  /external/chromium_org/third_party/icu/source/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...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 105 * #returnValue returnValue()} with a local whose return type matches the
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 56 EGLBoolean returnValue;
73 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion);
74 checkEglError("eglInitialize", returnValue);
78 if (returnValue != EGL_TRUE) {
88 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy,
90 if (returnValue) {
92 returnValue);
115 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context);
116 checkEglError("eglMakeCurrent", returnValue);
117 if (returnValue != EGL_TRUE)
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 178 int returnValue = super.onStartCommand(intent, flags, startId);
184 return returnValue;
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsClientShouldInterceptRequestTest.java 79 InterceptedRequestData returnValue = mShouldInterceptRequestHelper.getReturnValue(url);
81 return returnValue;
  /external/chromium_org/chrome/third_party/mock4js/
mock4js.js 70 object.returnValue = function(value) {

Completed in 856 milliseconds

12 3 4 5