Home | History | Annotate | Download | only in layout

Lines Matching refs:features

19     private Feature[] features;
24 features = new Feature[10];
30 if (featureCount >= features.length) {
31 Feature[] newFeatures = new Feature[features.length + 5];
33 System.arraycopy(features, 0, newFeatures, 0, features.length);
34 features = newFeatures;
37 features[featureCount++] = feature;
42 TaggedRecord.sort(features, featureCount);
45 features[i].setFeatureIndex(i);
60 String tag = features[i].getTag();
74 features[i].writeFeature(writer);