Home
last modified time | relevance | path

Searched refs:specials (Results 1 – 25 of 121) sorted by relevance

12345

/external/arm-optimized-routines/test/rtest/
Dmain.c102 } specials[] = { in get_operand() local
115 for (i = 0; i < (int)(sizeof(specials)/sizeof(*specials)); i++) { in get_operand()
116 if (!strcmp(str, specials[i].name) || in get_operand()
118 !strcmp(str+1, specials[i].name))) { in get_operand()
121 *word0 = specials[i].dblword0; in get_operand()
122 *word1 = specials[i].dblword1; in get_operand()
124 *word0 = specials[i].sglword; in get_operand()
/external/cldr/tools/java/org/unicode/cldr/util/
DSpecialLocales.java92 private Map<CLDRLocale, Type> specials = new HashMap<CLDRLocale, Type>(); field in SpecialLocales
103 return specials.get(l); in getTypeInternal()
112 if (origLocale == fromLocale && specials.containsKey(origLocale)) { in findLocale()
177 specials.put(l, t); in SpecialLocales()
192 specials = Collections.unmodifiableMap(specials); in SpecialLocales()
/external/python/cpython2/Tools/unicode/
Dmkstringprep.py215 specials = {} variable
218 specials[k] = v
221 assert specials == {}
288 specials = list(table_c22 - Cc_nonascii) variable
289 specials.sort()
291 print """c22_specials = """ + compact_set(specials) + """
/external/python/cpython3/Tools/unicode/
Dmkstringprep.py221 specials = {} variable
224 specials[k] = v
227 assert specials == {}
294 specials = list(table_c22 - Cc_nonascii) variable
295 specials.sort()
297 print("""c22_specials = """ + compact_set(specials) + """
/external/ImageMagick/PerlMagick/demo/
DMakefile9 perl compose-specials.pl
17 compose-specials.jpg single-pixels.gif pixel-fx.gif
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DCodePointTrieTest.java233 SpecialValues specials = getSpecialValues(checkRanges); in testTrieGetters() local
236 for(i=specials.i; i<checkRanges.length; ++i) { in testTrieGetters()
286 if(value!=specials.errorValue || value2!=specials.errorValue) { in testTrieGetters()
302 SpecialValues specials=getSpecialValues(checkRanges); in testBuilderGetters() local
305 for(i=specials.i; i<checkRanges.length; ++i) { in testBuilderGetters()
327 if(value!=specials.errorValue || value2!=specials.errorValue) { in testBuilderGetters()
576 SpecialValues specials = getSpecialValues(checkRanges); in makeTrieWithRanges() local
577 mutableTrie = new MutableCodePointTrie(specials.initialValue, specials.errorValue); in makeTrieWithRanges()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCodePointTrieTest.java230 SpecialValues specials = getSpecialValues(checkRanges); in testTrieGetters() local
233 for(i=specials.i; i<checkRanges.length; ++i) { in testTrieGetters()
283 if(value!=specials.errorValue || value2!=specials.errorValue) { in testTrieGetters()
299 SpecialValues specials=getSpecialValues(checkRanges); in testBuilderGetters() local
302 for(i=specials.i; i<checkRanges.length; ++i) { in testBuilderGetters()
324 if(value!=specials.errorValue || value2!=specials.errorValue) { in testBuilderGetters()
573 SpecialValues specials = getSpecialValues(checkRanges); in makeTrieWithRanges() local
574 mutableTrie = new MutableCodePointTrie(specials.initialValue, specials.errorValue); in makeTrieWithRanges()
/external/python/cpython3/Tools/scripts/
Dnm2def.py85 def filter_Python(symbols,specials=SPECIALS): argument
90 elif name not in specials:
/external/python/cpython2/Tools/scripts/
Dnm2def.py85 def filter_Python(symbols,specials=SPECIALS): argument
90 elif name not in specials:
/external/icu/icu4c/source/i18n/
Dcollationdata.cpp250 uint32_t specials = 0; in makeReorderRanges() local
254 specials |= (uint32_t)1 << reorderCode; in makeReorderRanges()
261 if(index != 0 && (specials & ((uint32_t)1 << i)) == 0) { in makeReorderRanges()
269 if(specials == 0 && reorder[0] == USCRIPT_LATIN && !latinMustMove) { in makeReorderRanges()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationData.java335 int specials = 0; in makeReorderRanges() local
339 specials |= 1 << reorderCode; in makeReorderRanges()
346 if(index != 0 && (specials & (1 << i)) == 0) { in makeReorderRanges()
354 if(specials == 0 && reorder[0] == UScript.LATIN && !latinMustMove) { in makeReorderRanges()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationData.java333 int specials = 0; in makeReorderRanges() local
337 specials |= 1 << reorderCode; in makeReorderRanges()
344 if(index != 0 && (specials & (1 << i)) == 0) { in makeReorderRanges()
352 if(specials == 0 && reorder[0] == UScript.LATIN && !latinMustMove) { in makeReorderRanges()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBcp47Numbers.java24 static UnicodeMap<String> specials = new UnicodeMap<String>() field in TestBcp47Numbers
39 String special = specials.get(cp); in TestScripts()
DTestComparisonBuilder.java90 Set<String> specials = new HashSet<String>(Arrays.asList(new String[] { in TestDtdElements() local
103 children.removeAll(specials); in TestDtdElements()
119 children.removeAll(specials); in TestDtdElements()
/external/cldr/tools/java/org/unicode/cldr/draft/
DMisc.java181 …Map<String, Row.R2<Integer, Integer>> specials = Builder.with(new TreeMap<String, Row.R2<Integer, … in showDateSamples() local
207 … final String formattedEnglish = getFormatted(specials, sample, dp, english, englishGenerator); in showDateSamples()
208 … final String formattedOther = getFormatted(specials, sample, dp, otherLocale, otherGenerator); in showDateSamples()
213 …private static String getFormatted(Map<String, Row.R2<Integer, Integer>> specials, Date sample, St… in getFormatted() argument
216 Row.R2<Integer, Integer> special = specials.get(dp); in getFormatted()
/external/icu/icu4c/source/data/region/
Droot.txt4 * ICU <specials> source: <path>/common/main/root.xml
/external/icu/icu4c/source/data/lang/
Droot.txt4 * ICU <specials> source: <path>/common/main/root.xml
/external/python/cpython2/Lib/email/
D_parseaddr.py188 self.specials = '()<>@,:;.\"[]'
193 self.atomends = self.specials + self.LWS + self.CR
276 elif self.field[self.pos] in self.specials:
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_qpu.c271 static const uint32_t specials[] = { in qpu_num_sf_accesses() local
293 for (int j = 0; j < ARRAY_SIZE(specials); j++) { in qpu_num_sf_accesses()
294 if (waddr_add == specials[j]) in qpu_num_sf_accesses()
296 if (waddr_mul == specials[j]) in qpu_num_sf_accesses()
/external/python/cpython3/Lib/email/
D_parseaddr.py219 self.specials = '()<>@,:;.\"[]'
224 self.atomends = self.specials + self.LWS + self.CR
311 elif self.field[self.pos] in self.specials:
/external/icu/icu4c/source/data/rbnf/
Dnn.txt4 * ICU <specials> source: <path>/xml/rbnf/nn.xml
Dcy.txt4 * ICU <specials> source: <path>/xml/rbnf/cy.xml
/external/icu/icu4c/source/data/zone/
Droot.txt4 * ICU <specials> source: <path>/common/main/root.xml
/external/icu/icu4c/source/data/curr/
Droot.txt4 * ICU <specials> source: <path>/common/main/root.xml
/external/python/cpython2/Lib/
Drfc822.py519 self.specials = '()<>@,:;.\"[]'
523 self.atomends = self.specials + self.LWS + self.CR
602 elif self.field[self.pos] in self.specials:

12345