Lines Matching refs:eType

50 	eType     = SbxVARIANT;		// Nodes sind immer Variant  in SbiExprNode()
59 eType = t; in SbiExprNode()
68 eType = SbxSTRING; in SbiExprNode()
77 eType = ( t == SbxVARIANT ) ? r.GetType() : t; in SbiExprNode()
94 eType = SbxBOOL; in SbiExprNode()
104 eType = SbxOBJECT; in SbiExprNode()
177 if( eType >= SbxINTEGER && eType <= SbxDOUBLE ) in IsIntConst()
183 eType = SbxINTEGER; in IsIntConst()
272 eType = SbxSTRING; in FoldConstants()
273 if( pLeft->eType == SbxSTRING ) in FoldConstants()
275 eType = SbxSTRING; in FoldConstants()
276 if( eType == SbxSTRING ) in FoldConstants()
289 eType = SbxSTRING; in FoldConstants()
294 eType = SbxDOUBLE; in FoldConstants()
349 sal_Bool bBothInt = sal_Bool( pLeft->eType < SbxSINGLE in FoldConstants()
350 && pRight->eType < SbxSINGLE ); in FoldConstants()
354 eType = SbxDOUBLE; in FoldConstants()
380 eType = SbxINTEGER; break; in FoldConstants()
383 eType = SbxINTEGER; break; in FoldConstants()
386 eType = SbxINTEGER; break; in FoldConstants()
389 eType = SbxINTEGER; break; in FoldConstants()
392 eType = SbxINTEGER; break; in FoldConstants()
395 eType = SbxINTEGER; break; in FoldConstants()
402 eType = SbxLONG; break; in FoldConstants()
409 eType = SbxLONG; break; in FoldConstants()
411 nVal = (double) ( ll & lr ); eType = SbxLONG; break; in FoldConstants()
413 nVal = (double) ( ll | lr ); eType = SbxLONG; break; in FoldConstants()
415 nVal = (double) ( ll ^ lr ); eType = SbxLONG; break; in FoldConstants()
417 nVal = (double) ( ~ll ^ lr ); eType = SbxLONG; break; in FoldConstants()
419 nVal = (double) ( ~ll | lr ); eType = SbxLONG; break; in FoldConstants()
434 eType = ( n >= SbxMININT && n <= SbxMAXINT ) in FoldConstants()
445 eType = SbxDOUBLE; in FoldConstants()
464 eType = SbxLONG; in FoldConstants()
472 if( eType == SbxSINGLE || eType == SbxDOUBLE ) in FoldConstants()
477 eType = SbxLONG; in FoldConstants()
479 if( eType == SbxLONG && nVal >= SbxMININT && nVal <= SbxMAXINT ) in FoldConstants()
480 eType = SbxINTEGER; in FoldConstants()