HomeSort by relevance Sort by last modified time
    Searched refs:fullName (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 59 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);
109 new Object[]{ fullName }); //"SecurityException when trying to access XSL system property: "+fullName)
    [all...]
FuncExtFunctionAvailable.java 55 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);
FuncExtElementAvailable.java 54 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/icu/icu4c/source/common/
locid.cpp 259 if (baseName != fullName) {
263 /*if fullName is on the heap, we free it*/
264 if (fullName != fullNameBuffer)
266 uprv_free(fullName);
267 fullName = NULL;
272 : UObject(), fullName(fullNameBuffer), baseName(NULL)
283 : UObject(), fullName(fullNameBuffer), baseName(NULL)
293 : UObject(), fullName(fullNameBuffer), baseName(NULL)
427 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
433 : UObject(other), fullName(fullNameBuffer), baseName(fullName)
    [all...]
  /external/cldr/tools/c/genldml/
genindex.pl 54 $fullName="";
58 $fullName = $1;
59 if($fullName eq ""){
66 print $outFH "\t\t\t<li><a href=\"$href/$item\">$s1</a> $fullName</li>\n";
  /external/fonttools/Lib/fontTools/misc/
filenames.py 112 fullName = prefix + userName + suffix
113 if fullName.lower() in existing:
114 fullName = handleClash1(userName, existing, prefix, suffix)
116 return fullName
160 fullName = prefix + name + suffix
161 if fullName.lower() not in existing:
162 finalName = fullName
207 fullName = prefix + str(counter) + suffix
208 if fullName.lower() not in existing:
209 finalName = fullName
    [all...]
  /external/fonttools/Lib/fontTools/ufoLib/
filenames.py 103 fullName = prefix + userName + suffix
104 if fullName.lower() in existing:
105 fullName = handleClash1(userName, existing, prefix, suffix)
107 return fullName
151 fullName = prefix + name + suffix
152 if fullName.lower() not in existing:
153 finalName = fullName
198 fullName = prefix + str(counter) + suffix
199 if fullName.lower() not in existing:
200 finalName = fullName
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
ContentProviderController.java 90 final String fullName;
93 fullName = pkg + cls;
96 fullName = cls;
98 return new ComponentName(pkg, fullName);
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 87 StringRef FullName;
91 : Initialize(fn), FullName(name), Desc(desc) {}
105 void addChecker(InitializationFunction fn, StringRef fullName,
111 void addChecker(StringRef fullName, StringRef desc) {
114 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
  /external/skia/tools/bookmaker/
textParser.cpp 21 string fullName;
26 fullName += pathChars[index] == (char)pathChars[index] ? (char)pathChars[index] : '?';
28 fullName += '\\';
30 fullName += file;
31 return fullName;
54 string fullName = this->ReportFilename(fFileName);
55 SkDebugf("\n%s(%zd): error: %s\n", fullName.c_str(), err.fLineCount, errorStr);
cataloger.cpp 78 string fullName = outie + kCatalogFileName;
79 if (ParserCommon::WrittenFileDiffers(fullName, kCatalogFileName)) {
80 ParserCommon::CopyToFile(fullName, kCatalogFileName);
81 SkDebugf("wrote %s\n", fullName.c_str());
  /external/skqp/tools/bookmaker/
textParser.cpp 21 string fullName;
26 fullName += pathChars[index] == (char)pathChars[index] ? (char)pathChars[index] : '?';
28 fullName += '\\';
30 fullName += file;
31 return fullName;
54 string fullName = this->ReportFilename(fFileName);
55 SkDebugf("\n%s(%zd): error: %s\n", fullName.c_str(), err.fLineCount, errorStr);
cataloger.cpp 78 string fullName = outie + kCatalogFileName;
79 if (ParserCommon::WrittenFileDiffers(fullName, kCatalogFileName)) {
80 ParserCommon::CopyToFile(fullName, kCatalogFileName);
81 SkDebugf("wrote %s\n", fullName.c_str());
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ExtensionRegistry.java 139 public ExtensionInfo findExtensionByName(final String fullName) {
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) {
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) {
164 return mutableExtensionsByName.get(fullName);
    [all...]
Descriptors.java 621 return fullName;
711 file.pool.findSymbol(fullName + '.' + name);
736 file.pool.findSymbol(fullName + '.' + name);
751 file.pool.findSymbol(fullName + '.' + name);
761 private final String fullName;
771 Descriptor(final String fullname) throws DescriptorValidationException {
772 String name = fullname;
774 int pos = fullname.lastIndexOf('.');
776 name = fullname.substring(pos + 1);
777 packageName = fullname.substring(0, pos)
2219 String fullname; local
    [all...]
  /external/skia/tests/
OSPathTest.cpp 29 // fullName should be "dir<SkOSPath::SEPARATOR>file"
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str());
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/skqp/tests/
OSPathTest.cpp 29 // fullName should be "dir<SkOSPath::SEPARATOR>file"
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str());
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());
  /cts/tests/tests/content/src/android/content/res/cts/
ResourceNameTest.java 31 final String fullName = res.getResourceName(R.configVarying.simple);
32 assertEquals("android.content.cts:configVarying/simple", fullName);
  /art/tools/dmtracedump/
createtesttrace.cc 65 char* fullName;
208 records[nextRecord].fullName = strndup(save_cp, len);
240 if (verbose) printf(" Entering %s\n", records[nextRecord].fullName);
248 records[nextRecord].fullName);
258 char* name = callStack[threadId].frames[indentLevel - 1]->fullName;
259 if (strcmp(name, records[nextRecord].fullName) == 0) {
265 callStack[threadId].frames[indentLevel - 1]->fullName);
279 printf(" Entering %s\n", records[nextRecord].fullName);
358 for (dataRecord* pRecord = records; pRecord->fullName; ++pRecord) {
366 for (dataRecord* pNext = pRecord + 1; pNext->fullName; ++pNext)
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
DescriptorPool.cs 86 /// <param name="fullName">Fully-qualified name to look up</param>
89 internal T FindSymbol<T>(string fullName) where T : class
92 descriptorsByName.TryGetValue(fullName, out result);
103 dependency.DescriptorPool.descriptorsByName.TryGetValue(fullName, out result);
120 internal void AddPackage(string fullName, FileDescriptor file)
122 int dotpos = fullName.LastIndexOf('.');
126 AddPackage(fullName.Substring(0, dotpos), file);
127 name = fullName.Substring(dotpos + 1);
131 name = fullName;
135 if (descriptorsByName.TryGetValue(fullName, out old)
    [all...]
PackageDescriptor.cs 43 private readonly string fullName;
46 internal PackageDescriptor(string name, string fullName, FileDescriptor file)
49 this.fullName = fullName;
58 public string FullName
60 get { return fullName; }
DescriptorBase.cs 41 private readonly string fullName;
44 internal DescriptorBase(FileDescriptor file, string fullName, int index)
47 this.fullName = fullName;
72 public string FullName
74 get { return fullName; }
  /external/doclava/src/com/google/doclava/
TypeInfo.java 153 mFullName = other.fullName();
190 public String fullName() {
194 return fullName(new HashSet<String>());
203 result += arg.fullName(typeVars);
213 public String fullName(HashSet<String> typeVars) {
235 String fullName = null;
240 * if (fullName != null) { return fullName; }
242 fullName = mQualifiedTypeName;
244 fullName += typeArgumentsName(mTypeArguments, typeVars)
    [all...]
  /cts/tests/framework/base/windowmanager/util/src/android/server/wm/
ActivityManagerState.java 354 final String fullName = getActivityName(activityName);
361 if (activity.name.equals(fullName)) {
397 final String fullName = getActivityName(activityName);
401 if (activity.name.equals(fullName)) {
412 String fullName = getActivityName(activityName);
417 if (activity.name.equals(fullName)) {
429 final String fullName = getActivityName(activityName);
433 if (activity.name.equals(fullName)
444 final String fullName = getActivityName(activityName);
448 if (activity.name.equals(fullName)) {
    [all...]
  /external/grpc-grpc/tools/http2_interop/
testsuite.go 21 fullName := fn.Name()
22 if strings.HasPrefix(path.Ext(fullName), ".Test") {
24 name = string([]byte(path.Ext(fullName))[1:])

Completed in 574 milliseconds

1 2 3 4 5 6