HomeSort by relevance Sort by last modified time
    Searched refs:SignedLongLong (Results 1 - 13 of 13) sorted by null

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapUtilsTest.java 12 import com.android.bluetooth.SignedLongLong;
62 SignedLongLong expected = new SignedLongLong(0x12345678L, 0x90abcdefL);
64 SignedLongLong value;
65 value = SignedLongLong.fromString("90abcdef0000000012345678");
73 SignedLongLong expected = new SignedLongLong(0x12345678L, 0xfedcba9890abcdefL);
75 SignedLongLong value;
76 value = SignedLongLong.fromString("fedcba9890abcdef0000000012345678");
84 SignedLongLong expected = new SignedLongLong(0x12345678L, 0)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 29 public class SignedLongLong implements Comparable<SignedLongLong> {
34 public SignedLongLong(long leastSigBits, long mostSigBits) {
40 * Create a SignedLongLong from a Hex-String without "0x" prefix
45 public static SignedLongLong fromString(String value) throws UnsupportedEncodingException {
64 return new SignedLongLong(lsb, msb);
68 public int compareTo(SignedLongLong another) {
108 SignedLongLong other = (SignedLongLong) obj;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
MapContact.java 17 import com.android.bluetooth.SignedLongLong;
51 public SignedLongLong getXBtUid() {
53 return new SignedLongLong(mId, 0);
BluetoothMapConvoContactElement.java 30 import com.android.bluetooth.SignedLongLong;
60 private SignedLongLong mBtUid = null;
68 newElement.mBtUid = new SignedLongLong(contact.getId(),0);
87 this.mBtUid = SignedLongLong.fromString(btUid);
142 public void setBtUid(SignedLongLong btUid) {
267 newElement.setBtUid(SignedLongLong.fromString(attributeValue));
BluetoothMapConvoListingElement.java 31 import com.android.bluetooth.SignedLongLong;
49 private SignedLongLong mId = null;
190 this.mId = new SignedLongLong(threadId,type);
297 newElement.mId = SignedLongLong.fromString(attributeValue);
BluetoothMapAppParams.java 28 import com.android.bluetooth.SignedLongLong;
163 // TODO: Change to use SignedLongLong?
174 private SignedLongLong mFilterConvoId = null;
177 private SignedLongLong mChatStateConvoId = null;
    [all...]
BluetoothMapObexServer.java 31 import com.android.bluetooth.SignedLongLong;
    [all...]
BluetoothMapContent.java 41 import com.android.bluetooth.SignedLongLong;
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 57 IntMaxType = SignedLongLong;
63 Int64Type = SignedLongLong;
118 case SignedLongLong: return "long long int";
132 case SignedLongLong: return "LL";
159 case SignedLongLong:
177 case SignedLongLong:
193 return IsSigned ? SignedLongLong : UnsignedLongLong;
208 return IsSigned ? SignedLongLong : UnsignedLongLong;
246 case SignedLongLong:
260 case SignedLongLong
    [all...]
Targets.cpp 565 this->IntMaxType = TargetInfo::SignedLongLong;
566 this->Int64Type = TargetInfo::SignedLongLong;
715 this->IntMaxType = TargetInfo::SignedLongLong;
716 this->Int64Type = TargetInfo::SignedLongLong;
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 127 SignedLongLong,
247 case SignedLongLong:
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 653 DefineTypeSize("__LONG_LONG_MAX__", TargetInfo::SignedLongLong, TI, Builder);
748 DefineExactWidthIntType(TargetInfo::SignedLongLong, TI, Builder);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 494 milliseconds