Searched refs:fooOutput (Results 1 – 1 of 1) sorted by relevance
1278 IBase.Foo[] fooOutput = new IBase.Foo[2]; in someMethodWithFooArrays() local1279 fooOutput[0] = fooInput[1]; in someMethodWithFooArrays()1280 fooOutput[1] = fooInput[0]; in someMethodWithFooArrays()1282 return fooOutput; in someMethodWithFooArrays()1289 ArrayList<IBase.Foo> fooOutput = new ArrayList<IBase.Foo>(); in someMethodWithFooVectors() local1290 fooOutput.add(fooInput.get(1)); in someMethodWithFooVectors()1291 fooOutput.add(fooInput.get(0)); in someMethodWithFooVectors()1293 return fooOutput; in someMethodWithFooVectors()