/external/icu/icu4c/source/common/ |
D | locid.cpp | 244 if (baseName != fullName) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 249 if (fullName != fullNameBuffer) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 251 uprv_free(fullName); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 252 fullName = NULL; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 257 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 268 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 278 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 413 : UObject(other), fullName(fullNameBuffer), baseName(NULL) in Locale() 425 if (baseName != fullName) { in operator =() 429 if(fullName != fullNameBuffer) { in operator =() [all …]
|
D | locdispnames.cpp | 63 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 75 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 103 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 115 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 143 length=uloc_getDisplayCountry(fullName, displayLocale.fullName, in getDisplayCountry() 155 length=uloc_getDisplayCountry(fullName, displayLocale.fullName, in getDisplayCountry() 183 length=uloc_getDisplayVariant(fullName, displayLocale.fullName, in getDisplayVariant() 195 length=uloc_getDisplayVariant(fullName, displayLocale.fullName, in getDisplayVariant() 223 length=uloc_getDisplayName(fullName, displayLocale.fullName, in getDisplayName() 235 length=uloc_getDisplayName(fullName, displayLocale.fullName, in getDisplayName()
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncSystemProperty.java | 59 String fullName = m_arg0.execute(xctxt).str(); in execute() local 60 int indexOfNSSep = fullName.indexOf(':'); in execute() 73 ? fullName.substring(0, indexOfNSSep) : ""; in execute() 78 ? fullName : fullName.substring(indexOfNSSep + 1); in execute() 88 new Object[]{ fullName }); //"XSL Property not supported: "+fullName); in execute() 97 …fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName); in execute() 109 …new Object[]{ fullName }); //"SecurityException when trying to access XSL system property: "+full… in execute() 119 …new Object[]{ fullName }); //"SecurityException when trying to access XSL system property: "+full… in execute() 132 result = System.getProperty(fullName); in execute() 137 …new Object[]{ fullName }); //"SecurityException when trying to access XSL system property: "+full… in execute() [all …]
|
D | FuncExtFunctionAvailable.java | 55 String fullName = m_arg0.execute(xctxt).str(); in execute() local 56 int indexOfNSSep = fullName.indexOf(':'); in execute() 62 methName = fullName; in execute() 66 prefix = fullName.substring(0, indexOfNSSep); in execute() 70 methName = fullName.substring(indexOfNSSep + 1); in execute()
|
D | FuncExtElementAvailable.java | 54 String fullName = m_arg0.execute(xctxt).str(); in execute() local 55 int indexOfNSSep = fullName.indexOf(':'); in execute() 61 methName = fullName; in execute() 65 prefix = fullName.substring(0, indexOfNSSep); in execute() 69 methName= fullName.substring(indexOfNSSep + 1); in execute()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | Descriptors.java | 580 public String getFullName() { return fullName; } in getFullName() 642 file.pool.findSymbol(fullName + '.' + name); in findFieldByName() 667 file.pool.findSymbol(fullName + '.' + name); in findNestedTypeByName() 682 file.pool.findSymbol(fullName + '.' + name); in findEnumTypeByName() 692 private final String fullName; field in Descriptors.Descriptor 714 this.fullName = fullname; in Descriptor() 734 fullName = computeFullName(file, parent, proto.getName()); in Descriptor() 845 public String getFullName() { return fullName; } in getFullName() 1007 private final String fullName; field in Descriptors.FieldDescriptor 1094 fullName = computeFullName(file, parent, proto.getName()); in FieldDescriptor() [all …]
|
D | ExtensionRegistry.java | 139 public ExtensionInfo findExtensionByName(final String fullName) { in findExtensionByName() argument 140 return findImmutableExtensionByName(fullName); in findExtensionByName() 151 public ExtensionInfo findImmutableExtensionByName(final String fullName) { in findImmutableExtensionByName() argument 152 return immutableExtensionsByName.get(fullName); in findImmutableExtensionByName() 163 public ExtensionInfo findMutableExtensionByName(final String fullName) { in findMutableExtensionByName() argument 164 return mutableExtensionsByName.get(fullName); in findMutableExtensionByName() 208 public Set<ExtensionInfo> getAllMutableExtensionsByExtendedType(final String fullName) { in getAllMutableExtensionsByExtendedType() argument 211 if (pair.descriptor.getFullName().equals(fullName)) { in getAllMutableExtensionsByExtendedType() 226 public Set<ExtensionInfo> getAllImmutableExtensionsByExtendedType(final String fullName) { in getAllImmutableExtensionsByExtendedType() argument 229 if (pair.descriptor.getFullName().equals(fullName)) { in getAllImmutableExtensionsByExtendedType()
|
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
D | socket_pool_wrapper.js | 22 this.fullName = socketPool.name; 23 if (this.fullName != socketPool.type) 24 this.fullName += ' (' + socketPool.type + ')'; 26 this.fullName = parent.fullName + '->' + this.fullName; 93 tablePrinter.addCell(socketPools[i].fullName); 126 tablePrinter.setTitle(this.fullName);
|
/external/doclava/src/com/google/doclava/ |
D | TypeInfo.java | 153 mFullName = other.fullName(); in TypeInfo() 180 public String fullName() { in fullName() method in TypeInfo 184 return fullName(new HashSet<String>()); in fullName() 193 result += arg.fullName(typeVars); in typeArgumentsName() 203 public String fullName(HashSet<String> typeVars) { in fullName() method in TypeInfo 225 String fullName = null; in fullNameNoDimensionNoBounds() local 232 fullName = mQualifiedTypeName; in fullNameNoDimensionNoBounds() 234 fullName += typeArgumentsName(mTypeArguments, typeVars); in fullNameNoDimensionNoBounds() 236 return fullName; in fullNameNoDimensionNoBounds() 240 String fullName = null; in fullNameNoDimension() local [all …]
|
D | Stubs.java | 128 "Parameter of unavailable type " + t.fullName() + " in " + cl.qualifiedName() in writeStubsAndApi() 133 "Parameter uses type parameter of unavailable type " + t.fullName() + " in " in writeStubsAndApi() 159 "Reference to unavailable annotation class " + t.fullName()); in writeStubsAndApi() 381 "Parameter of hidden type " + tInfoType.fullName() + " in " in cantStripThis() 531 String leafName = cl.asTypeInfo().fullName(classDeclTypeVars); in writeClass() 545 stream.println(" extends " + base.fullName(classDeclTypeVars)); in writeClass() 564 stream.print(comma + iface.fullName(classDeclTypeVars)); in writeClass() 720 stream.print(method.returnType().fullName(method.typeVariables()) + " "); in writeMethod() 777 stream.print(field.type().fullName()); in writeField() 950 stream.print(ann.returnType().fullName()); in writeAnnotationElement() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
D | FetchBaseTask.java | 82 String fullName=entry.substring(entry.lastIndexOf("/")+1,entry.length()); in getScript() local 83 if (fullName.endsWith(".jar")) in getScript() 86 return fetchDirectoryTarget(type, id, fullName, cvsinfo); in getScript() 123 private String fetchDirectoryTarget(String type, String id, String fullName,String[] cvsinfo){ in fetchDirectoryTarget() argument 127 "\t\t<cvs command=\"export -d "+fullName+"\"\n" + in fetchDirectoryTarget()
|
/external/skia/tests/ |
D | OSPathTest.cpp | 30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str()); in test_dir_with_file() local 38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize); in test_dir_with_file() 40 SkString basename = SkOSPath::Basename(fullName.c_str()); in test_dir_with_file() 41 SkString dirname = SkOSPath::Dirname(fullName.c_str()); in test_dir_with_file()
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerRegistry.h | 105 void addChecker(InitializationFunction fn, StringRef fullName, 111 void addChecker(StringRef fullName, StringRef desc) { in addChecker() argument 114 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc); in addChecker()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | UResourceBundle.java | 351 …protected static UResourceBundle addToCache(String fullName, ULocale defaultLocale, UResourceBundl… in addToCache() argument 353 cacheKey.setKeyValues(fullName, defaultLocale); in addToCache() 369 protected static UResourceBundle loadFromCache(String fullName, ULocale defaultLocale) { in loadFromCache() argument 371 cacheKey.setKeyValues(fullName, defaultLocale); in loadFromCache() 542 String fullName = ICUResourceBundleReader.getFullName(baseName, localeName); in instantiateBundle() local 543 b = loadFromCache(fullName, defaultLocale); in instantiateBundle() 687 String fullName = ICUResourceBundleReader.getFullName(getBaseName(), getLocaleID()); in get() local 689 "Can't find resource for bundle " + fullName + ", key " in get()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | UResourceBundle.java | 337 …protected static UResourceBundle addToCache(String fullName, ULocale defaultLocale, UResourceBundl… in addToCache() argument 339 cacheKey.setKeyValues(fullName, defaultLocale); in addToCache() 355 protected static UResourceBundle loadFromCache(String fullName, ULocale defaultLocale) { in loadFromCache() argument 357 cacheKey.setKeyValues(fullName, defaultLocale); in loadFromCache() 527 String fullName = ICUResourceBundleReader.getFullName(baseName, localeName); in instantiateBundle() local 528 b = loadFromCache(fullName, defaultLocale); in instantiateBundle() 664 String fullName = ICUResourceBundleReader.getFullName(getBaseName(), getLocaleID()); in get() local 666 "Can't find resource for bundle " + fullName + ", key " in get()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
D | KeyAgreementSpi.java | 254 String fullName = clazz.getName(); in getSimpleName() local 256 return fullName.substring(fullName.lastIndexOf('.') + 1); in getSimpleName()
|
/external/clang/utils/TableGen/ |
D | ClangSACheckersEmitter.cpp | 111 std::string fullName = getPackageFullName(R); in EmitClangSACheckers() local 112 if (!fullName.empty()) { in EmitClangSACheckers() 113 GroupInfo &info = groupInfoByName[fullName]; in EmitClangSACheckers() 142 std::string fullName = getCheckerFullName(R); in EmitClangSACheckers() local 143 GroupInfo &info = groupInfoByName[fullName]; in EmitClangSACheckers()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageViewTests.cpp | 327 const std::string fullName = getFormatName(format); in getFormatCaseName() local 329 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 331 return de::toLower(fullName.substr(10)); in getFormatCaseName() 537 const std::string fullName = getComponentSwizzleName(componentSwizzle); in getComponentSwizzleCaseName() local 539 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_")); in getComponentSwizzleCaseName() 541 return de::toLower(fullName.substr(21)); in getComponentSwizzleCaseName()
|
D | vktPipelineSamplerTests.cpp | 565 const std::string fullName = getFormatName(format); in getFormatCaseName() local 567 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 569 return de::toLower(fullName.substr(10)); in getFormatCaseName() 662 const std::string fullName = getSamplerAddressModeName(u); in getAddressModesCaseName() local 663 DE_ASSERT(de::beginsWith(fullName, "VK_SAMPLER_ADDRESS_")); in getAddressModesCaseName() 666 caseName << de::toLower(fullName.substr(19)); in getAddressModesCaseName()
|
D | vktPipelineStencilTests.cpp | 1020 const std::string fullName = getCompareOpName(compareOp); in getShortName() local 1022 DE_ASSERT(de::beginsWith(fullName, "VK_COMPARE_OP_")); in getShortName() 1024 return de::toLower(fullName.substr(14)); in getShortName() 1082 const std::string fullName = getFormatName(format); in getFormatCaseName() local 1084 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 1086 return de::toLower(fullName.substr(10)); in getFormatCaseName()
|
D | vktPipelineImageTests.cpp | 249 const std::string fullName = getFormatName(format); in getFormatCaseName() local 251 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 253 return de::toLower(fullName.substr(10)); in getFormatCaseName()
|
/external/mdnsresponder/mDNSShared/ |
D | dnssd_clientlib.c | 104 char *const fullName, in DNSServiceConstructFullName() argument 111 char *fn = fullName; in DNSServiceConstructFullName() 112 char *const lim = fullName + 1005; in DNSServiceConstructFullName()
|
/external/icu/icu4c/source/common/unicode/ |
D | locid.h | 747 char* fullName; variable 802 return fullName; in getName()
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | ServiceTest.java | 239 String fullName = innerClass.getName(); in testNoGenericServices() local 246 assertTrue(fullName.startsWith(outerName)); in testNoGenericServices() 255 innerClassNames.add(fullName.substring(outerName.length() + 1)); in testNoGenericServices()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 2029 private void setClassName (final String fullName) in setClassName() argument 2031 if ($assert.ENABLED) $assert.ASSERT (fullName != null && fullName.length () > 0, in setClassName() 2034 final int lastSlash = fullName.lastIndexOf ('/'); in setClassName() 2038 m_className = fullName; in setClassName() 2042 if ($assert.ENABLED) $assert.ASSERT (lastSlash < fullName.length () - 1, in setClassName() 2043 "malformed class name [" + fullName + "]"); in setClassName() 2045 m_classPackageName = fullName.substring (0, lastSlash); in setClassName() 2046 m_className = fullName.substring (lastSlash + 1); in setClassName()
|