HomeSort by relevance Sort by last modified time
    Searched refs:firstName (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/platform/text/mac/
make-charset-table.pl 84 my $firstName = "";
88 if ($firstName eq "") {
93 $firstName = $name;
129 emit_line($firstName, $PlatformPrefix, $PlatformName, $flags);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
RawContactUtil.java 106 public static long createRawContactWithName(ContentResolver resolver, String firstName,
108 return createRawContactWithName(resolver, firstName, lastName, null);
111 public static long createRawContactWithName(ContentResolver resolver, String firstName,
114 DataUtil.insertStructuredName(resolver, rawContactId, firstName, lastName);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 178 public RawContact(String name, String fullName, String firstName, String lastName,
184 mFirstName = firstName;
217 final String firstName = !contact.isNull("f") ? contact.getString("f") : null;
227 return new RawContact(userName, null, firstName, lastName, cellPhone,
239 public static RawContact create(String fullName, String firstName, String lastName,
243 return new RawContact(null, fullName, firstName, lastName, cellPhone, officePhone,
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 105 private String firstName;
168 return firstName;
171 public void setFirstName(String firstName) {
172 this.firstName = firstName;
492 if (firstName != null) {
493 sb.append(StringUtils.escapeForXML(firstName)).append(' ');
631 return firstName != null || lastName != null || middleName != null;
652 if (firstName != null ? !firstName.equals(vCard.firstName) : vCard.firstName != null)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 125 * Can be null if firstName/lastName are specified.
126 * @param firstName The first name of the contact - can be null if fullName
132 public ContactOperations addName(String fullName, String firstName, String lastName) {
139 if (!TextUtils.isEmpty(firstName)) {
140 mValues.put(StructuredName.GIVEN_NAME, firstName);
274 * @param firstName the new first name to store
283 String firstName,
289 if (!TextUtils.equals(existingFirstName, firstName)) {
290 mValues.put(StructuredName.GIVEN_NAME, firstName);
ContactManager.java 509 String firstName = null;
533 firstName = c.getString(DataQuery.COLUMN_GIVEN_NAME);
554 RawContact rawContact = RawContact.create(fullName, firstName, lastName, cellPhone,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 296 String firstName = descriptor.getXmlLocalName();
297 if (firstName.startsWith(ATTR_LAYOUT_RESOURCE_PREFIX)) {
298 if (firstName.startsWith(ATTR_LAYOUT_MARGIN)) {
309 if (firstName.equals(ATTR_ID)) {
463 String firstName = descriptor.getXmlLocalName();
464 if (firstName.startsWith(ATTR_LAYOUT_RESOURCE_PREFIX)) {
465 if (firstName.startsWith(ATTR_LAYOUT_MARGIN)) {
476 if (firstName.equals(ATTR_ID)) {
484 String category = PropertyMetadata.getCategory(firstName);
500 int firstNameIndex = firstName.length()
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 169 String firstName, String lastName) {
173 r.put(StructuredName.GIVEN_NAME, firstName);
374 String firstName = galDataRow.get(GalData.FIRST_NAME);
379 if (firstName != null && lastName != null) {
380 displayName = firstName + " " + lastName;
381 } else if (firstName != null) {
382 displayName = firstName;
395 if (firstName != null && lastName != null) {
396 row[alternateDisplayNameIndex] = lastName + " " + firstName;
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 378 char firstName[bufferSize];
386 if (compareImages(firstName, stdinBuffer) == statusError)
393 strcpy(firstName, stdinBuffer);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 431 String firstName = null;
459 firstName = getValue();
649 if (firstName != null || lastName != null) {
650 if (firstName == null) {
653 name = firstName;
655 name = firstName + ' ' + lastName;
661 ops.addName(entity, prefix, firstName, lastName, middleName, suffix, name,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java     [all...]