Home
last modified time | relevance | path

Searched refs:tempLength (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatPoint3D.cpp32 float tempLength = length(); in normalize() local
34 if (tempLength) { in normalize()
35 m_x /= tempLength; in normalize()
36 m_y /= tempLength; in normalize()
37 m_z /= tempLength; in normalize()
DFloatPoint.cpp57 float tempLength = length(); in normalize() local
59 if (tempLength) { in normalize()
60 m_x /= tempLength; in normalize()
61 m_y /= tempLength; in normalize()
/external/chromium_org/third_party/icu/source/test/cintltst/
Dcapitst.c285 int32_t tempLength; in TestProperty() local
392 ucol_getRules(ruled, &tempLength); in TestProperty()
393 doAssert( tempLength != 0, "getRules() result incorrect" ); in TestProperty()
400 tempLength = ucol_getRulesEx(col,UCOL_TAILORING_ONLY,buffer,bufLen ); in TestProperty()
401 doAssert( tempLength == 0x00, "getRulesEx() result incorrect" ); in TestProperty()
405 tempLength=ucol_getRulesEx(col,UCOL_FULL_RULES,buffer,bufLen ); in TestProperty()
406 doAssert( tempLength != 0, "getRulesEx() result incorrect" ); in TestProperty()
458 int32_t tempLength; in TestRuleBasedColl() local
491 rule1 = ucol_getRules(col1, &tempLength); in TestRuleBasedColl()
492 rule2 = ucol_getRules(col2, &tempLength); in TestRuleBasedColl()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcapitst.c276 int32_t tempLength; in TestProperty() local
377 ucol_getRules(ruled, &tempLength); in TestProperty()
385 tempLength = ucol_getRulesEx(col,UCOL_TAILORING_ONLY,buffer,bufLen ); in TestProperty()
390 tempLength=ucol_getRulesEx(col,UCOL_FULL_RULES,buffer,bufLen ); in TestProperty()
442 int32_t tempLength; in TestRuleBasedColl() local
475 rule1 = ucol_getRules(col1, &tempLength); in TestRuleBasedColl()
476 rule2 = ucol_getRules(col2, &tempLength); in TestRuleBasedColl()
477 rule3 = ucol_getRules(col3, &tempLength); in TestRuleBasedColl()
488 rule4= ucol_getRules(col4, &tempLength); in TestRuleBasedColl()
/external/chromium_org/third_party/icu/source/i18n/
Dmsgfmt.cpp1343 int32_t tempLength = (i+1<subformatCount) ? in parse() local
1347 if (patternOffset >= tempLength) { in parse()
1352 fPattern.extract(patternOffset,tempLength - patternOffset, buffer); in parse()