Lines Matching refs:nRes

38 	enum SbxBOOL nRes;  in ImpGetBool()  local
44 nRes = SbxFALSE; break; in ImpGetBool()
46 nRes = p->nChar ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
48 nRes = p->nByte ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
51 nRes = p->nInteger ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
54 nRes = p->nUShort ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
56 nRes = p->nLong ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
58 nRes = p->nULong ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
60 nRes = p->nSingle ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
63 nRes = p->nDouble ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
70 nRes = dVal ? SbxTRUE : SbxFALSE; in ImpGetBool()
74 nRes = p->nInt64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
76 nRes = p->uInt64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
78 nRes = !!p->nULong64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
81 nRes = !!p->nLong64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
85 nRes = SbxFALSE; in ImpGetBool()
89 nRes = SbxTRUE; in ImpGetBool()
103 nRes = SbxTRUE; in ImpGetBool()
115 nRes = pVal->GetBool() ? SbxTRUE : SbxFALSE; in ImpGetBool()
118 SbxBase::SetError( SbxERR_NO_OBJECT ); nRes = SbxFALSE; in ImpGetBool()
124 nRes = *p->pChar ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
126 nRes = *p->pByte ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
129 nRes = *p->pInteger ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
131 nRes = *p->pLong ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
133 nRes = *p->pULong ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
136 nRes = *p->pUShort ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
138 nRes = ( *p->pSingle != 0 ) ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
141 nRes = ( *p->pDouble != 0 ) ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
143 nRes = ( *p->pnInt64 ) ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
145 nRes = ( *p->puInt64 ) ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
147 nRes = !!*p->pULong64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
150 nRes = !!*p->pLong64 ? SbxTRUE : SbxFALSE; break; in ImpGetBool()
153 SbxBase::SetError( SbxERR_CONVERSION ); nRes = SbxFALSE; in ImpGetBool()
155 return nRes; in ImpGetBool()