Home
last modified time | relevance | path

Searched refs:currentData (Results 1 – 5 of 5) 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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourcePattern.cpp56 PatternData* currentData = m_patternMap.get(object); in buildPattern() local
57 if (currentData && currentData->pattern) in buildPattern()
58 return currentData; in buildPattern()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py1215 self.currentData = []
1237 if self.currentData:
1238 currentData = u''.join(self.currentData)
1239 if (currentData.translate(self.STRIP_ASCII_SPACES) == '' and
1242 if '\n' in currentData:
1243 currentData = '\n'
1245 currentData = ' '
1246 self.currentData = []
1249 not self.parseOnlyThese.search(currentData)):
1251 o = containerClass(currentData)
[all …]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp289 CSSPropertySourceData* currentData = nextData; in fixUnparsedProperties() local
292 if (currentData->parsedOk) in fixUnparsedProperties()
294 … if (currentData->range.end > 0 && characters[styleStart + currentData->range.end - 1] == ';') in fixUnparsedProperties()
308 if (currentData->range.end != newPropertyEnd) { in fixUnparsedProperties()
309 currentData->range.end = newPropertyEnd; in fixUnparsedProperties()
310 …unsigned valueStartInStyleSheet = styleStart + currentData->range.start + currentData->name.length… in fixUnparsedProperties()
318currentData->value = String(characters + valueStartInStyleSheet, propertyEndInStyleSheet - valueSt… in fixUnparsedProperties()