Lines Matching refs:IA
202 XIndexAccess IA = null; in _getDataPilotFields() local
204 IA = oObj.getDataPilotFields(); in _getDataPilotFields()
205 if (IA == null) { in _getDataPilotFields()
210 fieldsAmount = IA.getCount(); in _getDataPilotFields()
222 field = IA.getByIndex(i); in _getDataPilotFields()
312 XIndexAccess IA = oObj.getColumnFields(); in _getColumnFields() local
313 return CheckNames(IA, 0); in _getColumnFields()
330 XIndexAccess IA = oObj.getDataFields(); in _getDataFields() local
331 return CheckNames(IA, 2); in _getDataFields()
348 XIndexAccess IA = oObj.getHiddenFields(); in _getHiddenFields() local
349 return CheckNames(IA, 3); in _getHiddenFields()
366 XIndexAccess IA = oObj.getRowFields(); in _getRowFields() local
367 boolean bResult = CheckNames(IA, 1); in _getRowFields()
384 XIndexAccess IA = oObj.getPageFields(); in _getPageFields() local
385 boolean bResult = CheckNames(IA, 4); in _getPageFields()
410 private boolean CheckNames(XIndexAccess IA, int rem) { in CheckNames() argument
413 if (IA == null) { in CheckNames()
423 if (IA.getCount() == 0) { in CheckNames()
431 for (int i = 0; i < IA.getCount(); i++) { in CheckNames()
432 Object field = IA.getByIndex(i); in CheckNames()