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

1 2

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DistributionPointName.java 52 * fullName [0] GeneralNames,
70 private final GeneralNames fullName;
73 public DistributionPointName(GeneralNames fullName) {
74 this.fullName = fullName;
79 this.fullName = null;
86 if (fullName != null) {
87 fullName.dumpValue(sb, prefix + " ");
103 return (dpn.fullName == null) ? 1 : 0;
120 if (dpn.fullName == null)
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ResourceNameTest.java 31 final String fullName = res.getResourceName(R.configVarying.simple);
32 assertEquals("com.android.cts.stub:configVarying/simple", fullName);
ResourcesTest.java 469 final String fullName = mResources.getResourceName(R.configVarying.simple);
470 assertEquals(COM_ANDROID_CTS_STUB_IDENTIFIER, fullName);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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);
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);
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 }); //"SecurityException when trying to access XSL system property: "+fullName)
    [all...]
  /external/icu4c/common/unicode/
locid.h 728 char* fullName;
779 return fullName;
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 245 String fullName = innerClass.getName();
252 assertTrue(fullName.startsWith(outerName));
253 innerClassNames.add(fullName.substring(outerName.length() + 1));
  /external/clang/utils/TableGen/
ClangSACheckersEmitter.cpp 111 std::string fullName = getPackageFullName(R);
112 if (!fullName.empty()) {
113 GroupInfo &info = groupInfoByName[fullName];
142 std::string fullName = getCheckerFullName(R);
143 GroupInfo &info = groupInfoByName[fullName];
  /external/smack/src/org/jivesoftware/smackx/workgroup/settings/
WorkgroupProperties.java 31 private String fullName;
51 return fullName;
54 public void setFullName(String fullName) {
55 this.fullName = fullName;
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardJapanizationTests.java 95 final String fullName = "Dr. \u3075\u308B\u3069 B \u3091\u308A\u304B Ph.D";
97 .addExpectedNode("N", fullName + ";;;;",
98 Arrays.asList(fullName, "", "", "", ""),
100 .addExpectedNode("FN", fullName, mContentValuesForSJis)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 291 String fullName = clazz.getName();
293 return fullName.substring(fullName.lastIndexOf('.') + 1);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FetchBaseTask.java 82 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){
127 "\t\t<cvs command=\"export -d "+fullName+"\"\n" +
TestResultsGenerator.java 545 String fullName = xmlFileNames[i].getPath();
546 int errorCount = countErrors(fullName);
557 fullName.substring(
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.cpp 235 void WebAutofill::setProfile(const string16& fullName, const string16& emailAddress, const string16& companyName,
244 mAutofillProfile->SetInfo(AutofillFieldType(NAME_FULL), fullName);
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 67 char *fullName;
224 records[nextRecord].fullName = strndup(save_cp, len);
260 printf(" Entering %s\n", records[nextRecord].fullName);
266 printf(" Exiting %s (past bottom of stack)\n", records[nextRecord].fullName);
276 char *name = callStack[threadId].frames[indentLevel - 1]->fullName;
277 if (strcmp(name, records[nextRecord].fullName) == 0) {
284 callStack[threadId].frames[indentLevel - 1]->fullName);
298 printf(" Entering %s\n", records[nextRecord].fullName);
386 for (pRecord = records; pRecord->fullName; ++pRecord) {
395 for (pNext = pRecord + 1; pNext->fullName; ++pNext)
    [all...]
  /external/doclava/src/com/google/doclava/
TypeInfo.java 125 public String fullName() {
129 return fullName(new HashSet<String>());
138 result += arg.fullName(typeVars);
148 public String fullName(HashSet<String> typeVars) {
154 String fullName = null;
164 * if (fullName != null) { return fullName; }
166 fullName = mQualifiedTypeName;
168 fullName += typeArgumentsName(mTypeArguments, typeVars);
172 fullName += " super " + superBound.fullName(typeVars)
    [all...]
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PerformanceTest.java 58 String fullName = ANIM_TEST_NAMES[mAnimTestNr] + " " + name;
59 fullName += mDoubleBuffering ? " tiled" : " webkit";
61 if (!mAnimDataMap.containsKey(fullName)) {
62 mAnimDataMap.put(fullName, new AnimStat());
64 AnimStat statVals = mAnimDataMap.get(fullName);
  /packages/apps/Browser/src/com/android/browser/
AutofillHandler.java 103 String fullName = c.getString(c.getColumnIndex(
124 fullName, email, company, addressLine1, addressLine2, city,
  /external/webkit/Source/WebKit/android/jni/
WebSettings.cpp 312 string16 fullName = getStringFieldAsString16(env, autoFillProfile, gFieldIds->mAutoFillProfileFullName);
323 webAutofill->setProfile(fullName, emailAddress, companyName, addressLine1, addressLine2, city, state, zipCode, country, phoneNumber);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 248 private static void addForAllModifiers(String fullName, float error, String[] modifierNames,
251 TestResult r = modifierResults.get(fullName);
261 String fullName = "";
263 fullName = fullName.concat("." + s);
265 fullName = fullName.substring(1);
270 deltaError = error - (float)mInputJson.getDouble(fullName);
276 mIndividualDiffResults.put(fullName, new TestResult(fullName, deltaError))
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 511 String fullName = null;
534 fullName = c.getString(DataQuery.COLUMN_FULL_NAME);
554 RawContact rawContact = RawContact.create(fullName, firstName, lastName, cellPhone,
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 225 const BigEndianUShort* fullName = 0;
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/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
LoginContext1Test.java 202 String fullName = getGlobalClassName(name);
203 AppConfigurationEntry entry = new AppConfigurationEntry(fullName,
206 return fullName;
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
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;
560 fullName = computeFullName(file, parent, proto.getName());
653 public String getFullName() { return fullName; }
806 private final String fullName;
    [all...]

Completed in 692 milliseconds

1 2