HomeSort by relevance Sort by last modified time
    Searched defs:callTypes (Results 1 - 4 of 4) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java 56 public int[] callTypes;
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogListItemHelperTest.java 133 int[] callTypes = new int[] {AppCompatConstants.CALLS_INCOMING_TYPE};
135 mHelper.getCallDescriptionStringID(callTypes, true));
142 int[] callTypes = new int[] {AppCompatConstants.CALLS_MISSED_TYPE};
144 mHelper.getCallDescriptionStringID(callTypes, true));
153 int[] callTypes = new int[] {AppCompatConstants.CALLS_OUTGOING_TYPE};
155 mHelper.getCallDescriptionStringID(callTypes, true));
164 int[] callTypes = new int[] {
169 mHelper.getCallDescriptionStringID(callTypes, true));
177 int[] callTypes = new int[] {AppCompatConstants.CALLS_VOICEMAIL_TYPE};
179 mHelper.getCallDescriptionStringID(callTypes, true))
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 652 std::vector<Type *> callTypes;
653 callTypes.push_back(aType);
654 callTypes.push_back(aType);
655 callTypes.push_back(aType);
656 callTypes.push_back(aType);
657 FunctionType *funcType = FunctionType::get(aType, callTypes, false);
813 std::vector<Type *> callTypes;
814 callTypes.push_back(aType);
815 callTypes.push_back(aType);
816 callTypes.push_back(aType)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java 531 details.callTypes = getCallTypes(c, count);
587 if (details.callTypes[0] == CallLog.Calls.VOICEMAIL_TYPE ||
588 details.callTypes[0] == CallLog.Calls.MISSED_TYPE) {
782 int[] callTypes = new int[count];
784 callTypes[index] = cursor.getInt(CallLogQuery.CALL_TYPE);
788 return callTypes;
    [all...]

Completed in 591 milliseconds