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

12

/external/chromium_org/third_party/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());
H A DImageDecodingTest.cpp268 SkString fullName = SkOSPath::Join(resourcePath.c_str(), basename.c_str()); local
271 SkFILEStream stream(fullName.c_str());
/external/lzma/CPP/Windows/
H A DFileName.cpp32 void SplitNameToPureNameAndExtension(const UString &fullName, argument
35 int index = fullName.ReverseFind(kExtensionDelimiter);
38 pureName = fullName;
44 pureName = fullName.Left(index);
46 extension = fullName.Mid(index + 1);
/external/skia/tests/
H A DOSPathTest.cpp29 // fullName should be "dir<SkPATH_SEPARATOR>file"
30 SkString fullName = SkOSPath::SkPathJoin(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::SkBasename(fullName.c_str());
H A DImageDecodingTest.cpp267 SkString fullName = SkOSPath::SkPathJoin(resourcePath.c_str(), basename.c_str()); local
270 SkFILEStream stream(fullName.c_str());
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistry.h102 void addChecker(InitializationFunction fn, StringRef fullName,
108 void addChecker(StringRef fullName, StringRef desc) { argument
111 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
H A DProfileDownloader.java28 * @param fullName A full name.
31 void onProfileDownloaded(String accountId, String fullName, Bitmap bitmap); argument
63 private static void onProfileDownloadSuccess(String accountId, String fullName, Bitmap bitmap) { argument
66 observer.onProfileDownloaded(accountId, fullName, bitmap);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dlocid.h732 char* fullName; member in class:Locale
788 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/icu/icu4c/source/common/unicode/
H A Dlocid.h732 char* fullName; member in class:Locale
788 return fullName;
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DWorkgroupProperties.java31 private String fullName; field in class:WorkgroupProperties
51 return fullName;
54 public void setFullName(String fullName) { argument
55 this.fullName = fullName;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistry.java134 * I.e. {@code result.descriptor.fullName()} will match {@code fullName} if
140 public ExtensionInfo findExtensionByName(final String fullName) { argument
141 return extensionsByName.get(fullName);
H A DDescriptors.java446 public String getFullName() { return fullName; }
495 file.pool.findSymbol(fullName + '.' + name);
520 file.pool.findSymbol(fullName + '.' + name);
535 file.pool.findSymbol(fullName + '.' + name);
545 private final String fullName; field in class:Descriptors.Descriptor
560 fullName = computeFullName(file, parent, proto.getName());
653 public String getFullName() { return fullName; }
806 private final String fullName; field in class:Descriptors.FieldDescriptor
892 fullName = computeFullName(file, parent, proto.getName());
1158 public String getFullName() { return fullName; }
1202 private final String fullName; field in class:Descriptors.EnumDescriptor
1288 private final String fullName; field in class:Descriptors.EnumValueDescriptor
1364 private final String fullName; field in class:Descriptors.ServiceDescriptor
1445 private final String fullName; field in class:Descriptors.MethodDescriptor
1614 findSymbol(final String fullName) argument
1744 PackageDescriptor(final String name, final String fullName, final FileDescriptor file) argument
1752 private final String fullName; field in class:Descriptors.DescriptorPool.PackageDescriptor
1762 addPackage(final String fullName, final FileDescriptor file) 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/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp233 UString fullName = seqName.GetNextName(); local
235 HRESULT result = openVolumeCallback->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/doclava/src/com/google/doclava/
H A DTypeInfo.java121 mFullName = other.fullName();
148 public String fullName() { method in class:TypeInfo
152 return fullName(new HashSet<String>());
161 result += arg.fullName(typeVars);
171 public String fullName(HashSet<String> typeVars) { method in class:TypeInfo
193 String fullName = null;
198 * if (fullName != null) { return fullName; }
200 fullName = mQualifiedTypeName;
202 fullName
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.cpp474 UString fullName; local
476 NFile::NDirectory::MyGetFullPathName(filePath, fullName, fileNamePartStartIndex);
478 fullName.Left(fileNamePartStartIndex),
479 fullName.Mid(fileNamePartStartIndex));
494 UString fullName, prefix, name; local
498 if (!NFile::NDirectory::MyGetFullPathName(filePath, fullName, fileNamePartStartIndex))
500 prefix = fullName.Left(fileNamePartStartIndex);
501 name = fullName.Mid(fileNamePartStartIndex);
/external/smack/src/org/xbill/DNS/
H A DName.java176 appendFromString(String fullName, byte [] array, int start, int n) argument
183 throw parseException(fullName, "Name too long");
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElement.cpp539 String fullName = name(); local
540 String trimmedName = fullName.stripWhiteSpace();
543 fullName = getIdAttribute();
544 trimmedName = fullName.stripWhiteSpace();
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
H A DPersonalDataManager.java58 String fullName, String companyName,
62 return new AutofillProfile(guid, origin, fullName, companyName,
68 public AutofillProfile(String guid, String origin, String fullName, String companyName, argument
76 mFullName = fullName;
176 public void setFullName(String fullName) { argument
177 mFullName = fullName;
57 create(String guid, String origin, String fullName, String companyName, String streetAddress, String region, String locality, String dependentLocality, String postalCode, String sortingCode, String country, String phoneNumber, String emailAddress, String languageCode) 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/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp665 CFStringRef fullName = CTFontCopyFullName(font); local
666 _CFString2CFXByteString(fullName, basefont);
667 CFRelease(fullName);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_parser.cpp536 static CFX_ByteStringC _PDF_FindAbbrName(const _FX_BSTR* table, int count, FX_BSTR fullName) argument
540 if (fullName.GetLength() == table[i].m_Size && FXSYS_memcmp32(fullName.GetPtr(), table[i].m_Ptr, fullName.GetLength()) == 0) {
/external/chromium_org/third_party/skia/gm/
H A Dgmmain.cpp385 SkString fullName = shortNamePlusConfig; local
386 fullName.append(renderModeDescriptor);
390 fFailedTests[type].push_back(fullName);

Completed in 3698 milliseconds

12