OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:structurednamemap
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/editor/
StructuredNameEditorView.java
144
Map<String, String>
structuredNameMap
= NameConverter.displayNameToStructuredName(
146
if (!
structuredNameMap
.isEmpty()) {
148
for (String field :
structuredNameMap
.keySet()) {
149
values.put(field,
structuredNameMap
.get(field));
166
Map<String, String>
structuredNameMap
= valuesToStructuredNameMap(values);
168
structuredNameMap
);
177
for (String field :
structuredNameMap
.keySet()) {
178
mSnapshot.getContentValues().put(field,
structuredNameMap
.get(field));
183
Map<String, String>
structuredNameMap
= new HashMap<String, String>();
185
structuredNameMap
.put(key, values.getAsString(key))
[
all
...]
Completed in 942 milliseconds