Home | History | Annotate | Download | only in relative

Lines Matching defs:constraint

34 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
118 // the constraint arrows
141 /** Paints a particular match constraint */
149 // Display the constraint. Remove the @id/ and @+id/ prefixes to make the text
152 String constraint = m.getConstraint(false /* generateId */);
153 String description = constraint.replace(NEW_ID_PREFIX, "").replace(ID_PREFIX, "");
163 /** Paints a constraint cycle */
164 void paintCycle(IGraphics gc, GuidelineHandler state, List<Constraint> cycle) {
179 for (Constraint constraint : cycle) {
180 assert constraint.from.node == from;
181 to = constraint.to.node;