OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numberPresentation
(Results
1 - 14
of
14
) sorted by null
/packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java
30
public final int
numberPresentation
;
68
public PhoneCallDetails(CharSequence number, int
numberPresentation
,
71
this(number,
numberPresentation
, formattedNumber, countryIso, geocode,
76
public PhoneCallDetails(CharSequence number, int
numberPresentation
,
82
this.
numberPresentation
=
numberPresentation
;
CallDetailActivity.java
468
final int
numberPresentation
= firstDetails.
numberPresentation
;
477
PhoneNumberUtilsWrapper.canPlaceCallsTo(mNumber,
numberPresentation
);
553
firstDetails.
numberPresentation
,
574
if (phoneUtils.canSendSmsTo(mNumber,
numberPresentation
)) {
688
final int
numberPresentation
= callCursor.getInt(
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallWaitingNotification.java
30
public int
numberPresentation
= 0;
45
+ "
numberPresentation
: " +
numberPresentation
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java
49
public int
numberPresentation
;
72
ret.
numberPresentation
= PhoneConstants.PRESENTATION_ALLOWED;
115
/*+ "number=" + number */ + ",cli=" +
numberPresentation
+ ","
/frameworks/base/core/java/android/provider/
CallLog.java
308
int
numberPresentation
= PRESENTATION_ALLOWED;
316
numberPresentation
= PRESENTATION_RESTRICTED;
318
numberPresentation
= PRESENTATION_PAYPHONE;
321
numberPresentation
= PRESENTATION_UNKNOWN;
323
if (
numberPresentation
!= PRESENTATION_ALLOWED) {
333
values.put(NUMBER_PRESENTATION, Integer.valueOf(
numberPresentation
));
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java
143
final int
numberPresentation
= mCursor.getInt(NUMBER_PRESENTATION_COLUMN_INDEX);
147
if (
numberPresentation
!= Calls.PRESENTATION_ALLOWED) {
BluetoothPbapVcardManager.java
219
final int
numberPresentation
= callCursor.getInt(
221
if (
numberPresentation
!= Calls.PRESENTATION_ALLOWED) {
/frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java
86
public int
numberPresentation
;
604
.append("\nnumberPresentation: " +
numberPresentation
)
/packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java
122
newCall.
numberPresentation
).toString();
214
public final int
numberPresentation
;
217
int
numberPresentation
) {
221
this.
numberPresentation
=
numberPresentation
;
CallLogFragment.java
364
int
numberPresentation
= cursor.getInt(CallLogQuery.NUMBER_PRESENTATION);
365
if (!PhoneNumberUtilsWrapper.canPlaceCallsTo(number,
numberPresentation
)) {
CallLogAdapter.java
535
final int
numberPresentation
= c.getInt(CallLogQuery.NUMBER_PRESENTATION);
547
if (PhoneNumberUtilsWrapper.canPlaceCallsTo(number,
numberPresentation
)) {
577
if (!PhoneNumberUtilsWrapper.canPlaceCallsTo(number,
numberPresentation
)
622
details = new PhoneCallDetails(number,
numberPresentation
,
626
details = new PhoneCallDetails(number,
numberPresentation
,
651
details.
numberPresentation
, details.formattedNumber).toString();
[
all
...]
/packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java
84
public int
numberPresentation
;
604
.append("\nnumberPresentation: " +
numberPresentation
)
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java
532
int
numberPresentation
= Calls.PRESENTATION_ALLOWED;
534
numberPresentation
= pbr.cursor.getInt(pbr.numberPresentationColumn);
536
if (
numberPresentation
!= Calls.PRESENTATION_ALLOWED) {
/hardware/ril/include/telephony/
ril.h
186
int
numberPresentation
; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
590
int
numberPresentation
; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
597
int
numberPresentation
; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
[
all
...]
Completed in 1717 milliseconds