Lines Matching refs:tc
120 public void readConfig(TestingCamera21 tc, XmlPullParser configParser) in readConfig() argument
128 T pane = readControlPane(tc, configParser); in readConfig()
154 public void addPane(TestingCamera21 tc) { in addPane() argument
155 T newPane = createControlPane(tc, null); in addPane()
175 protected abstract T createControlPane(TestingCamera21 tc, AttributeSet attrs); in createControlPane() argument
177 protected abstract T readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
187 protected TargetControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) { in createControlPane() argument
188 return new TargetControlPane(tc, attrs, this); in createControlPane()
191 protected TargetControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
193 return new TargetControlPane(tc, configParser, this); in readControlPane()
204 protected CameraControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) { in createControlPane() argument
205 return new CameraControlPane(tc, attrs, this); in createControlPane()
208 protected CameraControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
210 return new CameraControlPane(tc, configParser, this); in readControlPane()
221 protected RequestControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) { in createControlPane() argument
222 return new RequestControlPane(tc, attrs, this); in createControlPane()
225 protected RequestControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
227 return new RequestControlPane(tc, configParser, this); in readControlPane()
239 protected BurstControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) { in createControlPane() argument
240 return new BurstControlPane(tc, attrs, this); in createControlPane()
243 protected BurstControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
245 return new BurstControlPane(tc, configParser, this); in readControlPane()
256 public UtilControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) { in createControlPane() argument
257 return new UtilControlPane(tc, attrs, this); in createControlPane()
260 protected UtilControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser) in readControlPane() argument
262 return new UtilControlPane(tc, configParser, this); in readControlPane()