HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 701 - 725 of 3111) sorted by null

<<21222324252627282930>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyMetaInfo.java 136 * @param region the region code
146 * @param currency the currency code
209 * @param region the region code
220 * @param currency the currency code
379 * Region code where currency is used.
384 * The three-letter ISO currency code.
386 public final String code; field in class:CurrencyMetaInfo.CurrencyInfo
416 public CurrencyInfo(String region, String code, long from, long to, int priority) {
417 this(region, code, from, to, priority, true);
427 public CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScript.java 80 int[] code = UScript.getCode(testNames[i]); local
82 if(code==null){
84 logln("Error getting script code Got: null" + " Expected: " +expected[i] +" for name "+testNames[i]);
87 // getCode returns null if the code could not be found
90 if((code[0] != expected[i])){
91 logln("Error getting script code Got: " +code[0] + " Expected: " +expected[i] +" for name "+testNames[i]);
101 int[] code = UScript.getCode(esperanto); local
102 if(code != null){
103 if( code[0] != UScript.LATIN)
165 int[] code = UScript.getCode(testNames[i]); local
191 int[] code = UScript.getCode(testLocales[i]); local
255 int[] code = UScript.getCode(testNames[i]); local
361 int code = UScript.INVALID_CODE; local
585 int code; local
    [all...]
  /external/icu/icu4c/source/common/
brkeng.cpp 154 // Note: no way to return error code to caller.
180 UScriptCode code = uscript_getScript(c, &status); local
182 DictionaryMatcher *m = loadDictionaryMatcherFor(code, breakType);
185 switch(code) {
218 UBlockCode block = ublock_getCode(code);
  /external/icu/icu4c/source/i18n/
anytrans.cpp 75 * The code of the current run, valid after next() returns. May
327 * Return the script code for a given name, or -1 if not found.
331 UScriptCode code; local
340 if (!isInvariant || uscript_getCode(buf, &code, 1, &ec) != 1 || U_FAILURE(ec))
342 code = USCRIPT_INVALID_CODE;
344 return code;
375 // Get the script code for the target. If not a script, ignore.
  /external/icu/icu4c/source/test/cintltst/
cucdapi.c 93 /* bogus names should return invalid code */
106 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n",
134 log_err("Japanese locale: code #%d was %d (%s) but expected %d (%s)\n", j,
315 UScriptCode code = USCRIPT_INVALID_CODE; local
320 code = uscript_getScript(codepoints[i],&status);
322 if( code != expected[i] ||
323 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
340 UScriptCode code= USCRIPT_INVALID_CODE; local
342 code = uscript_getScript(0x001D169,&status)
348 UScriptCode code= USCRIPT_INVALID_CODE; local
    [all...]
currtest.c 240 {"XFU", 0}, /* XFU: no numeric code */
241 {"ZZZ", 0}, /* ZZZ: undefined ISO currency code */
242 {"bogus", 0}, /* bogus code */
247 UChar code[8]; // at least one longer than the longest alphaCode local
253 u_charsToUChars(NUMCODE_TESTDATA[i].alphaCode, code, length + 1); // +1 includes the NUL
254 numCode = ucurr_getNumericCode(code);
uregiontest.c 47 const char *code; member in struct:KnownRegion
55 // Code, Num, Parent, Type, Containing Continent
361 for (rd = knownRegions; rd->code != NULL ; rd++ ) {
363 const URegion *r = uregion_getRegionFromCode(rd->code, &status);
368 log_err("ERROR: Numeric code mismatch for region %s. Expected:%d Got:%d\n", uregion_getRegionCode(r), e, n );
376 log_err("ERROR: Creating region %s by its numeric code returned a different region. Got: %s instead.\n",
381 log_data_err("ERROR: Known region %s was not recognized.\n", rd->code);
388 for (rd = knownRegions; rd->code != NULL ; rd++ ) {
390 const URegion *r = uregion_getRegionFromCode(rd->code, &status);
410 log_data_err("ERROR: Known region %s was not recognized.\n", rd->code);
    [all...]
  /external/icu/icu4c/source/test/intltest/
regiontst.cpp 21 const char *code; member in struct:KnownRegion
29 // Code, Num, Parent, Type, Containing Continent
368 const Region *r = Region::getInstance(rd.code,status);
373 errln("Numeric code mismatch for region %s. Expected:%d Got:%d",r->getRegionCode(),e,n);
384 errln("Creating region %s by its numeric code returned a different region. Got: %s instead.",r->getRegionCode(),ncRegion->getRegionCode());
388 dataerrln("Known region %s was not recognized.",rd.code);
405 { "276", "DE", URGN_TERRITORY }, // Numeric code for Germany
406 { "278", "DE", URGN_TERRITORY }, // Numeric code for East Germany (Deprecated)
409 { "SVK", "SK", URGN_TERRITORY } // 3-letter code - Slovakia
457 { 276, "DE", URGN_TERRITORY }, // Numeric code for German
    [all...]
testidn.cpp 148 uint32_t code; local
184 /* get the character code, field 0 */
185 code=(uint32_t)uprv_strtoul(s, &end, 16);
191 compareMapping(code,mapping, length,USPREP_MAP);
211 //fprintf(stdout,"Number of code points that have mappings with length >1 : %i\n",len);
317 test.logln("Number of Unassinged code points : %i \n",unassigned);
318 test.logln("Number of Prohibited code points : %i \n",prohibited);
319 test.logln("Number of Mapped code points : %i \n",mapped);
320 test.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm);
321 test.logln("Number of code points that have no value in Trie: %i \n",noValueInTrie)
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
gensprep.c 281 uint32_t code; local
286 /* get the character code, field 0 */
287 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
307 (long)code, u_errorName(*pErrorCode));
315 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode);
330 /* fprintf(stdout,"Number of code points that have NormalizationCorrections mapping with length >1 : %i\n",len); */
344 uint32_t code; local
379 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode));
390 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode));
399 /* get the character code, field 0 *
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyMetaInfo.java 144 * @param region the region code
155 * @param currency the currency code
224 * @param region the region code
236 * @param currency the currency code
411 * Region code where currency is used.
417 * The three-letter ISO currency code.
420 public final String code; field in class:CurrencyMetaInfo.CurrencyInfo
454 public CurrencyInfo(String region, String code, long from, long to, int priority) {
455 this(region, code, from, to, priority, true);
465 public CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScript.java 76 int[] code = UScript.getCode(testNames[i]); local
78 if(code==null){
80 logln("Error getting script code Got: null" + " Expected: " +expected[i] +" for name "+testNames[i]);
83 // getCode returns null if the code could not be found
86 if((code[0] != expected[i])){
87 logln("Error getting script code Got: " +code[0] + " Expected: " +expected[i] +" for name "+testNames[i]);
97 int[] code = UScript.getCode(esperanto); local
98 if(code != null){
99 if( code[0] != UScript.LATIN)
161 int[] code = UScript.getCode(testNames[i]); local
187 int[] code = UScript.getCode(testLocales[i]); local
251 int[] code = UScript.getCode(testNames[i]); local
357 int code = UScript.INVALID_CODE; local
581 int code; local
    [all...]
  /external/iproute2/include/linux/
filter.h 13 * Current version of the filter code architecture.
20 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
36 #define BPF_RVAL(code) ((code) & 0x18)
40 #define BPF_MISCOP(code) ((code) & 0xf8)
48 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k
    [all...]
  /external/iproute2/ip/
tcp_metrics.c 52 int code; member in struct:__anon12536
502 return tcpm_do_cmd(cmds[i].code, argc-1, argv+1);
  /external/iputils/ninfod/
ninfod_core.c 9 * 1. Redistributions of source code must retain the above copyright
133 uint8_t code; member in struct:subjinfo
141 .code = ICMP6_NI_SUBJ_IPV6,
147 .code = ICMP6_NI_SUBJ_FQDN,
153 .code = ICMP6_NI_SUBJ_IPV4,
165 static __inline__ struct subjinfo *subjinfo_lookup(int code)
167 if (code >= ARRAY_SIZE(subjinfo_table))
169 if (subjinfo_table[code].name == NULL)
171 return &subjinfo_table[code];
571 /* Step 2: Check Subject Code */
    [all...]
  /external/javassist/src/main/javassist/
CtMethod.java 21 * An instance of <code>CtMethod</code> represents a method.
23 * <p>See the super class <code>CtBehavior</code> since
24 * a number of useful methods are in <code>CtBehavior</code>.
25 * A number of useful factory methods are in <code>CtNewMethod</code>.
43 * added to a class with <code>CtClass.addMethod()</code>
285 Bytecode code = CtNewWrappedMethod.makeBody(clazz, local
    [all...]
  /external/kernel-headers/original/uapi/linux/
filter.h 13 * Current version of the filter code architecture.
20 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
36 #define BPF_RVAL(code) ((code) & 0x18)
40 #define BPF_MISCOP(code) ((code) & 0xf8)
48 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k
    [all...]
icmp.h 70 __u8 code; member in struct:icmphdr
if_pppox.h 146 __u8 code; member in struct:pppoe_hdr
igmp.h 32 __u8 code; /* For newer IGMP */ member in struct:igmphdr
64 __u8 code; member in struct:igmpv3_query
v4l2-subdev.h 45 * @format: media bus format (format code and frame size)
71 * @code: format code (MEDIA_BUS_FMT_ definitions)
77 __u32 code; member in struct:v4l2_subdev_mbus_code_enum
86 * @code: format code (MEDIA_BUS_FMT_ definitions)
92 __u32 code; member in struct:v4l2_subdev_frame_size_enum
116 * @code: format code (MEDIA_BUS_FMT_ definitions)
125 __u32 code; member in struct:v4l2_subdev_frame_interval_enum
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_method_invoker_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
268 code(in_code),
278 EXPECT_EQ(code, error->GetCode());
283 std::string code; member in struct:brillo::dbus_utils::AsyncDBusMethodInvokerTest::ErrorCallback
  /external/libbrillo/brillo/http/
http_transport_curl.cc 2 // Use of this source code is governed by a BSD-style license that can be
64 CURLMcode code = curl_interface_->MultiSocketAction( local
66 CHECK_NE(CURLM_CALL_MULTI_PERFORM, code)
69 if (code == CURLM_OK)
133 CURLcode code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_URL, url); local
135 if (code == CURLE_OK) {
136 code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_CAPATH,
139 if (code == CURLE_OK) {
140 code =
143 if (code == CURLE_OK)
235 CURLMcode code = curl_interface_->MultiAddHandle( local
297 CURLMcode code = curl_interface_->MultiSetSocketCallback( local
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/extras/LIRC/
OISLIRCFactoryCreator.cpp 256 std::string code, repeat, button, remote; local
267 stream >> code; //64 bit value, ignorable local
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
bdfdrivr.c 105 FT_ULong code; local
109 code = (FT_ULong)encodings[mid].enc;
111 if ( charcode == code )
119 if ( charcode < code )
145 FT_ULong code; /* same as BDF_encoding_el.enc */ local
149 code = (FT_ULong)encodings[mid].enc;
151 if ( charcode == code )
159 if ( charcode < code )

Completed in 1469 milliseconds

<<21222324252627282930>>