Searched refs:fullName (Results 1 - 25 of 67) sorted by relevance

123

/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);
H A DFileName.h22 void SplitNameToPureNameAndExtension(const UString &fullName,
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSystemProperty.java59 String fullName = m_arg0.execute(xctxt).str();
60 int indexOfNSSep = fullName.indexOf(':');
73 ? fullName.substring(0, indexOfNSSep) : "";
78 ? fullName : fullName.substring(indexOfNSSep + 1);
88 new Object[]{ fullName }); //"XSL Property not supported: "+fullName);
97 fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName);
113 new Object[]{ fullName }); //"SecurityExceptio
[all...]
H A DFuncExtFunctionAvailable.java55 String fullName = m_arg0.execute(xctxt).str();
56 int indexOfNSSep = fullName.indexOf(':');
62 methName = fullName;
66 prefix = fullName.substring(0, indexOfNSSep);
70 methName = fullName.substring(indexOfNSSep + 1);
H A DFuncExtElementAvailable.java54 String fullName = m_arg0.execute(xctxt).str();
55 int indexOfNSSep = fullName.indexOf(':');
61 methName = fullName;
65 prefix = fullName.substring(0, indexOfNSSep);
69 methName= fullName.substring(indexOfNSSep + 1);
/external/chromium_org/third_party/icu/source/common/
H A Dlocid.cpp213 /*if fullName is on the heap, we free it*/
214 if (fullName != fullNameBuffer)
216 uprv_free(fullName);
217 fullName = NULL;
226 : UObject(), fullName(fullNameBuffer), baseName(NULL)
237 : UObject(), fullName(fullNameBuffer), baseName(NULL)
247 : UObject(), fullName(fullNameBuffer), baseName(NULL)
382 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
399 if(fullName != fullNameBuffer) {
400 uprv_free(fullName);
[all...]
H A Dlocdispnames.cpp63 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
75 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
103 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
115 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
143 length=uloc_getDisplayCountry(fullName, displayLocale.fullName,
[all...]
/external/icu/icu4c/source/common/
H A Dlocid.cpp213 /*if fullName is on the heap, we free it*/
214 if (fullName != fullNameBuffer)
216 uprv_free(fullName);
217 fullName = NULL;
226 : UObject(), fullName(fullNameBuffer), baseName(NULL)
237 : UObject(), fullName(fullNameBuffer), baseName(NULL)
247 : UObject(), fullName(fullNameBuffer), baseName(NULL)
382 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
399 if(fullName != fullNameBuffer) {
400 uprv_free(fullName);
[all...]
H A Dlocdispnames.cpp63 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
75 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
103 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
115 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
143 length=uloc_getDisplayCountry(fullName, displayLocale.fullName,
[all...]
/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/chromium_org/chrome/browser/resources/net_internals/
H A Dsocket_pool_wrapper.js15 * unique name from the two, which is stored as |fullName|. |parent|
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/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/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/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/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());
/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());
/external/protobuf/java/src/main/java/com/google/protobuf/
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...]
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);
/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/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/chromium_org/third_party/icu/source/common/unicode/
H A Dlocid.h732 char* fullName; member in class:Locale
788 return fullName;
/external/icu/icu4c/source/common/unicode/
H A Dlocid.h732 char* fullName; member in class:Locale
788 return fullName;
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyAgreementSpi.java292 String fullName = clazz.getName();
294 return fullName.substring(fullName.lastIndexOf('.') + 1);
/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];

Completed in 8154 milliseconds

123