/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
H A D | 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); 113 new Object[]{ fullName }); //"SecurityExceptio [all...] |
H A D | 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);
|
H A D | 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/chromium/chrome/browser/resources/net_internals/ |
H A D | socketpoolwrapper.js | 12 * unique name from the two, which is stored as |fullName|. |parent| 19 this.fullName = socketPool.name; 20 if (this.fullName != socketPool.type) 21 this.fullName += ' (' + socketPool.type + ')'; 23 this.fullName = parent.fullName + '->' + this.fullName; 93 tablePrinter.addCell(socketPools[i].fullName); 125 tablePrinter.setTitle(this.fullName);
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
H A D | CheckerRegistry.h | 103 void addChecker(InitializationFunction fn, StringRef fullName, 109 void addChecker(StringRef fullName, StringRef desc) { argument 110 addChecker(&initializeManager<T>, fullName, desc);
|
/external/icu4c/common/ |
H A D | locid.cpp | 274 /*if fullName is on the heap, we free it*/ 275 if (fullName != fullNameBuffer) 277 uprv_free(fullName); 278 fullName = NULL; 287 : UObject(), fullName(fullNameBuffer), baseName(NULL) 298 : UObject(), fullName(fullNameBuffer), baseName(NULL) 308 : UObject(), fullName(fullNameBuffer), baseName(NULL) 443 : UObject(other), fullName(fullNameBuffer), baseName(NULL) 460 if(fullName != fullNameBuffer) { 461 uprv_free(fullName); [all...] |
H A D | locdispnames.cpp | 63 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/doclava/src/com/google/doclava/ |
H A D | TypeInfo.java | 125 public String fullName() { method in class:TypeInfo 129 return fullName(new HashSet<String>()); 138 result += arg.fullName(typeVars); 148 public String fullName(HashSet<String> typeVars) { method in class:TypeInfo 154 String fullName = null; 164 * if (fullName != null) { return fullName; } 166 fullName = mQualifiedTypeName; 168 fullName += typeArgumentsName(mTypeArguments, typeVars); 172 fullName [all...] |
H A D | AnnotationValueInfo.java | 60 return ((TypeInfo) v).fullName();
|
H A D | Stubs.java | 84 + t.fullName() + " in " + cl.qualifiedName() + "." + m.name() + "()"); 108 "Reference to unavailable annotation class " + t.fullName()); 245 "Parameter of hidden type " + tInfoType.fullName() + " in " 344 String leafName = cl.asTypeInfo().fullName(classDeclTypeVars); 358 stream.println(" extends " + base.fullName(classDeclTypeVars)); 377 stream.print(comma + iface.fullName(classDeclTypeVars)); 526 stream.print(method.returnType().fullName(method.typeVariables()) + " "); 581 stream.print(field.type().fullName()); 751 stream.print(ann.returnType().fullName()); 1239 String fullTypeName = type.fullName(metho [all...] |
H A D | MethodInfo.java | 362 result.append(param.type().fullName(typeVariables())); 687 params.append(pInfo.type().fullName());
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
H A D | Descriptors.java | 446 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 D | ExtensionRegistry.java | 134 * 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/icu4c/common/unicode/ |
H A D | locid.h | 720 char* fullName; member in class:Locale 771 return fullName;
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/ |
H A D | KeyAgreement.java | 287 String fullName = clazz.getName(); 289 return fullName.substring(fullName.lastIndexOf('.') + 1);
|
/external/clang/utils/TableGen/ |
H A D | ClangSACheckersEmitter.cpp | 110 std::string fullName = getPackageFullName(R); local 111 if (!fullName.empty()) { 112 GroupInfo &info = groupInfoByName[fullName]; 140 std::string fullName = getCheckerFullName(R); local 141 GroupInfo &info = groupInfoByName[fullName];
|
/external/webkit/Source/WebCore/platform/graphics/opentype/ |
H A D | OpenTypeUtilities.cpp | 225 const BigEndianUShort* fullName = 0; local 297 fullName = nameString; 330 if (fullNameLength >= familyNameLength && memcmp(familyName, fullName, familyNameLength)) { 331 overlaySrc = reinterpret_cast<const char*>(fullName) - data; 335 eotHeader.appendBigEndianString(fullName, fullNameLength);
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
H A D | ServiceTest.java | 245 String fullName = innerClass.getName(); 252 assertTrue(fullName.startsWith(outerName)); 253 innerClassNames.add(fullName.substring(outerName.length() + 1));
|
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
H A D | WebAutofill.h | 82 void setProfile(const string16& fullName, const string16& emailAddress, const string16& companyName,
|
H A D | WebAutofill.cpp | 235 void WebAutofill::setProfile(const string16& fullName, const string16& emailAddress, const string16& companyName, argument 244 mAutofillProfile->SetInfo(AutofillFieldType(NAME_FULL), fullName); local
|
/external/emma/core/java12/com/vladium/emma/instr/ |
H A D | InstrVisitor.java | 2029 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/webkit/Source/WebKit/android/jni/ |
H A D | WebSettings.cpp | 298 string16 fullName = getStringFieldAsString16(env, autoFillProfile, gFieldIds->mAutoFillProfileFullName); local 309 webAutofill->setProfile(fullName, emailAddress, companyName, addressLine1, addressLine2, city, state, zipCode, country, phoneNumber);
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/ |
H A D | LoginContext1Test.java | 202 String fullName = getGlobalClassName(name); 203 AppConfigurationEntry entry = new AppConfigurationEntry(fullName, 206 return fullName;
|
/external/emma/lib/ |
H A D | emma.jar | META-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ... |