/external/elfutils/libdwfl/ |
D | find-debuginfo.c | 286 char *canon = canonicalize_file_name (file_name); in dwfl_standard_find_debuginfo() local 287 if (canon != NULL && strcmp (file_name, canon)) in dwfl_standard_find_debuginfo() 288 fd = find_debuginfo_in_path (mod, canon, in dwfl_standard_find_debuginfo() 291 free (canon); in dwfl_standard_find_debuginfo()
|
/external/icu4c/common/ |
D | locutil.cpp | 106 char* canon = (buf == 0) ? 0 : (char*) uprv_malloc(buflen); in canonicalLocaleString() 107 if (buf != 0 && canon != 0) { in canonicalLocaleString() 110 uloc_canonicalize(buf, canon, buflen, &ec); in canonicalLocaleString() 112 result = UnicodeString(canon); in canonicalLocaleString() 116 uprv_free(canon); in canonicalLocaleString()
|
/external/icu4c/extra/uconv/ |
D | uconv.cpp | 197 UBool canon) in printConverters() argument 207 if (!canon) { in printConverters() 252 if (canon) { in printConverters() 257 if (canon) { in printConverters() 265 if (canon) { in printConverters() 312 printf("%s%s%s", (canon ? (a == 0? "" : "\t" ) : "") , in printConverters() 314 (canon ? "" : " ")); in printConverters() 318 if (canon) { in printConverters() 346 if (canon) { in printConverters() 353 if (!canon) { in printConverters() [all …]
|
/external/dnsmasq/src/ |
D | cache.c | 825 char *canon; in read_hostsfile() local 832 if ((canon = canonicalise(token, &nomem))) in read_hostsfile() 837 strlen(canon)+2+strlen(domain_suffix)-SMALLDNAME))) in read_hostsfile() 839 strcpy(cache->name.sname, canon); in read_hostsfile() 846 if ((cache = whine_malloc(sizeof(struct crec) + strlen(canon)+1-SMALLDNAME))) in read_hostsfile() 848 strcpy(cache->name.sname, canon); in read_hostsfile() 852 free(canon); in read_hostsfile()
|
/external/clang/include/clang/AST/ |
D | Type.h | 993 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) 994 : BaseType(baseType), CanonicalType(canon) {} 1042 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) 1044 canon.isNull() ? QualType(this_(), 0) : canon), 1331 Type(TypeClass tc, QualType canon, bool Dependent, 1335 canon.isNull() ? QualType(this_(), 0) : canon) { 3310 AttributedType(QualType canon, Kind attrKind, 3312 : Type(Attributed, canon, canon->isDependentType(), 3313 canon->isInstantiationDependentType(), 3314 canon->isVariablyModifiedType(), [all …]
|
/external/icu4c/tools/genrb/ |
D | wrtxml.cpp | 179 char* canon = NULL; in parseFilename() local 194 canon = (char*) uprv_malloc(canonCapacity); in parseFilename() 195 canonLen = uloc_canonicalize(localeID, canon, canonCapacity, &status); in parseFilename() 201 strnrepchr(canon, canonLen, '_', '-'); in parseFilename() 202 return canon; in parseFilename()
|
/external/icu4c/extra/uconv/resources/ |
D | fr.txt | 34 "[ --canon ] [ -x translitération ] " 53 " --canon affiche la liste dans le format de cnvrtrs.txt(5)\n"
|
D | root.txt | 34 "[ --canon ] [ -x transliteration ] " 51 " --canon print list in cnvrtrs.txt(5) format\n"
|
/external/v8/test/cctest/ |
D | test-regexp.cc | 1424 unibrow::uchar canon[unibrow::Ecma262Canonicalize::kMaxWidth]; in canonicalize() local 1425 int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL); in canonicalize() 1430 return canon[0]; in canonicalize() 1466 unibrow::uchar canon[unibrow::CanonicalizationRange::kMaxWidth]; in CanonRangeEnd() local 1467 int count = unibrow::CanonicalizationRange::Convert(c, '\0', canon, NULL); in CanonRangeEnd() 1472 return canon[0]; in CanonRangeEnd()
|
/external/icu4c/i18n/unicode/ |
D | translit.h | 348 const UnicodeString* canon);
|
/external/icu4c/i18n/ |
D | translit.cpp | 976 const UnicodeString* canon) { in createBasicInstance() argument 1035 if (t != NULL && canon != NULL) { in createBasicInstance() 1036 t->setID(*canon); in createBasicInstance()
|
/external/libxml2/ |
D | encoding.c | 1749 const char* canon; in xmlFindCharEncodingHandler() local 1750 canon = xmlGetCharEncodingName(alias); in xmlFindCharEncodingHandler() 1751 if ((canon != NULL) && (strcmp(name, canon))) { in xmlFindCharEncodingHandler() 1752 return(xmlFindCharEncodingHandler(canon)); in xmlFindCharEncodingHandler()
|
/external/clang/lib/AST/ |
D | Type.cpp | 2180 const Type *canon = getCanonicalTypeInternal().getTypePtr(); in isObjCARCImplicitlyUnretainedType() local 2183 while (const ArrayType *array = dyn_cast<ArrayType>(canon)) in isObjCARCImplicitlyUnretainedType() 2184 canon = array->getElementType().getTypePtr(); in isObjCARCImplicitlyUnretainedType() 2187 = dyn_cast<ObjCObjectPointerType>(canon)) { in isObjCARCImplicitlyUnretainedType()
|
D | ASTContext.cpp | 1756 QualType canon; in getExtQualType() local 1760 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals); in getExtQualType() 1766 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); in getExtQualType() 2290 QualType canon = getQualifiedType(QualType(canonTy,0), in getDependentSizedArrayType() local 2296 return canon; in getDependentSizedArrayType() 2302 DependentSizedArrayType(*this, elementType, canon, numElements, in getDependentSizedArrayType() 2322 QualType canon; in getIncompleteArrayType() local 2326 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0), in getIncompleteArrayType() 2328 canon = getQualifiedType(canon, canonSplit.Quals); in getIncompleteArrayType() 2337 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals); in getIncompleteArrayType() [all …]
|
/external/webkit/LayoutTests/http/conf/ |
D | mime.types | 113 application/vnd.canon-cpdl 114 application/vnd.canon-lips
|
/external/chromium/net/base/ |
D | ssl_false_start_blacklist.txt | 2352 mp01.canon.jp
|
/external/libmtp/ |
D | ChangeLog | 140 PTPOBJECT_CANONFLAGS_LOADED (special canon flags)
|
/external/srec/config/en.us/dictionary/ |
D | large.ok | 4391 canon kan@n 4392 canon kan~
|
/external/webkit/PerformanceTests/Parser/resources/ |
D | final-url-en | 20279 http://www.accesstoinsight.org/canon/sutta/majjhima/mn054.html 29896 http://www.cambodianbuddhist.org/english/website/canon/sutta/anguttara/an08-039.html 30142 http://www.canon-europe.com/For_Work/Products/index.asp 30143 http://www.canon.com.au/supplies/products/supplies/story_881.html 30144 http://www.canon.com/environment/eco2004e/p09.html
|