Home | History | Annotate | Download | only in db

Lines Matching refs:dimensions

37 	// Dimensions information
38 Dim[] dimensions;
212 * Returns the dimensions supported for the current build.
214 * @return An array of dimensions.
217 return this.dimensions;
244 if (this.dimensions == null) return -1;
245 int length = this.dimensions.length;
247 if (this.dimensions[i] == null) break;
248 if (this.dimensions[i].getId() == dim_id) {
407 this.dimensions = new Dim[length];
414 this.dimensions[i] = (Dim) PerformanceTestPlugin.getDimension(dimId);
462 if (this.dimensions == null){
463 this.dimensions = new Dim[length];
467 this.dimensions[0] = dimension;
475 length = this.dimensions.length;
477 if (this.dimensions[i] == null) {
478 this.dimensions[i] = dimension;
482 if (this.dimensions[i].getId() == dim_id) {
526 int length = this.dimensions.length;
530 buffer.append(this.dimensions[i].getId());
574 int length = this.dimensions == null ? 0 : this.dimensions.length;
577 stream.writeInt(this.dimensions[i].getId());