/external/icu4c/common/ |
H A D | locutil.cpp | 106 char* canon = (buf == 0) ? 0 : (char*) uprv_malloc(buflen); 107 if (buf != 0 && canon != 0) { 110 uloc_canonicalize(buf, canon, buflen, &ec); 112 result = UnicodeString(canon); 116 uprv_free(canon);
|
/external/icu4c/extra/uconv/ |
H A D | uconv.cpp | 192 be printed, otherwise all converters will be printed. If canon is non 197 UBool canon) 207 if (!canon) { 215 in non-canon mode). But since we do not know at this 231 single converter to print but in canon mode, hence we need to 252 if (canon) { 257 if (canon) { 265 if (canon) { 312 printf("%s%s%s", (canon ? (a == 0? "" : "\t" ) : "") , 314 (canon 196 printConverters(const char *pname, const char *lookfor, UBool canon) argument 374 printTransliterators(UBool canon) argument [all...] |
/external/dnsmasq/src/ |
H A D | cache.c | 825 char *canon; local 832 if ((canon = canonicalise(token, &nomem))) 837 strlen(canon)+2+strlen(domain_suffix)-SMALLDNAME))) 839 strcpy(cache->name.sname, canon); 846 if ((cache = whine_malloc(sizeof(struct crec) + strlen(canon)+1-SMALLDNAME))) 848 strcpy(cache->name.sname, canon); 852 free(canon);
|
/external/icu4c/tools/genrb/ |
H A D | wrtxml.cpp | 179 char* canon = NULL; local 194 canon = (char*) uprv_malloc(canonCapacity); 195 canonLen = uloc_canonicalize(localeID, canon, canonCapacity, &status); 201 strnrepchr(canon, canonLen, '_', '-'); 202 return canon;
|
/external/clang/include/clang/AST/ |
H A D | Type.h | 923 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) argument 924 : BaseType(baseType), CanonicalType(canon) {} 972 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) argument 974 canon.isNull() ? QualType(this_(), 0) : canon), 1259 Type(TypeClass tc, QualType canon, bool Dependent, argument 1263 canon.isNull() ? QualType(this_(), 0) : canon) { 3161 AttributedType(QualType canon, Kind attrKind, argument 3163 : Type(Attributed, canon, cano 4392 QualType canon = getCommonPtr()->CanonicalType; local [all...] |
/external/icu4c/i18n/unicode/ |
H A D | translit.h | 341 * @param canon canonical ID to assign to the object, or 348 const UnicodeString* canon);
|
/external/bluetooth/glib/gio/ |
H A D | glocalfile.c | 232 char *canon, *start, *p, *q; local 239 canon = g_build_filename (cwd, filename, NULL); 243 canon = g_strdup (filename); 245 start = (char *)g_path_skip_root (canon); 252 g_free (canon); 263 (p >= canon) && 320 return canon;
|
/external/icu4c/i18n/ |
H A D | translit.cpp | 976 const UnicodeString* canon) { 1035 if (t != NULL && canon != NULL) { 1036 t->setID(*canon); 975 createBasicInstance(const UnicodeString& id, const UnicodeString* canon) argument
|
/external/v8/test/cctest/ |
H A D | test-regexp.cc | 1415 unibrow::uchar canon[unibrow::Ecma262Canonicalize::kMaxWidth]; local 1416 int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL); 1421 return canon[0]; 1457 unibrow::uchar canon[unibrow::CanonicalizationRange::kMaxWidth]; local 1458 int count = unibrow::CanonicalizationRange::Convert(c, '\0', canon, NULL); 1463 return canon[0];
|
/external/clang/lib/AST/ |
H A D | Type.cpp | 2174 const Type *canon = getCanonicalTypeInternal().getTypePtr(); local 2177 while (const ArrayType *array = dyn_cast<ArrayType>(canon)) 2178 canon = array->getElementType().getTypePtr(); 2181 = dyn_cast<ObjCObjectPointerType>(canon)) {
|
H A D | ASTContext.cpp | 1339 QualType canon; local 1343 canon = getExtQualType(canonSplit.first, canonSplit.second); 1349 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); 1873 QualType canon = getQualifiedType(QualType(canonTy,0), local 1879 return canon; 1885 DependentSizedArrayType(*this, elementType, canon, numElements, 1905 QualType canon; 1909 canon = getIncompleteArrayType(QualType(canonSplit.first, 0), 1911 canon = getQualifiedType(canon, canonSpli [all...] |
/external/libxml2/ |
H A D | encoding.c | 1741 const char* canon; local 1742 canon = xmlGetCharEncodingName(alias); 1743 if ((canon != NULL) && (strcmp(name, canon))) { 1744 return(xmlFindCharEncodingHandler(canon));
|