OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BluetoothMapConvoListingElement
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapConvoListing.java
42
private List<
BluetoothMapConvoListingElement
> mList;
45
mList = new ArrayList<
BluetoothMapConvoListingElement
>();
47
public void add(
BluetoothMapConvoListingElement
element) {
57
* Used to fetch the number of
BluetoothMapConvoListingElement
elements in the list.
82
public List<
BluetoothMapConvoListingElement
> getList(){
105
for (
BluetoothMapConvoListingElement
element : mList) {
129
mList = new ArrayList<
BluetoothMapConvoListingElement
>(); // Return an empty list
133
mList = new ArrayList<
BluetoothMapConvoListingElement
>();
187
if(name.trim().equalsIgnoreCase(
BluetoothMapConvoListingElement
.XML_TAG_CONVERSATION)
194
add(
BluetoothMapConvoListingElement
.createFromXml(parser))
[
all
...]
BluetoothMapConvoListingElement.java
35
public class
BluetoothMapConvoListingElement
36
implements Comparable<
BluetoothMapConvoListingElement
> {
45
private static final String TAG = "
BluetoothMapConvoListingElement
";
232
public int compareTo(
BluetoothMapConvoListingElement
e) {
288
public static
BluetoothMapConvoListingElement
createFromXml(XmlPullParser parser)
290
BluetoothMapConvoListingElement
newElement = new
BluetoothMapConvoListingElement
();
348
BluetoothMapConvoListingElement
other = (
BluetoothMapConvoListingElement
) obj;
Completed in 45 milliseconds