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

1 2 3

  /packages/apps/Exchange/tests/src/com/android/exchange/eas/
EasSyncContactsTests.java 124 final String lastName = "Smith";
127 nameValues.put(StructuredName.FAMILY_NAME, lastName);
131 final String generatedName = lastName + " " + suffix + ", " + firstName + " " + middleName;
139 final String lastName = "Smith";
141 nameValues.put(StructuredName.FAMILY_NAME, lastName);
145 final String generatedName = lastName + " " + suffix + ", " + middleName;
167 final String lastName = "Smith";
170 nameValues.put(StructuredName.FAMILY_NAME, lastName);
173 final String generatedName = lastName + " " + suffix + ", " + firstName;
182 final String lastName = "Smith"
    [all...]
  /external/chromium_org/third_party/libxml/src/
dbgen.pl 34 printf " <lastname>$last</lastname>\n", $i;
dbgenattr.pl 34 printf " lastname='$last'\n", $i;
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapCard.java 38 public final String lastName;
50 * format is as for vCard N field, so we have up to 5 tokens: LastName;
55 lastName = parsedName.length < 1 ? null : parsedName[0];
69 json.put("lastName", lastName);
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 63 " <INPUT type=\"text\" id=\"lastname\"/>"
157 names.push_back(ASCIIToUTF16("lastname"));
688 " <LABEL for=\"lastname\">Last name:</LABEL>"
689 " <INPUT type=\"text\" id=\"lastname\" value=\"Smith\"/>"
743 expected.name = ASCIIToUTF16("lastname");
2967 WebInputElement lastname = local
3080 WebInputElement lastname = local
3159 WebInputElement lastname = local
3227 WebInputElement lastname = local
3295 WebInputElement lastname = local
3364 WebInputElement lastname = local
    [all...]
autofill_renderer_browsertest.cc 65 " <input type=\"text\" id=\"lastname\" autoComplete=\"off\"/>"
98 expected.name = ASCIIToUTF16("lastname");
183 " <input id=\"lastname\"/>"
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
RawContactUtil.java 107 String lastName) {
108 return createRawContactWithName(resolver, firstName, lastName, null);
112 String lastName, Account account) {
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,
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,
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement_unittest.cc 203 "<lastname>Harrison</lastname>"
206 "<lastname>Lennon</lastname>"
217 element->TextNamed(QName("test-foo", "lastname")));
219 element->FirstNamed(QName("test-foo", "lastname")));
224 EXPECT_EQ("Lennon", element->FirstNamed(QName("test-foo", "lastname"))->
225 NextNamed(QName("test-foo", "lastname"))->BodyText());
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 106 private String lastName;
178 return lastName;
181 public void setLastName(String lastName) {
182 this.lastName = lastName;
498 if (lastName != null) {
499 sb.append(StringUtils.escapeForXML(lastName));
631 return firstName != null || lastName != null || middleName != null;
661 if (lastName != null ? !lastName.equals(vCard.lastName) : vCard.lastName != null)
    [all...]
  /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);
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 185 String firstName, String lastName) {
190 r.put(StructuredName.FAMILY_NAME, lastName);
569 final String lastName = galDataRow.get(GalData.LAST_NAME);
570 if (!TextUtils.isEmpty(firstName) || !TextUtils.isEmpty(lastName)) {
571 if (!TextUtils.isEmpty(firstName) && !TextUtils.isEmpty(lastName)) {
572 displayName = firstName + " " + lastName;
576 displayName = lastName;
599 * Alternate Display Name field is LastName FirstName to support user
607 final String lastName = galDataRow.get(GalData.LAST_NAME);
608 if (!TextUtils.isEmpty(firstName) && !TextUtils.isEmpty(lastName)) {
    [all...]
GalResult.java 56 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
  /external/eigen/scripts/
eigen_gen_credits.cpp 110 string lastname(const string& name) function
129 return lastname(name).compare(lastname(other.name)) < 0;
  /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',
  /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 strncpy(lastname, ifname, IFNAMSIZ);
229 char *ptr, *buf, lastname[IFNAMSIZ], *cptr; local
275 lastname[0] = 0;
296 if (strncmp(lastname, ifr->ifr_name, IFNAMSIZ) == 0) {
301 memcpy(lastname, ifr->ifr_name, IFNAMSIZ);
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 460 StringRef lastName;
466 if (newName != lastName) {
467 if (!lastName.empty()) {
470 lastName = newName;
471 o << " <key>" << lastName << "_files</key>\n";
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
Test.java 110 s = "<person created=\"2006-11-11T19:23\" modified=\"2006-12-31T23:59\">\n <firstName>Robert</firstName>\n <lastName>Smith</lastName>\n <address type=\"home\">\n <street>12345 Sixth Ave</street>\n <city>Anytown</city>\n <state>CA</state>\n <postalCode>98765-4321</postalCode>\n </address>\n </person>";
262 s = "<mapping><empty/> <class name = \"Customer\"> <field name = \"ID\" type = \"string\"> <bind-xml name=\"ID\" node=\"attribute\"/> </field> <field name = \"FirstName\" type = \"FirstName\"/> <field name = \"MI\" type = \"MI\"/> <field name = \"LastName\" type = \"LastName\"/> </class> <class name = \"FirstName\"> <field name = \"text\"> <bind-xml name = \"text\" node = \"text\"/> </field> </class> <class name = \"MI\"> <field name = \"text\"> <bind-xml name = \"text\" node = \"text\"/> </field> </class> <class name = \"LastName\"> <field name = \"text\"> <bind-xml name = \"text\" node = \"text\"/> </field> </class></mapping>";
278 j = XML.toJSONObject("<!DOCTYPE bCard 'http://www.cs.caltech.edu/~adam/schemas/bCard'><bCard><?xml default bCard firstname = '' lastname = '' company = '' email = '' homepage = ''?><bCard firstname = 'Rohit' lastname = 'Khare' company = 'MCI' email = 'khare@mci.net' homepage = 'http://pest.w3.org/'/><bCard firstname = 'Adam' lastname = 'Rifkin' company = 'Caltech Infospheres Project' email = 'adam@cs.caltech.edu' homepage = 'http://www.cs.caltech.edu/~adam/'/></bCard>");
283 j = XML.toJSONObject("<?xml version=\"1.0\"?><customer> <firstName> <text>Fred</text> </firstName> <ID>fbs0001</ID> <lastName> <text>Scerbo</text> </lastName> <MI> <text>B</text> </MI></customer>")
    [all...]
  /external/chromium_org/chrome/browser/autofill/
autofill_interactive_uitest.cc 68 "<label for=\"lastname\">Last name:</label>"
69 " <input type=\"text\" id=\"lastname\"><br>"
341 ExpectFieldValue("lastname", "Waddams");
389 ExpectFieldValue("lastname", std::string());
528 "document.getElementById('lastname').oninput = function() {"
600 "document.getElementById('lastname').onchange = function() {"
674 "document.getElementById('lastname').oninput = recordInputElementEvent;"
675 "document.getElementById('lastname').onchange = recordInputElementEvent;"
774 "<label for=\"lastname\">Last name:</label>"
775 " <input type=\"text\" id=\"lastname\"><br>
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 73 * Whether to use "firstname lastname" in bigram predictions.
168 // TODO: Add firstname/lastname bigram rules for other languages.
216 * Adds the words in a name (e.g., firstname/lastname) to the binary dictionary along with their
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
COPYING 50 Please use: Firstname.Lastname@homemail.com.au
72 Please use: Firstname.Lastname@homemail.com.au

Completed in 395 milliseconds

1 2 3