Lines Matching refs:cs

241     protected synchronized void majorRequirementChange(ChildState cs, float delta) {
258 protected synchronized void minorRequirementChange(ChildState cs) {
286 ChildState cs = getChildState(i);
288 if (cs.min > min.min) {
289 min = cs;
291 if (cs.pref > pref.pref) {
292 pref = cs;
296 span += cs.getMajorSpan();
361 ChildState cs = stats.remove(offset);
362 float csSpan = cs.getMajorSpan();
364 cs.getChildView().setParent(null);
366 majorRequirementChange(cs, -csSpan);
453 ChildState cs = getChildState(index);
454 locator.childChanged(cs);
510 ChildState cs = getChildState(index);
511 cs.preferenceChanged(width, height);
513 q.addTask(cs);
574 ChildState cs = getChildState(i);
575 cs.childSizeValid = false;
576 q.addTask(cs);
710 ChildState cs = getChildState(n);
711 if (cs != null) {
712 return cs.getChildView();
770 ChildState cs = getChildState(index);
771 synchronized (cs) {
772 View cv = cs.getChildView();
817 ChildState cs = getChildState(index);
818 synchronized (cs) {
819 View v = cs.getChildView();
942 public synchronized void childChanged(ChildState cs) {
944 lastValidOffset = cs;
945 } else if (cs.getChildView().getStartOffset() <
947 lastValidOffset = cs;
962 ChildState cs = getChildState(i);
963 cs.setMajorOffset(offs);
966 synchronized (cs) {
967 View v = cs.getChildView();
974 offs += cs.getMajorSpan();
988 ChildState cs = getChildState(index);
992 if (cs.getChildView().getStartOffset() >
1028 ChildState cs = getChildState(index);
1029 if (! cs.isLayoutValid()) {
1030 cs.run();
1033 childAlloc.x = lastAlloc.x + (int) cs.getMajorOffset();
1034 childAlloc.y = lastAlloc.y + (int) cs.getMinorOffset();
1035 childAlloc.width = (int) cs.getMajorSpan();
1036 childAlloc.height = (int) cs.getMinorSpan();
1038 childAlloc.y = lastAlloc.y + (int) cs.getMajorOffset();
1039 childAlloc.x = lastAlloc.x + (int) cs.getMinorOffset();
1040 childAlloc.height = (int) cs.getMajorSpan();
1041 childAlloc.width = (int) cs.getMinorSpan();
1096 ChildState cs = getChildState(i);
1097 float nextOffs = offs + cs.getMajorSpan();
1120 ChildState cs = getChildState(i);
1121 cs.setMajorOffset(lastOffset);
1122 lastOffset += cs.getMajorSpan();
1125 lastValidOffset = cs;
1142 ChildState cs = getChildState(i);
1143 cs.setMajorOffset(lastOffset);
1144 lastOffset += cs.getMajorSpan();
1149 Rectangle cs = (childAlloc instanceof Rectangle) ?
1151 if (cs.intersects(clip)) {
1154 return lastAlloc.intersects(cs);