OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothMapConvoListingElement
(Results
1 - 6
of
6
) 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;
BluetoothMapMasInstance.java
96
private HashMap<Long,
BluetoothMapConvoListingElement
> mSmsMmsConvoList =
97
new HashMap<Long,
BluetoothMapConvoListingElement
>();
99
private HashMap<Long,
BluetoothMapConvoListingElement
> mImEmailConvoList =
100
new HashMap<Long,
BluetoothMapConvoListingElement
>();
226
HashMap<Long,
BluetoothMapConvoListingElement
> getSmsMmsConvoList() {
230
void setSmsMmsConvoList(HashMap<Long,
BluetoothMapConvoListingElement
> smsMmsConvoList) {
234
HashMap<Long,
BluetoothMapConvoListingElement
> getImEmailConvoList() {
238
void setImEmailConvoList(HashMap<Long,
BluetoothMapConvoListingElement
> imEmailConvoList) {
BluetoothMapContent.java
558
private void setConvoRead(
BluetoothMapConvoListingElement
e, Cursor c,
[
all
...]
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
MapTestData.java
21
import com.android.bluetooth.map.
BluetoothMapConvoListingElement
;
108
BluetoothMapConvoListingElement
element;
110
element = new
BluetoothMapConvoListingElement
();
MapStepsConvo.java
17
import com.android.bluetooth.map.
BluetoothMapConvoListingElement
;
Completed in 192 milliseconds