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 46 public int[] callTypes;
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogListItemHelperTest.java 127 int[] callTypes = new int[]{ Calls.INCOMING_TYPE };
129 mHelper.getCallDescriptionStringID(callTypes));
136 int[] callTypes = new int[]{ Calls.MISSED_TYPE };
138 mHelper.getCallDescriptionStringID(callTypes));
145 int[] callTypes = new int[]{ Calls.VOICEMAIL_TYPE };
147 mHelper.getCallDescriptionStringID(callTypes));
156 int[] callTypes = new int[]{ Calls.OUTGOING_TYPE };
158 mHelper.getCallDescriptionStringID(callTypes));
167 int[] callTypes = new int[]{ Calls.OUTGOING_TYPE, Calls.OUTGOING_TYPE };
169 mHelper.getCallDescriptionStringID(callTypes));
    [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 499 details.callTypes = getCallTypes(c, count);
506 if (details.callTypes[0] == CallLog.Calls.VOICEMAIL_TYPE) {
650 int[] callTypes = new int[count];
652 callTypes[index] = cursor.getInt(CallLogQuery.CALL_TYPE);
656 return callTypes;

Completed in 4731 milliseconds