HomeSort by relevance Sort by last modified time
    Searched refs:CallType (Results 1 - 25 of 55) sorted by null

1 2 3

  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
CallType.kt 19 enum class CallType {
TransactionMethod.kt 21 class TransactionMethod(val element: ExecutableElement, val name: String, val callType: CallType) {
22 enum class CallType {
FieldSetter.kt 23 data class FieldSetter(val name: String, val type: TypeMirror, val callType: CallType) {
25 val stmt = when (callType) {
26 CallType.FIELD -> "$L.$L = $L"
27 CallType.METHOD -> "$L.$L($L)"
28 CallType.CONSTRUCTOR -> null
FieldGetter.kt 25 data class FieldGetter(val name: String, val type: TypeMirror, val callType: CallType) {
27 val stmt = when (callType) {
28 CallType.FIELD -> "final $T $L = $L.$L"
29 CallType.METHOD -> "final $T $L = $L.$L()"
30 CallType.CONSTRUCTOR -> null
  /external/tensorflow/tensorflow/core/debug/
debug_service.proto 54 enum CallType {
60 CallType call_type = 1;
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/
TransactionMethodProcessor.kt 43 val callType = when {
45 TransactionMethod.CallType.DEFAULT_JAVA8
47 TransactionMethod.CallType.DEFAULT_KOTLIN
49 TransactionMethod.CallType.CONCRETE
55 callType = callType)
PojoProcessor.kt 40 import androidx.room.vo.CallType
591 callType = CallType.FIELD)
597 callType = CallType.METHOD)
620 field.setter = FieldSetter(field.name, field.type, CallType.CONSTRUCTOR)
633 callType = CallType.FIELD)
640 callType = CallType.METHOD
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/ui/
CallHistoryFragment.java 40 public static CallHistoryFragment newInstance(@PhoneLoader.CallType int callType) {
43 arg.putInt(CALL_TYPE_KEY, callType);
58 int callType = getArguments().getInt(CALL_TYPE_KEY);
64 if (callType == PhoneLoader.CallType.CALL_TYPE_ALL) {
66 } else if (callType == PhoneLoader.CallType.MISSED_TYPE) {
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
EntityNameMatchingVariationsTest.kt 20 import androidx.room.vo.CallType
72 assertThat(field.setter, `is`(FieldSetter(setterName, intType, CallType.METHOD)))
73 assertThat(field.getter, `is`(FieldGetter(getterName, intType, CallType.METHOD)))
PojoProcessorTest.kt 30 import androidx.room.vo.CallType
651 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType,
652 `is`(CallType.CONSTRUCTOR))
668 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType,
669 `is`(CallType.CONSTRUCTOR))
746 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType,
747 `is`(CallType.CONSTRUCTOR))
748 assertThat(pojo.fields.find { it.name == "mLastName" }?.setter?.callType,
749 `is`(CallType.CONSTRUCTOR))
    [all...]
EntityProcessorTest.kt 22 import androidx.room.vo.CallType
56 assertThat(field.setter, `is`(FieldSetter("setId", intType, CallType.METHOD)))
57 assertThat(field.getter, `is`(FieldGetter("getId", intType, CallType.METHOD)))
178 assertThat(entity.fields.first().getter.callType, `is`(CallType.FIELD))
230 assertThat(entity.fields.first().setter.callType, `is`(CallType.FIELD))
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorSimCallManager.java 59 public @interface CallType {}
91 @NonNull Context context, @NonNull String phoneNumber, @CallType int callType) {
92 return addNewOutgoingCall(context, phoneNumber, callType, new Bundle());
99 @CallType int callType,
110 extras.putAll(createSimulatorConnectionExtras(callType));
116 callType == CALL_TYPE_VIDEO
119 if (callType == CALL_TYPE_RTT) {
135 @NonNull Context context, @NonNull String callerId, @CallType int callType)
    [all...]
  /external/libcxx/test/std/utilities/variant/variant.visit/
visit.pass.cpp 35 enum CallType : unsigned {
43 inline constexpr CallType operator|(CallType LHS, CallType RHS) {
44 return static_cast<CallType>(static_cast<unsigned>(LHS) |
71 template <class... Args> static void set_call(CallType type) {
78 template <class... Args> static bool check_call(CallType type) {
86 static CallType last_call_type;
90 CallType ForwardingCallObject::last_call_type = CT_None;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/variant/variant.visit/
visit.pass.cpp 35 enum CallType : unsigned {
43 inline constexpr CallType operator|(CallType LHS, CallType RHS) {
44 return static_cast<CallType>(static_cast<unsigned>(LHS) |
71 template <class... Args> static void set_call(CallType type) {
78 template <class... Args> static bool check_call(CallType type) {
86 static CallType last_call_type;
90 CallType ForwardingCallObject::last_call_type = CT_None;
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
PhoneLoader.java 52 CallType.CALL_TYPE_ALL,
53 CallType.INCOMING_TYPE,
54 CallType.OUTGOING_TYPE,
55 CallType.MISSED_TYPE,
57 public @interface CallType {
110 private static CursorLoader fetchCallLog(int callType,
122 if (callType > CALL_TYPE_ALL) {
125 selectionArgs.add(Integer.toString(callType));
  /external/deqp/modules/gles2/functional/
es2fDebugMarkerTests.cpp 93 enum CallType
124 const CallType callType = CallType(rnd.getInt(0, CALL_TYPE_LAST-1));
126 if (callType == CALL_TYPE_PUSH_GROUP || callType == CALL_TYPE_INSERT_MARKER)
144 if (callType == CALL_TYPE_PUSH_GROUP)
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
FieldReadWriteWriter.kt 24 import androidx.room.vo.CallType
187 it.field.setter.callType == CallType.CONSTRUCTOR
211 it.field.setter.callType == CallType.CONSTRUCTOR
231 if (setter != null && setter.callType != CallType.CONSTRUCTOR) {
286 val varName = if (field.getter.callType == CallType.FIELD) {
305 when (field.setter.callType) {
    [all...]
DaoWriter.kt 189 addDelegateToSuperStatement(method.element, method.callType, resultVar)
205 callType: TransactionMethod.CallType,
214 when (callType) {
215 TransactionMethod.CallType.CONCRETE -> {
219 TransactionMethod.CallType.DEFAULT_JAVA8 -> {
224 TransactionMethod.CallType.DEFAULT_KOTLIN -> {
  /external/libcxx/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 126 enum CallType : unsigned {
134 inline constexpr CallType operator|(CallType LHS, CallType RHS) {
135 return static_cast<CallType>(static_cast<unsigned>(LHS) | static_cast<unsigned>(RHS));
166 static void set_call(CallType type) {
174 static bool check_call(CallType type) {
184 static CallType last_call_type;
188 CallType ForwardingCallObject::last_call_type = CT_None;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 126 enum CallType : unsigned {
134 inline constexpr CallType operator|(CallType LHS, CallType RHS) {
135 return static_cast<CallType>(static_cast<unsigned>(LHS) | static_cast<unsigned>(RHS));
166 static void set_call(CallType type) {
174 static bool check_call(CallType type) {
184 static CallType last_call_type;
188 CallType ForwardingCallObject::last_call_type = CT_None;
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/verifier/
DatabaseVerifierTest.kt 23 import androidx.room.vo.CallType
249 f.getter = FieldGetter(name, type, CallType.FIELD)
250 f.setter = FieldSetter(name, type, CallType.FIELD)
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
TelecomActivity.java 504 showCallHistory(PhoneLoader.CallType.CALL_TYPE_ALL);
507 showCallHistory(PhoneLoader.CallType.MISSED_TYPE);
522 private void showCallHistory(@PhoneLoader.CallType int callType) {
523 setContentFragment(CallHistoryFragment.newInstance(callType));
542 int callType = currentFragment.getArguments().getInt(CALL_TYPE_KEY);
543 if (callType == PhoneLoader.CallType.MISSED_TYPE) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcasync.h 287 RpcCallType CallType;
308 RpcCallType CallType;
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.h 241 Call::CallType call_type,

Completed in 979 milliseconds

1 2 3