HomeSort by relevance Sort by last modified time
    Searched refs:decomposition (Results 1 - 19 of 19) sorted by null

  /external/icu/icu4c/source/common/unicode/
normalizer2.h 254 * Gets the decomposition mapping of c.
258 * if c does not have a decomposition mapping in this instance's data.
261 * @param decomposition String object which will be set to c's
262 * decomposition mapping, if there is one.
263 * @return TRUE if c has a decomposition, otherwise FALSE
267 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
270 * Gets the raw decomposition mapping of c.
273 * raw decomposition mapping as specified in UnicodeData.txt or
288 * @param decomposition String object which will be set to c's
289 * raw decomposition mapping, if there is one
    [all...]
unorm2.h 44 * Decomposition followed by composition.
63 * If a string is in this form, then further decomposition <i>without reordering</i>
333 * Gets the decomposition mapping of c.
337 * if c does not have a decomposition mapping in this instance's data.
341 * @param decomposition String buffer which will be set to c's
342 * decomposition mapping, if there is one.
343 * @param capacity number of UChars that can be written to decomposition
348 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
353 UChar32 c, UChar *decomposition, int32_t capacity,
357 * Gets the raw decomposition mapping of c
    [all...]
  /external/chromium_org/v8/src/
hydrogen-bch.cc 300 InductionVariableData::BitwiseDecompositionResult decomposition; local
301 InductionVariableData::DecomposeBitwise(check->index(), &decomposition);
302 if (!decomposition.base->IsPhi()) continue;
303 HPhi* phi = HPhi::cast(decomposition.base);
322 int32_t limit = data->ComputeUpperLimit(decomposition.and_mask,
323 decomposition.or_mask);
hydrogen-instructions.cc 980 DecompositionResult decomposition;
981 bool index_is_decomposable = index()->TryDecompose(&decomposition);
983 ASSERT(decomposition.base() == base());
984 if (decomposition.offset() == offset() &&
985 decomposition.scale() == scale()) return;
992 HValue* current_index = decomposition.base();
993 int actual_offset = decomposition.offset() + offset();
994 int actual_scale = decomposition.scale() + scale();
2160 BitwiseDecompositionResult decomposition; local
    [all...]
hydrogen-instructions.h 805 virtual bool TryDecompose(DecompositionResult* decomposition) {
807 return RedefinedOperand()->TryDecompose(decomposition);
4004 DecompositionResult decomposition; local
4075 DecompositionResult decomposition; local
5140 left()->TryDecompose(decomposition); variable
5179 left()->TryDecompose(decomposition); variable
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
normalizer2.h 178 * Gets the decomposition mapping of c. Equivalent to normalize(UnicodeString(c))
182 * @param decomposition String object which will be set to c's
183 * decomposition mapping, if there is one.
184 * @return TRUE if c has a decomposition, otherwise FALSE
188 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
382 * Gets the decomposition mapping of c. Equivalent to normalize(UnicodeString(c))
386 * @param decomposition String object which will be set to c's
387 * decomposition mapping, if there is one.
388 * @return TRUE if c has a decomposition, otherwise FALSE
392 getDecomposition(UChar32 c, UnicodeString &decomposition) const
    [all...]
unorm2.h 44 * Decomposition followed by composition.
63 * If a string is in this form, then further decomposition <i>without reordering</i>
263 * Gets the decomposition mapping of c. Equivalent to unorm2_normalize(string(c))
268 * @param decomposition String buffer which will be set to c's
269 * decomposition mapping, if there is one.
270 * @param capacity number of UChars that can be written to decomposition
275 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
280 UChar32 c, UChar *decomposition, int32_t capacity,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 275 AffineTransform::DecomposedType decomposition; local
276 transform.decompose(decomposition);
277 decomposition.angle = 0;
278 transform.recompose(decomposition);
  /external/icu/icu4c/source/common/
filterednormalizer2.cpp 154 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
155 return set.contains(c) && norm2.getDecomposition(c, decomposition);
159 FilteredNormalizer2::getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
160 return set.contains(c) && norm2.getRawDecomposition(c, decomposition);
normalizer2.cpp 201 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
209 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
211 decomposition.setTo(FALSE, d, length); // read-only alias
216 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
224 decomposition.setTo(buffer, length); // copy the string (algorithmic decomposition)
226 decomposition.setTo(FALSE, d, length); // read-only alias
854 UChar32 c, UChar *decomposition, int32_t capacity,
859 if(decomposition==NULL ? capacity!=0 : capacity<0) {
863 UnicodeString destString(decomposition, 0, capacity)
    [all...]
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 846 (name, decomposition, combiningclass) = unicodedatabase[codepoint]
847 if decomposition[0] == '' or decomposition[0] == '0':
849 if match('<\w+>', decomposition[0]):
850 numdecomposition = map(stringtohex, decomposition[1:])
852 numdecomposition = map(stringtohex, decomposition)
878 decomposition = uniproperties[5]
879 unicodedatabase[codepoint] = [name, split('\s+', decomposition), combiningclass]
887 (name, decomposition, combiningclass) = unicodedatabase[item]
888 if decomposition[0] == ''
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 97 self.db.decomposition(char),
158 self.assertEqual(self.db.decomposition(u'\uFFFE'),'')
159 self.assertEqual(self.db.decomposition(u'\u00bc'), '<fraction> 0031 2044 0034')
161 self.assertRaises(TypeError, self.db.decomposition)
162 self.assertRaises(TypeError, self.db.decomposition, u'xx')
  /external/chromium_org/third_party/icu/source/common/
filterednormalizer2.cpp 152 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
153 return set.contains(c) && norm2.getDecomposition(c, decomposition);
normalizer2.cpp 168 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
176 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
178 decomposition.setTo(FALSE, d, length); // read-only alias
743 UChar32 c, UChar *decomposition, int32_t capacity,
748 if(decomposition==NULL ? capacity!=0 : capacity<0) {
752 UnicodeString destString(decomposition, 0, capacity);
754 return destString.extract(decomposition, capacity, *pErrorCode);
  /external/chromium_org/v8/test/mjsunit/
array-bounds-check-removal.js 203 // A test for recursive decomposition
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 569 milliseconds