HomeSort by relevance Sort by last modified time
    Searched full:lastname (Results 1 - 25 of 34) sorted by null

1 2

  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 178 public RawContact(String name, String fullName, String firstName, String lastName,
185 mLastName = lastName;
218 final String lastName = !contact.isNull("l") ? contact.getString("l") : 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,
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 125 * Can be null if firstName/lastName are specified.
128 * @param lastName The last name of the contact - can be null if fullName
132 public ContactOperations addName(String fullName, String firstName, String lastName) {
143 if (!TextUtils.isEmpty(lastName)) {
144 mValues.put(StructuredName.FAMILY_NAME, lastName);
275 * @param lastName the new last name to store
284 String lastName,
292 if (!TextUtils.equals(existingLastName, lastName)) {
293 mValues.put(StructuredName.FAMILY_NAME, lastName);
ContactManager.java 510 String lastName = null;
532 lastName = c.getString(DataQuery.COLUMN_FAMILY_NAME);
554 RawContact rawContact = RawContact.create(fullName, firstName, lastName, cellPhone,
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 169 String firstName, String lastName) {
174 r.put(StructuredName.FAMILY_NAME, lastName);
375 String lastName = galDataRow.get(GalData.LAST_NAME);
379 if (firstName != null && lastName != null) {
380 displayName = firstName + " " + lastName;
383 } else if (lastName != null) {
384 displayName = lastName;
395 if (firstName != null && lastName != null) {
396 row[alternateDisplayNameIndex] = lastName + " " + firstName;
GalResult.java 54 public static final String LAST_NAME = "lastName";
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
VariableLocator.java 74 StringBuilder lastName = currentName;
78 currentName = lastName;
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 27 lastname = db.StringProperty() variable in class:Contact
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 254 contact.lastname = self.safe_attr(jcontact, 'l')
263 contact.handle = contact.firstname + '_' + contact.lastname
318 lastname = 'Capulet',
326 lastname = 'Montague',
334 lastname = 'Capulet',
355 'lastname': 'l',
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 58 * Whether to use "firstname lastname" in bigram predictions.
126 // TODO: Add firstname/lastname bigram rules for other languages.
162 * Adds the words in a name (e.g., firstname/lastname) to the binary dictionary along with their
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/
contacts.html 41 <td><a href="/edit_contact?id={{ contact.key.id }}">{{ contact.firstname }} {{ contact.lastname }}</a></td>
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 23 * id|firstname|lastname|
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 89 char ifname[9], lastname[IFNAMSIZ]; local
101 lastname[0] = 0;
115 if (strncmp(lastname, ifname, IFNAMSIZ) == 0) {
120 memcpy(lastname, ifname, IFNAMSIZ);
222 char *ptr, *buf, lastname[IFNAMSIZ], *cptr; local
268 lastname[0] = 0;
289 if (strncmp(lastname, ifr->ifr_name, IFNAMSIZ) == 0) {
294 memcpy(lastname, ifr->ifr_name, IFNAMSIZ);
  /external/chromium/chrome/browser/autofill/
autofill_browsertest.cc 39 "<label for=\"lastname\">Last name:</label>"
40 " <input type=\"text\" id=\"lastname\" /><br />"
162 ExpectFieldValue(L"lastname", "Waddams");
191 ExpectFieldValue(L"lastname", "");
278 "document.getElementById('lastname').onchange = function() {"
personal_data_manager_mac.mm 111 NSString* lastName = [me valueForProperty:kABLastNameProperty];
116 profile->SetInfo(NAME_LAST, base::SysNSStringToUTF16(lastName));
autofill_profile_unittest.cc 56 // Case 2: "<lastname>"
66 // Case 3: "<lastname>, <address>"
93 // Case 6: "<firstname> <lastname>"
103 // Case 7: "<firstname> <lastname>, <address>"
113 // Case 7a: "<firstname> <lastname>, <address>" - same as #7, except for
autofill_download_unittest.cc 141 ASCIIToUTF16("lastname"),
385 ASCIIToUTF16("lastname"),
name_field_unittest.cc 89 ASCIIToUTF16("lastName"),
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 57 const char* lastName = 0;
62 lastName = CharsetTable[i].name;
64 registrar(CharsetTable[i].name, lastName);
  /external/icu4c/tools/gencnval/
gencnval.c 837 const char *lastName;
844 lastName = GET_ALIAS_STR(knownAliases[0]);
848 if (ucnv_compareNames(lastName, GET_ALIAS_STR(knownAliases[idx])) == 0) {
858 lastName,
871 lastName,
888 lastName = GET_ALIAS_STR(knownAliases[idx]);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SearchIndexManagerTest.java 382 assertStoredValue(buildSearchUri("Lastname"), SearchSnippetColumns.SNIPPET, null);
399 assertStoredValue(buildSearchUri("Lastname"), SearchSnippetColumns.SNIPPET, null);
BaseContactsProvider2Test.java 175 protected long createRawContactWithName(String firstName, String lastName) {
176 return createRawContactWithName(firstName, lastName, null);
179 protected long createRawContactWithName(String firstName, String lastName, Account account) {
181 insertStructuredName(rawContactId, firstName, lastName);
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
IconDetector.java 515 String lastName = null;
517 if (lastName != null && !lastName.equals(file.getName())) {
520 lastName = file.getName();
537 lastName, sb.toString());
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 432 String lastName = null;
462 lastName = getValue();
649 if (firstName != null || lastName != null) {
651 name = lastName;
652 } else if (lastName == null) {
655 name = firstName + ' ' + lastName;
661 ops.addName(entity, prefix, firstName, lastName, middleName, suffix, name,
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 223 db.exec("create table TEST5(id integer, firstname text, lastname text);", null);
579 db.exec("create table TEST(id integer, firstname text, lastname text)", null);
    [all...]
  /external/chromium/chrome/browser/webdata/
autofill_table_unittest.cc 606 // Add multiple values for "firstname" and "lastname" names. Test that only
623 ASCIIToUTF16("lastname"),
629 ASCIIToUTF16("lastname"),
643 AutofillKey(ASCIIToUTF16("lastname"),
    [all...]

Completed in 878 milliseconds

1 2