Searched defs:canon (Results 1 - 14 of 14) sorted by relevance

/external/elfutils/0.153/libdwfl/
H A Dfind-debuginfo.c305 char *canon = canonicalize_file_name (file_name); local
306 if (canon != NULL && strcmp (file_name, canon))
307 fd = find_debuginfo_in_path (mod, canon,
310 free (canon);
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duconv.cpp193 be printed, otherwise all converters will be printed. If canon is non
198 UBool canon)
208 if (!canon) {
216 in non-canon mode). But since we do not know at this
232 single converter to print but in canon mode, hence we need to
253 if (canon) {
258 if (canon) {
266 if (canon) {
313 printf("%s%s%s", (canon ? (a == 0? "" : "\t" ) : "") ,
315 (canon
197 printConverters(const char *pname, const char *lookfor, UBool canon) argument
375 printTransliterators(UBool canon) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dtranslit.cpp973 const UnicodeString* canon) {
1032 if (t != NULL && canon != NULL) {
1033 t->setID(*canon);
972 createBasicInstance(const UnicodeString& id, const UnicodeString* canon) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dwrtxml.cpp181 char* canon = NULL; local
196 canon = (char*) uprv_malloc(canonCapacity);
197 canonLen = uloc_canonicalize(localeID, canon, canonCapacity, &status);
203 strnrepchr(canon, canonLen, '_', '-');
204 return canon;
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1457 unibrow::uchar canon[unibrow::Ecma262Canonicalize::kMaxWidth]; local
1458 int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL);
1463 return canon[0];
1499 unibrow::uchar canon[unibrow::CanonicalizationRange::kMaxWidth]; local
1500 int count = unibrow::CanonicalizationRange::Convert(c, '\0', canon, NULL);
1505 return canon[0];
/external/dnsmasq/src/
H A Dcache.c825 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/icu/icu4c/source/extra/uconv/
H A Duconv.cpp193 be printed, otherwise all converters will be printed. If canon is non
198 UBool canon)
208 if (!canon) {
216 in non-canon mode). But since we do not know at this
232 single converter to print but in canon mode, hence we need to
253 if (canon) {
258 if (canon) {
266 if (canon) {
313 printf("%s%s%s", (canon ? (a == 0? "" : "\t" ) : "") ,
315 (canon
197 printConverters(const char *pname, const char *lookfor, UBool canon) argument
375 printTransliterators(UBool canon) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dtranslit.cpp973 const UnicodeString* canon) {
1032 if (t != NULL && canon != NULL) {
1033 t->setID(*canon);
972 createBasicInstance(const UnicodeString& id, const UnicodeString* canon) argument
/external/icu/icu4c/source/tools/genrb/
H A Dwrtxml.cpp191 char* canon = NULL; local
206 canon = (char*) uprv_malloc(canonCapacity);
207 canonLen = uloc_canonicalize(localeID, canon, canonCapacity, &status);
213 strnrepchr(canon, canonLen, '_', '-');
214 return canon;
/external/chromium_org/third_party/libxml/src/
H A Dencoding.c1746 const char* canon; local
1747 canon = xmlGetCharEncodingName(alias);
1748 if ((canon != NULL) && (strcmp(name, canon))) {
1749 return(xmlFindCharEncodingHandler(canon));
/external/clang/lib/AST/
H A DType.cpp2367 const Type *canon = getCanonicalTypeInternal().getTypePtr(); local
2370 while (const ArrayType *array = dyn_cast<ArrayType>(canon))
2371 canon = array->getElementType().getTypePtr();
2374 = dyn_cast<ObjCObjectPointerType>(canon)) {
H A DASTContext.cpp2016 QualType canon; local
2020 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
2026 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
2625 QualType canon = getQualifiedType(QualType(canonTy,0), local
2631 return canon;
2637 DependentSizedArrayType(*this, elementType, canon, numElements,
2657 QualType canon;
2661 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
2663 canon = getQualifiedType(canon, canonSpli
[all...]
/external/libxml2/
H A Dencoding.c1755 const char* canon; local
1756 canon = xmlGetCharEncodingName(alias);
1757 if ((canon != NULL) && (strcmp(name, canon))) {
1758 return(xmlFindCharEncodingHandler(canon));
/external/clang/include/clang/AST/
H A DType.h1030 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) argument
1031 : BaseType(baseType), CanonicalType(canon) {}
1079 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) argument
1081 canon.isNull() ? QualType(this_(), 0) : canon),
1363 Type(TypeClass tc, QualType canon, bool Dependent, argument
1367 canon.isNull() ? QualType(this_(), 0) : canon) {
3435 AttributedType(QualType canon, Kind attrKind, argument
3437 : Type(Attributed, canon, cano
4700 QualType canon = getCommonPtr()->CanonicalType; local
[all...]

Completed in 6596 milliseconds