Home
last modified time | relevance | path

Searched refs:currentData (Results 1 – 6 of 6) sorted by relevance

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
DTextureGenerator.java116 ColorBandData currentData = dataArray[0]; in computeColorband() local
122 posDiff = i - currentData.pos; in computeColorband()
123 result[i][0] = currentData.r + rDiff * posDiff; in computeColorband()
124 result[i][1] = currentData.g + gDiff * posDiff; in computeColorband()
125 result[i][2] = currentData.b + bDiff * posDiff; in computeColorband()
126 result[i][3] = currentData.a + aDiff * posDiff; in computeColorband()
128 currentData = dataArray[currentCursor++]; in computeColorband()
132 int d = nextData.pos - currentData.pos; in computeColorband()
133 rDiff = (nextData.r - currentData.r)/d; in computeColorband()
134 gDiff = (nextData.g - currentData.g)/d; in computeColorband()
[all …]
/external/chromium/chrome/browser/resources/net_internals/
Ddetailsview.js37 DetailsView.prototype.setData = function(currentData) { argument
40 var sortedCurrentData = DetailsView.createSortedCopy_(currentData);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py1279 self.currentData = []
1307 if self.currentData:
1308 currentData = u''.join(self.currentData)
1309 if (currentData.translate(self.STRIP_ASCII_SPACES) == '' and
1312 if '\n' in currentData:
1313 currentData = '\n'
1315 currentData = ' '
1316 self.currentData = []
1319 not self.parseOnlyThese.search(currentData)):
1321 o = containerClass(currentData)
[all …]
/external/webkit/Source/WebCore/inspector/
DInspectorStyleSheet.cpp1121 CSSPropertySourceData* currentData = nextData; in fixUnparsedPropertyRanges() local
1124 if (currentData->parsedOk) in fixUnparsedPropertyRanges()
1126 … if (currentData->range.end > 0 && characters[styleStart + currentData->range.end - 1] == ';') in fixUnparsedPropertyRanges()
1140 if (currentData->range.end != newPropertyEnd) { in fixUnparsedPropertyRanges()
1141 currentData->range.end = newPropertyEnd; in fixUnparsedPropertyRanges()
1142 …unsigned valueStartInStyleSheet = styleStart + currentData->range.start + currentData->name.length… in fixUnparsedPropertyRanges()
1150currentData->value = styleSheetText.substring(valueStartInStyleSheet, propertyEndInStyleSheet - va… in fixUnparsedPropertyRanges()
/external/webkit/Source/WebCore/platform/network/mac/
DFormDataStreamMac.mm139 char* currentData;
156 if (form->currentData) {
157 fastFree(form->currentData);
158 form->currentData = 0;
177 form->currentData = data;
237 newInfo->currentData = 0;
/external/webkit/Source/WebKit/mac/
DChangeLog-2006-02-097019 (closeCurrentStream): Release currentData when closing the stream.
7020 …(advanceCurrentStream): Set up and retain currentData when the current stream is reading that data…
7022 (formCreate): Initialize currentData to NULL.