Home
last modified time | relevance | path

Searched refs:dimensions (Results 1 – 25 of 106) sorted by relevance

12345

/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
DArraySerializer.java55 int[] dimensions = new int[depth]; in getDimensions() local
56 dimensions[0] = Array.getLength(array); in getDimensions()
57 if (depth > 1) collectDimensions(array, 1, dimensions); in getDimensions()
58 return dimensions; in getDimensions()
61 private void collectDimensions (Object array, int dimension, int[] dimensions) { in collectDimensions() argument
62 boolean elementsAreArrays = dimension < dimensions.length - 1; in collectDimensions()
66 dimensions[dimension] = Math.max(dimensions[dimension], Array.getLength(element)); in collectDimensions()
67 if (elementsAreArrays) collectDimensions(element, dimension + 1, dimensions); in collectDimensions()
76 int[] dimensions = new int[dimensionCount];
78 dimensions[i] = data.getInt();
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DBuildResults.java38 Dim[] dimensions; field in BuildResults
217 return this.dimensions; in getDimensions()
244 if (this.dimensions == null) return -1; in getDimIndex()
245 int length = this.dimensions.length; in getDimIndex()
247 if (this.dimensions[i] == null) break; in getDimIndex()
248 if (this.dimensions[i].getId() == dim_id) { in getDimIndex()
407 this.dimensions = new Dim[length]; in readData()
414 this.dimensions[i] = (Dim) PerformanceTestPlugin.getDimension(dimId); in readData()
462 if (this.dimensions == null){ in setValue()
463 this.dimensions = new Dim[length]; in setValue()
[all …]
DSQL_Results.java146 Dim[] dimensions = DB_Results.getResultsDimensions(); in queryDimScalars() local
147 int length = dimensions.length; in queryDimScalars()
155 buffer.append(dimensions[i].getId()); in queryDimScalars()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DRawDataTable.java33 private Dim[] dimensions = DB_Results.getResultsDimensions(); field in RawDataTable
66 int length = this.dimensions.length; in printColumnHeaders()
69 buffer.append(this.dimensions[i].getName()); in printColumnHeaders()
91 int dimLength = this.dimensions.length; in printDetails()
93 Dim dimension = this.dimensions[d]; in printDetails()
116 int length = this.dimensions.length; in printSummary()
119 dimStats[i] = this.configResults.getStatistics(this.buildPrefixes, this.dimensions[i].getId()); in printSummary()
124 String dimName = this.dimensions[i].getName(); in printSummary()
152 int length = this.dimensions.length; in printRowDoubles()
155 String dimName = this.dimensions[i].getName(); in printRowDoubles()
[all …]
DScenarioData.java53 private Dim[] dimensions = DB_Results.getResultsDimensions(); field in ScenarioData
277 int dimLength = this.dimensions.length; in printSummary()
279 Dim dim = this.dimensions[d]; in printSummary()
303 Dim dim = this.dimensions[d]; in printSummary()
342 int dimLength = this.dimensions.length; in printTableLine()
344 Dim dim = this.dimensions[d]; in printTableLine()
367 int dimLength = this.dimensions.length; in printDifferenceLine()
369 Dim currentDim = this.dimensions[d]; in printDifferenceLine()
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DMediaTexture.cpp144 if (!video->surfaceTexture.get() || video->dimensions.isEmpty() in draw()
153 SkRect dimensions = video->dimensions; in draw() local
154 dimensions.offset(mediaBounds.fLeft, mediaBounds.fTop); in draw()
157 if (!mediaBounds.contains(dimensions)) { in draw()
163 surfaceMatrix, dimensions, video->textureId); in draw()
254 const SkRect& dimensions) in setDimensions() argument
259 m_videoTextures[i]->dimensions = dimensions; in setDimensions()
285 wrapper->dimensions.setEmpty(); in createTexture()
DMediaTexture.h58 void setDimensions(const ANativeWindow* window, const SkRect& dimensions);
68 SkRect dimensions; // only used by the video layer member
DMediaLayer.cpp97 void MediaLayer::setWindowDimensionsForVideo(const ANativeWindow* window, const SkRect& dimensions) in setWindowDimensionsForVideo() argument
100 m_mediaTexture->setDimensions(window, dimensions); in setWindowDimensionsForVideo()
DMediaLayer.h55 void setWindowDimensionsForVideo(const ANativeWindow* window, const SkRect& dimensions);
/external/webkit/Source/WebCore/platform/graphics/chromium/
DVideoLayerChromium.cpp241 …Texture(GraphicsContext3D* context, unsigned textureId, const IntSize& dimensions, unsigned textur… in allocateTexture() argument
244 …esourceSafe(GraphicsContext3D::TEXTURE_2D, 0, textureFormat, dimensions.width(), dimensions.height… in allocateTexture()
247 …Texture(GraphicsContext3D* context, unsigned textureId, const IntSize& dimensions, unsigned format… in updateTexture() argument
251 …exSubImage2DCHROMIUM(GraphicsContext3D::TEXTURE_2D, 0, 0, 0, dimensions.width(), dimensions.height… in updateTexture()
253 memcpy(mem, data, dimensions.width() * dimensions.height()); in updateTexture()
259 …ntext->texSubImage2D(GraphicsContext3D::TEXTURE_2D, 0, 0, 0, dimensions.width(), dimensions.height… in updateTexture()
DVideoLayerChromium.h80 …void allocateTexture(GraphicsContext3D*, unsigned textureId, const IntSize& dimensions, unsigned t…
82 …void updateTexture(GraphicsContext3D*, unsigned textureId, const IntSize& dimensions, unsigned tex…
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DPerformanceResultsPreferenceInitializer.java59 Dimension[] dimensions = PerformanceTestPlugin.getResultsDimensions(); in initializeDefaultPreferences() local
60 int length = dimensions.length; in initializeDefaultPreferences()
62 Dim dim = (Dim) dimensions[i]; in initializeDefaultPreferences()
/external/chromium/chrome/browser/resources/ntp/
Dapps.js392 get dimensions() {
432 var bottom = rows * this.dimensions.height;
433 var right = cols * this.dimensions.width;
462 var w = this.dimensions.width;
463 var h = this.dimensions.height;
619 appsContent.style.height = (rows * this.dimensions.height) + 'px';
626 var w = this.dimensions.width;
627 var h = this.dimensions.height;
667 var rows = Math.ceil(maxiviewVisibleHeight / this.dimensions.height);
Ddrag_drop_controller.js190 var w = this.delegate_.dimensions.width;
191 var h = this.delegate_.dimensions.height;
/external/chromium/chrome/common/
Dautomation_messages.cc59 dimensions(), in ExternalTabSettings()
82 dimensions(in_dimensions), in ExternalTabSettings()
164 dimensions(in_dimensions), in AttachExternalTabParams()
491 WriteParam(m, p.dimensions); in Write()
507 ReadParam(m, iter, &p->dimensions) && in Read()
524 LogParam(p.dimensions, l); in Log()
645 WriteParam(m, p.dimensions); in Write()
657 ReadParam(m, iter, &p->dimensions) && in Read()
671 LogParam(p.dimensions, l); in Log()
Dautomation_messages.h65 const gfx::Rect& dimensions,
77 gfx::Rect dimensions; member
155 const gfx::Rect& dimensions,
163 gfx::Rect dimensions; member
/external/webkit/Source/WebKit/android/plugins/
DANPVideoInterface.cpp54 const ANPRectF* dimensions) { in anp_setWindowDimensions() argument
61 mediaLayer->setWindowDimensionsForVideo(window, *SkANP::SetRect(&rect, *dimensions)); in anp_setWindowDimensions()
DANPVideo_npapi.h54 …void (*setWindowDimensions)(NPP instance, const ANativeWindow* window, const ANPRectF* dimensions);
/external/proguard/src/proguard/classfile/util/
DClassUtil.java228 int dimensions = 0; in internalArrayTypeDimensionCount() local
229 while (internalType.charAt(dimensions) == ClassConstants.INTERNAL_TYPE_ARRAY) in internalArrayTypeDimensionCount()
231 dimensions++; in internalArrayTypeDimensionCount()
234 return dimensions; in internalArrayTypeDimensionCount()
610 int dimensions = 0; in externalArrayTypeDimensionCount() local
618 dimensions++; in externalArrayTypeDimensionCount()
622 return dimensions; in externalArrayTypeDimensionCount()
/external/chromium/chrome/browser/
Dbug_report_util.cc320 userfeedback::Dimensions dimensions; local
321 dimensions.set_width(static_cast<float>(png_width));
322 dimensions.set_height(static_cast<float>(png_height));
323 *(screenshot.mutable_dimensions()) = dimensions;
/external/qemu/android/camera/
Dcamera-capture-mac.m104 * width, height - Requested dimensions for the captured video frames.
242 /* Set desired frame dimensions. */
257 E("%s: Already capturing %dx%d frames. Requested frame dimensions are %dx%d",
375 * Since new capture request may require different frame dimensions we must
492 /* Array containing emulated webcam frame dimensions.
493 * QT API provides device independent frame dimensions, by scaling frames
494 * received from the device to whatever dimensions were requested for the
495 * output device. So, we can just use a small set of frame dimensions to
/external/llvm/docs/HistoricalNotes/
D2001-02-06-TypeNotationDebateResp2.txt9 > The arrays with size lists the dimensions and the type in a single list.
14 > It is too confusing to have a list of 3 things, some of which are dimensions
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DBuildResultsElement.java297 Dim[] dimensions = buildResults.getDimensions(); in initChildren() local
298 int length = dimensions.length; in initChildren()
301 this.children[i] = new DimResultsElement(this.results, this, dimensions[i]); in initChildren()
/external/webkit/LayoutTests/fast/dom/HTMLLinkElement/
Donload-completion-test-expected.txt1 … are already loaded. The page verifies that the image has the expected dimensions at the time of t…
/external/chromium/chrome/browser/ui/cocoa/extensions/
Dextension_view_mac.mm11 // The minimum/maximum dimensions of the popup.
69 // that an extension's view doesn't want any dimensions to ever be zero.

12345