Searched defs:fullName (Results 1 - 25 of 60) sorted by relevance

123

/external/dng_sdk/source/
H A Ddng_xmp_sdk.h67 const char * fullName; member in struct:dng_xmp_namespace
/external/skia/tests/
H A DOSPathTest.cpp29 // fullName should be "dir<SkPATH_SEPARATOR>file"
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str()); local
32 // fullName should be the combined size of dir and file, plus one if
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
40 SkString basename = SkOSPath::Basename(fullName.c_str());
41 SkString dirname = SkOSPath::Dirname(fullName.c_str());
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistry.h105 void addChecker(InitializationFunction fn, StringRef fullName,
111 void addChecker(StringRef fullName, StringRef desc) { argument
114 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
/external/icu/icu4c/source/common/unicode/
H A Dlocid.h747 char* fullName; member in class:Locale
802 return fullName;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DFetchBaseTask.java82 String fullName=entry.substring(entry.lastIndexOf("/")+1,entry.length());
83 if (fullName.endsWith(".jar"))
86 return fetchDirectoryTarget(type, id, fullName, cvsinfo);
123 private String fetchDirectoryTarget(String type, String id, String fullName,String[] cvsinfo){ argument
127 "\t\t<cvs command=\"export -d "+fullName+"\"\n" +
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistry.java139 public ExtensionInfo findExtensionByName(final String fullName) { argument
140 return findImmutableExtensionByName(fullName);
145 * in the proto namespace. i.e. {@code result.descriptor.fullName()} will
146 * match {@code fullName} if a match is found.
151 public ExtensionInfo findImmutableExtensionByName(final String fullName) { argument
152 return immutableExtensionsByName.get(fullName);
157 * in the proto namespace. i.e. {@code result.descriptor.fullName()} will
158 * match {@code fullName} if a match is found.
163 public ExtensionInfo findMutableExtensionByName(final String fullName) { argument
164 return mutableExtensionsByName.get(fullName);
208 getAllMutableExtensionsByExtendedType(final String fullName) argument
226 getAllImmutableExtensionsByExtendedType(final String fullName) argument
[all...]
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp111 std::string fullName = getPackageFullName(R); local
112 if (!fullName.empty()) {
113 GroupInfo &info = groupInfoByName[fullName];
142 std::string fullName = getCheckerFullName(R); local
143 GroupInfo &info = groupInfoByName[fullName];
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineImageTests.cpp249 const std::string fullName = getFormatName(format); local
251 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
253 return de::toLower(fullName.substr(10));
H A DvktPipelineImageViewTests.cpp327 const std::string fullName = getFormatName(format); local
329 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
331 return de::toLower(fullName.substr(10));
537 const std::string fullName = getComponentSwizzleName(componentSwizzle); local
539 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_"));
541 return de::toLower(fullName.substr(21));
H A DvktPipelineSamplerTests.cpp565 const std::string fullName = getFormatName(format); local
567 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
569 return de::toLower(fullName.substr(10));
662 const std::string fullName = getSamplerAddressModeName(u); local
663 DE_ASSERT(de::beginsWith(fullName, "VK_SAMPLER_ADDRESS_"));
666 caseName << de::toLower(fullName.substr(19));
H A DvktPipelineBlendTests.cpp1039 const std::string fullName = getFormatName(format); local
1041 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
1043 return de::toLower(fullName.substr(10));
H A DvktPipelineDepthTests.cpp896 const std::string fullName = getFormatName(format); local
898 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
900 return de::toLower(fullName.substr(10));
H A DvktPipelineInputAssemblyTests.cpp1570 const std::string fullName = getPrimitiveTopologyName(topology); local
1572 DE_ASSERT(de::beginsWith(fullName, "VK_PRIMITIVE_TOPOLOGY_"));
1574 return de::toLower(fullName.substr(22));
H A DvktPipelineStencilTests.cpp1020 const std::string fullName = getCompareOpName(compareOp); local
1022 DE_ASSERT(de::beginsWith(fullName, "VK_COMPARE_OP_"));
1024 return de::toLower(fullName.substr(14));
1082 const std::string fullName = getFormatName(format); local
1084 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_"));
1086 return de::toLower(fullName.substr(10));
/external/guava/guava/src/com/google/common/io/
H A DFiles.java769 public static String getFileExtension(String fullName) { argument
770 checkNotNull(fullName);
771 String fileName = new File(fullName).getName();
/external/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp223 const UString fullName = seqName.GetNextName(); local
225 HRESULT result = volumeCallback->GetStream(fullName, &nextStream);
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientlib.c98 // Note: Need to make sure we don't write more than kDNSServiceMaxDomainName (1009) bytes to fullName
104 char *const fullName,
111 char *fn = fullName;
112 char *const lim = fullName + 1005;
102 DNSServiceConstructFullName( char *const fullName, const char *const service, const char *const regtype, const char *const domain ) argument
/external/opencv3/modules/java/generator/
H A Dgen_java.py732 def fullName(self, isCPP=False): member in class:GeneralInfo
956 "jni_name" : "(*("+classinfo.fullName(isCPP=True)+"*)%(n)s_nativeObj)", "jni_type" : "jlong",
961 "jni_name" : "("+classinfo.fullName(isCPP=True)+"*)%(n)s_nativeObj", "jni_type" : "jlong",
1085 return self.getClass(t).fullName(isCPP=True)
1352 cvname = fi.fullName(isCPP=True)
1367 cvname = fi.fullName(isCPP=True)
1465 getter_name = ci.fullName() + ".get_" + pi.name
1470 setter_name = ci.fullName() + ".set_" + pi.name
1512 """ % {"module" : module, "cls" : self.smartWrap(ci.name, ci.fullName(isCPP=True)), "j_cls" : ci.jname.replace('_', '_1')}
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java153 mFullName = other.fullName();
180 public String fullName() { method in class:TypeInfo
184 return fullName(new HashSet<String>());
193 result += arg.fullName(typeVars);
203 public String fullName(HashSet<String> typeVars) { method in class:TypeInfo
225 String fullName = null;
230 * if (fullName != null) { return fullName; }
232 fullName = mQualifiedTypeName;
234 fullName
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DUResourceBundle.java337 protected static UResourceBundle addToCache(String fullName, ULocale defaultLocale, UResourceBundle b) { argument
339 cacheKey.setKeyValues(fullName, defaultLocale);
355 protected static UResourceBundle loadFromCache(String fullName, ULocale defaultLocale) { argument
357 cacheKey.setKeyValues(fullName, defaultLocale);
527 String fullName = ICUResourceBundleReader.getFullName(baseName, localeName);
528 b = loadFromCache(fullName, defaultLocale);
664 String fullName = ICUResourceBundleReader.getFullName(getBaseName(), getLocaleID());
666 "Can't find resource for bundle " + fullName + ", key "
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DUResourceBundle.java351 protected static UResourceBundle addToCache(String fullName, ULocale defaultLocale, UResourceBundle b) { argument
353 cacheKey.setKeyValues(fullName, defaultLocale);
369 protected static UResourceBundle loadFromCache(String fullName, ULocale defaultLocale) { argument
371 cacheKey.setKeyValues(fullName, defaultLocale);
542 String fullName = ICUResourceBundleReader.getFullName(baseName, localeName);
543 b = loadFromCache(fullName, defaultLocale);
687 String fullName = ICUResourceBundleReader.getFullName(getBaseName(), getLocaleID());
689 "Can't find resource for bundle " + fullName + ", key "
/external/avahi/avahi-compat-libdns_sd/
H A Dcompat.c786 char *fullName,
793 if (!fullName || !regtype || !domain)
796 if (avahi_service_name_join(fullName, kDNSServiceMaxDomainName, service, regtype, domain) < 0)
785 DNSServiceConstructFullName( char *fullName, const char *service, const char *regtype, const char *domain) argument
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java2029 private void setClassName (final String fullName) argument
2031 if ($assert.ENABLED) $assert.ASSERT (fullName != null && fullName.length () > 0,
2032 "null or empty input: fullName");
2034 final int lastSlash = fullName.lastIndexOf ('/');
2038 m_className = fullName;
2042 if ($assert.ENABLED) $assert.ASSERT (lastSlash < fullName.length () - 1,
2043 "malformed class name [" + fullName + "]");
2045 m_classPackageName = fullName.substring (0, lastSlash);
2046 m_className = fullName
[all...]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/mac/
H A Dftmac.c243 char fullName[256]; local
247 ft_strcpy( fullName, famName );
249 ft_strcat( fullName, " Bold" );
251 ft_strcat( fullName, " Italic" );
254 if ( ft_strcmp( fullName, fontName ) == 0 )
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp616 CFStringRef fullName = CTFontCopyFullName(font); local
617 _CFString2CFXByteString(fullName, basefont);
618 CFRelease(fullName);

Completed in 906 milliseconds

123