Lines Matching refs:NEW
23 #define %new %warn "117:%new is deprecated. Use %newobject"
116 #define %newobject %feature("new")
117 #define %nonewobject %feature("new","0")
118 #define %clearnewobject %feature("new","")
317 %ignoreoperator(NEW) operator new;
319 %ignoreoperator(NEWARR) operator new[];
350 /* Set up the typemap for handling new return strings */
364 $1 = ($1_type) (new char[strlen((const char *)$input)+1]);
372 $1 = ($1_type) (new char[strlen((const char *)$input)+1]);
381 $1 = ($1_type) (new char[strlen((const char *)$input)+1]);
389 $1 = ($1_type) (new char[strlen((const char *)$input)+1]);
615 * return new Vector(result);
663 SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }