Lines Matching refs:IA
170 XIndexAccess IA = null; in _getDataPilotFields() local
172 IA = oObj.getDataPilotFields(); in _getDataPilotFields()
173 if (IA == null) { in _getDataPilotFields()
179 fieldsAmount = IA.getCount(); in _getDataPilotFields()
192 field = IA.getByIndex(i); in _getDataPilotFields()
282 XIndexAccess IA = oObj.getColumnFields(); in _getColumnFields() local
283 boolean bResult = CheckNames(IA, 0); in _getColumnFields()
299 XIndexAccess IA = oObj.getDataFields(); in _getDataFields() local
300 boolean bResult = CheckNames(IA, 2); in _getDataFields()
316 XIndexAccess IA = oObj.getHiddenFields(); in _getHiddenFields() local
317 boolean bResult = CheckNames(IA, 3); in _getHiddenFields()
333 XIndexAccess IA = oObj.getRowFields(); in _getRowFields() local
334 boolean bResult = CheckNames(IA, 1); in _getRowFields()
349 XIndexAccess IA = oObj.getPageFields(); in _getPageFields() local
350 boolean bResult = (IA != null); in _getPageFields()
375 boolean CheckNames(XIndexAccess IA, int rem) { in CheckNames() argument
378 if (IA == null) { in CheckNames()
388 if (IA.getCount() == 0) { in CheckNames()
396 for (int i = 0; i < IA.getCount(); i++) { in CheckNames()
397 Object field = IA.getByIndex(i); in CheckNames()