Searched refs:newobj (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java567 checkEquality(Object obj, Object newobj) argument
574 Boolean ret = (Boolean) eq.invoke(obj, newobj);
593 Object newobj = null;
611 newobj = in.readObject();
613 String deserialized = getString(newobj);
620 checkEquality(obj, newobj);
628 Object newobj = null;
649 newobj = decoder.readObject();
650 String decoded = getString(newobj);
658 checkEquality(obj, newobj);
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dltmain.sh5556 newobj=lt$counter-$objbase
5559 *[\ /]"$newobj "*) ;;
5560 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
5563 $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
5564 $run ln "$obj" "$gentop/$newobj" ||
5565 $run cp "$obj" "$gentop/$newobj"
5566 oldobjs="$oldobjs $gentop/$newobj"
H A Dxpath.c8879 xmlXPathObjectPtr cur, newobj; local
8897 newobj = valuePop(ctxt);
8898 if ((newobj == NULL) || (newobj->type != XPATH_STRING)) {
8899 xmlXPathReleaseObject(ctxt->context, newobj);
8903 tmp = xmlStrcat(newobj->stringval, cur->stringval);
8904 newobj->stringval = cur->stringval;
8906 xmlXPathReleaseObject(ctxt->context, newobj);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c4050 PyLongObject *tmp, *newobj; local
4061 newobj = (PyLongObject *)type->tp_alloc(type, n);
4062 if (newobj == NULL) {
4066 assert(PyLong_Check(newobj));
4067 Py_SIZE(newobj) = Py_SIZE(tmp);
4069 newobj->ob_digit[i] = tmp->ob_digit[i];
4071 return (PyObject *)newobj;

Completed in 80 milliseconds