Home
last modified time | relevance | path

Searched refs:I (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-q.txt1 Landroid/R$styleable;->ActionBar:[I
2 Landroid/R$styleable;->ActionBar_background:I
3 Landroid/R$styleable;->ActionBar_backgroundSplit:I
4 Landroid/R$styleable;->ActionBar_backgroundStacked:I
5 Landroid/R$styleable;->ActionBar_divider:I
6 Landroid/R$styleable;->ActionBar_itemPadding:I
7 Landroid/R$styleable;->CalendarView:[I
8 Landroid/R$styleable;->CalendarView_dateTextAppearance:I
9 Landroid/R$styleable;->CalendarView_firstDayOfWeek:I
10 Landroid/R$styleable;->CalendarView_focusedMonthDateColor:I
[all …]
Dhiddenapi-max-target-o.txt20 Landroid/accessibilityservice/AccessibilityService$Callbacks;->onFingerprintGesture(I)V
21 Landroid/accessibilityservice/AccessibilityService$Callbacks;->onGesture(I)Z
27 Landroid/accessibilityservice/AccessibilityService$Callbacks;->onSoftKeyboardShowModeChanged(I)V
34 …sibilityService$IAccessibilityServiceClientWrapper;->DO_ACCESSIBILITY_BUTTON_AVAILABILITY_CHANGED:I
35 …service/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_ACCESSIBILITY_BUTTON_CLICKED:I
36 …ityservice/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_CLEAR_ACCESSIBILITY_CACHE:I
37 …ccessibilityservice/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_GESTURE_COMPLETE:I
38 Landroid/accessibilityservice/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_INIT:I
39 …bilityservice/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_ON_ACCESSIBILITY_EVENT:I
40 …ervice/AccessibilityService$IAccessibilityServiceClientWrapper;->DO_ON_FINGERPRINT_ACTIVE_CHANGED:I
[all …]
Dhiddenapi-max-target-p.txt10 Lcom/android/internal/R$styleable;->AndroidManifestActivityAlias:[I
11 Lcom/android/internal/R$styleable;->AndroidManifestGrantUriPermission:[I
12 Lcom/android/internal/R$styleable;->AndroidManifestInstrumentation:[I
13 Lcom/android/internal/R$styleable;->AndroidManifestOriginalPackage:[I
14 Lcom/android/internal/R$styleable;->AndroidManifestPathPermission:[I
15 Lcom/android/internal/R$styleable;->AndroidManifestPermission:[I
16 Lcom/android/internal/R$styleable;->AndroidManifestPermissionGroup:[I
17 Lcom/android/internal/R$styleable;->AndroidManifestPermissionTree:[I
18 Lcom/android/internal/R$styleable;->AndroidManifestProtectedBroadcast:[I
19 Lcom/android/internal/R$styleable;->AndroidManifestSupportsScreens:[I
[all …]
/frameworks/base/services/permission/java/com/android/server/permission/access/immutable/
DIntReferenceMapExtensions.kt19 inline fun <I : Immutable<M>, M : I> IntReferenceMap<I, M>.allIndexed( in <lambda>()
20 predicate: (Int, Int, I) -> Boolean in <lambda>()
30 inline fun <I : Immutable<M>, M : I> IntReferenceMap<I, M>.anyIndexed( in anyIndexed()
31 predicate: (Int, Int, I) -> Boolean in anyIndexed()
41 inline fun <I : Immutable<M>, M : I> IntReferenceMap<I, M>.forEachIndexed( in forEachIndexed()
42 action: (Int, Int, I) -> Unit in forEachIndexed()
49 inline fun <I : Immutable<M>, M : I> IntReferenceMap<I, M>.forEachReversedIndexed( in forEachReversedIndexed()
50 action: (Int, Int, I) -> Unit in forEachReversedIndexed()
57 inline val <I : Immutable<M>, M : I> IntReferenceMap<I, M>.lastIndex: Int
60 inline fun <I : Immutable<M>, M : I> IntReferenceMap<I, M>.noneIndexed( in noneIndexed()
[all …]
DIndexedReferenceMapExtensions.kt19 inline fun <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.allIndexed( in <lambda>()
20 predicate: (Int, K, I) -> Boolean in <lambda>()
30 inline fun <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.anyIndexed( in anyIndexed()
31 predicate: (Int, K, I) -> Boolean in anyIndexed()
41 inline fun <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.forEachIndexed( in forEachIndexed()
42 action: (Int, K, I) -> Unit in forEachIndexed()
49 inline fun <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.forEachReversedIndexed( in forEachReversedIndexed()
50 action: (Int, K, I) -> Unit in forEachReversedIndexed()
57 inline val <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.lastIndex: Int
60 inline fun <K, I : Immutable<M>, M : I> IndexedReferenceMap<K, I, M>.noneIndexed( in noneIndexed()
[all …]
DIntReferenceMap.kt26 sealed class IntReferenceMap<I : Immutable<M>, M : I>(
27 internal val array: SparseArray<MutableReference<I, M>>
28 ) : Immutable<MutableIntReferenceMap<I, M>> {
36 @Suppress("ReplaceGetOrSet") operator fun get(key: Int): I? = array.get(key)?.get() in isEmpty()
42 fun valueAt(index: Int): I = array.valueAt(index).get() in isEmpty()
44 override fun toMutable(): MutableIntReferenceMap<I, M> = MutableIntReferenceMap(this) in isEmpty()
54 class MutableIntReferenceMap<I : Immutable<M>, M : I>( in isEmpty()
55 array: SparseArray<MutableReference<I, M>> = SparseArray() in isEmpty()
56 ) : IntReferenceMap<I, M>(array) { in isEmpty()
58 intReferenceMap: IntReferenceMap<I, M> in isEmpty()
[all …]
DIndexedReferenceMap.kt26 sealed class IndexedReferenceMap<K, I : Immutable<M>, M : I>(
27 internal val map: ArrayMap<K, MutableReference<I, M>>
28 ) : Immutable<MutableIndexedReferenceMap<K, I, M>> {
36 @Suppress("ReplaceGetOrSet") operator fun get(key: K): I? = map.get(key)?.get() in isEmpty()
42 fun valueAt(index: Int): I = map.valueAt(index).get() in isEmpty()
44 override fun toMutable(): MutableIndexedReferenceMap<K, I, M> = MutableIndexedReferenceMap(this) in isEmpty()
54 class MutableIndexedReferenceMap<K, I : Immutable<M>, M : I>( in isEmpty()
55 map: ArrayMap<K, MutableReference<I, M>> = ArrayMap() in isEmpty()
56 ) : IndexedReferenceMap<K, I, M>(map) { in isEmpty()
58 indexedReferenceMap: IndexedReferenceMap<K, I, M> in isEmpty()
[all …]
/frameworks/compile/slang/BitWriter_2_9_func/
DValueEnumerator.cpp38 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
39 I != E; ++I) in ValueEnumerator()
40 EnumerateValue(&*I); in ValueEnumerator()
43 for (llvm::Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { in ValueEnumerator() local
44 EnumerateValue(&*I); in ValueEnumerator()
45 EnumerateAttributes(cast<Function>(I)->getAttributes()); in ValueEnumerator()
49 for (llvm::Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); in ValueEnumerator() local
50 I != E; ++I) in ValueEnumerator()
51 EnumerateValue(&*I); in ValueEnumerator()
57 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
[all …]
/frameworks/compile/slang/BitWriter_2_9/
DValueEnumerator.cpp38 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
39 I != E; ++I) in ValueEnumerator()
40 EnumerateValue(&*I); in ValueEnumerator()
43 for (llvm::Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { in ValueEnumerator() local
44 EnumerateValue(&*I); in ValueEnumerator()
45 EnumerateAttributes(cast<Function>(I)->getAttributes()); in ValueEnumerator()
49 for (llvm::Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); in ValueEnumerator() local
50 I != E; ++I) in ValueEnumerator()
51 EnumerateValue(&*I); in ValueEnumerator()
57 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
[all …]
/frameworks/compile/slang/BitWriter_3_2/
DValueEnumerator.cpp38 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
39 I != E; ++I) in ValueEnumerator()
40 EnumerateValue(&*I); in ValueEnumerator()
43 for (llvm::Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { in ValueEnumerator() local
44 EnumerateValue(&*I); in ValueEnumerator()
45 EnumerateAttributes(cast<Function>(I)->getAttributes()); in ValueEnumerator()
49 for (llvm::Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); in ValueEnumerator() local
50 I != E; ++I) in ValueEnumerator()
51 EnumerateValue(&*I); in ValueEnumerator()
57 for (llvm::Module::const_global_iterator I = M.global_begin(), E = M.global_end(); in ValueEnumerator() local
[all …]
/frameworks/rs/tests/java_api/Refocus/dataExtraction/
DN5.txt5 07-30 19:27:06.356 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
6 07-30 19:27:06.356 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
7 07-30 19:27:06.452 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
8 07-30 19:27:06.452 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
11 07-30 19:27:07.210 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
12 07-30 19:27:07.210 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
13 07-30 19:27:07.378 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
14 07-30 19:27:07.378 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
20 07-30 19:27:09.926 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
21 07-30 19:27:09.926 20903-20903/com.example.xinyiwang.refocus I/art﹕ Starting a blocking GC NativeA…
[all …]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Denumeration.h17 template <std::size_t I, typename T>
20 static constexpr std::size_t Index = I;
37 template <typename T, std::size_t I>
38 static IndexedElement<I, T> SelectElementByType(IndexedElement<I, T>);
42 template <std::size_t I, typename T>
43 static IndexedElement<I, T> SelectElementByIndex(IndexedElement<I, T>);
57 template <std::size_t I, typename... Ts>
58 using ElementForIndex = decltype(detail::SelectElementByIndex<I>(
/frameworks/base/config/
Dboot-profile.txt8 Landroid/text/FontConfig$Font;-><init>(Ljava/lang/String;I[Landroid/graphics/fonts/FontVariationAxi…
9 Landroid/util/ContainerHelpers;->binarySearch([III)I
11 Landroid/util/ArrayMap;->indexOf(Ljava/lang/Object;I)I
16 Landroid/util/ArrayMap;->indexOfKey(Ljava/lang/Object;)I
17 Landroid/util/ArrayMap;->size()I
18 Landroid/util/ArrayMap;->keyAt(I)Ljava/lang/Object;
19 Landroid/util/ArrayMap;->valueAt(I)Ljava/lang/Object;
20 Landroid/util/ArrayMap;->binarySearchHashes([III)I
28 Landroid/text/FontConfig$Font;->getWeight()I
29 Landroid/graphics/fonts/Font$Builder;->setWeight(I)Landroid/graphics/fonts/Font$Builder;
[all …]
/frameworks/base/core/java/com/android/internal/infra/
DServiceConnector.java62 public interface ServiceConnector<I extends IInterface> {
74 boolean run(@NonNull VoidJob<I> job); in run()
98 AndroidFuture<Void> post(@NonNull VoidJob<I> job); in post()
109 <R> AndroidFuture<R> postForResult(@NonNull Job<I, R> job); in postForResult() argument
126 <R> AndroidFuture<R> postAsync(@NonNull Job<I, CompletableFuture<R>> job); in postAsync() argument
139 AndroidFuture<I> connect(); in connect()
157 void setServiceLifecycleCallbacks(@Nullable ServiceLifecycleCallbacks<I> callbacks); in setServiceLifecycleCallbacks()
245 class Impl<I extends IInterface> extends ArrayDeque<Job<I, ?>>
246 implements ServiceConnector<I>, ServiceConnection, IBinder.DeathRecipient, Runnable {
254 private final @NonNull Queue<Job<I, ?>> mQueue = this;
[all …]
/frameworks/native/libs/binder/rust/src/
Dbinder.rs304 pub fn new<I: InterfaceClassMethods>() -> InterfaceClass { in new()
305 let descriptor = CString::new(I::get_descriptor()).unwrap(); in new()
316 Some(I::on_create), in new()
317 Some(I::on_destroy), in new()
318 Some(I::on_transact), in new()
323 sys::AIBinder_Class_setOnDump(class, Some(I::on_dump)); in new()
365 pub struct Strong<I: FromIBinder + ?Sized>(Box<I>);
367 impl<I: FromIBinder + ?Sized> Strong<I> {
369 pub fn new(binder: Box<I>) -> Self { in new()
374 pub fn downgrade(this: &Strong<I>) -> Weak<I> { in downgrade() argument
[all …]
/frameworks/native/cmds/idlcli/
Dvibrator.h49 template <typename I>
51 const auto instance = std::string() + I::descriptor + "/" + name; in getService()
53 return I::fromBinder(vibBinder); in getService()
76 template <typename I>
77 using shared_ptr = std::invoke_result_t<decltype(getService<I>)&, std::string>;
79 template <typename I>
86 auto hal = getService<I>(name.empty() ? "default" : name); in Create()
91 R call(R (I::*fn)(Args0...), Args1&&... args1) { in call()
96 HalWrapper(shared_ptr<I>&& hal) : mHal(std::move(hal)) {} in HalWrapper()
99 shared_ptr<I> mHal;
[all …]
/frameworks/native/libs/binder/include/binder/
DSafeInterface.h165 template <bool isSigned, size_t size, typename I>
167 template <typename I>
168 struct HandleInt<true, 4, I> {
169 static status_t read(const ParcelHandler& handler, const Parcel& parcel, I* i) {
172 static status_t write(const ParcelHandler& handler, Parcel* parcel, I i) {
176 template <typename I>
177 struct HandleInt<false, 4, I> {
178 static status_t read(const ParcelHandler& handler, const Parcel& parcel, I* i) {
181 static status_t write(const ParcelHandler& handler, Parcel* parcel, I i) {
185 template <typename I>
[all …]
DIInterface.h97 static ::android::sp<I##INTERFACE> asInterface(const ::android::sp<::android::IBinder>& obj); \
99 I##INTERFACE(); \
100 virtual ~I##INTERFACE(); \
101 static bool setDefaultImpl(::android::sp<I##INTERFACE> impl); \
102 static const ::android::sp<I##INTERFACE>& getDefaultImpl(); \
105 static ::android::sp<I##INTERFACE> default_impl; \
161 const ::android::StaticString16 I##INTERFACE##_descriptor_static_str16( \
163 const ::android::String16 I##INTERFACE::descriptor(I##INTERFACE##_descriptor_static_str16); \
164 DO_NOT_DIRECTLY_USE_ME_IMPLEMENT_META_INTERFACE0(I##INTERFACE, I##INTERFACE, Bp##INTERFACE)
171 const ::android::String16 PARENT::I##INTERFACE::descriptor(NAME); \
[all …]
/frameworks/base/services/
Dart-profile-boot8 Lcom/android/server/pm/permission/BasePermission;-><init>(Ljava/lang/String;Ljava/lang/String;I)V
9 …sion/BasePermission;->readInt(Lorg/xmlpull/v1/XmlPullParser;Ljava/lang/String;Ljava/lang/String;I)I
13 …$PermissionState;->access$100(Lcom/android/server/pm/permission/PermissionsState$PermissionState;)I
14 Lcom/android/server/pm/permission/PermissionsState;->enforceValidUserId(I)V
15 Lcom/android/server/pm/permission/PermissionsState;->hasPermission(Ljava/lang/String;I)Z
16 Lcom/android/server/pm/permission/PermissionsState$PermissionData;->isGranted(I)Z
17 Lcom/android/server/pm/permission/BasePermission;->computeGids(I)[I
18 Lcom/android/server/pm/permission/PermissionsState;->appendInts([I[I)[I
19 Lcom/android/server/pm/permission/PermissionsState;->computeGids(I)[I
21 Lcom/android/server/pm/permission/PermissionsState$PermissionData;->computeGids(I)[I
[all …]
/frameworks/compile/slang/
Dslang_backend.cpp204 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end(); in CreateCodeGenPasses() local
205 I != E; in CreateCodeGenPasses()
206 I++) in CreateCodeGenPasses()
207 Features.AddFeature(*I); in CreateCodeGenPasses()
308 for (PragmaList::const_iterator I = mPragmas->begin(), E = mPragmas->end(); in HandleTranslationUnit() local
309 I != E; in HandleTranslationUnit()
310 I++) { in HandleTranslationUnit()
313 Pragma.push_back(llvm::MDString::get(mLLVMContext, I->first)); in HandleTranslationUnit()
315 Pragma.push_back(llvm::MDString::get(mLLVMContext, I->second)); in HandleTranslationUnit()
332 for (llvm::Module::iterator I = mpModule->begin(), E = mpModule->end(); in HandleTranslationUnit() local
[all …]
Dslang_rs_reflection_cpp.cpp187 for (auto I = mRSContext->export_foreach_begin(), in genTypeInstancesUsedInForEach() local
189 I != E; I++) { in genTypeInstancesUsedInForEach()
190 const RSExportForEach *EF = *I; in genTypeInstancesUsedInForEach()
209 for (std::set<std::string>::iterator I = mTypesToCheck.begin(), in genFieldsForAllocationTypeVerification() local
211 I != E; I++) { in genFieldsForAllocationTypeVerification()
218 << kRsElemPrefix << *I << ";\n"; in genFieldsForAllocationTypeVerification()
224 for (RSContext::const_export_var_iterator I = mRSContext->export_vars_begin(), in genFieldsToStoreExportVariableValues() local
226 I != E; I++) { in genFieldsToStoreExportVariableValues()
227 const RSExportVar *ev = *I; in genFieldsToStoreExportVariableValues()
250 I = mRSContext->export_foreach_begin(), in genForEachDeclarations() local
[all …]
Dslang_rs_context.cpp189 for (clang::DeclContext::lookup_iterator I = R.begin(), E = R.end(); in processExportType() local
190 I != E; in processExportType()
191 I++) { in processExportType()
192 clang::NamedDecl *const ND = *I; in processExportType()
234 for (auto I = TUDecl->decls_begin(), E = TUDecl->decls_end(); I != E; I++) { in processExports() local
235 clang::Decl* D = *I; in processExports()
314 for (auto I = export_reduce_begin(), E = export_reduce_end(); I != E; ++I) { in processReducePragmas() local
315 if (! (*I)->analyzeTranslationUnit()) in processReducePragmas()
332 for (auto I = export_reduce_begin(), E = export_reduce_end(); I != E; ++I) { in markUsedByReducePragma() local
333 if ((*I)->matchName(FD->getName())) in markUsedByReducePragma()
[all …]
/frameworks/base/services/core/java/com/android/server/audio/
DServiceHolder.java53 public class ServiceHolder<I extends IInterface> implements IBinder.DeathRecipient {
57 private final Function<? super IBinder, ? extends I> mCastFunction;
61 private final AtomicReference<I> mService = new AtomicReference();
62 private final Set<Consumer<I>> mOnStartTasks = ConcurrentHashMap.newKeySet();
63 private final Set<Consumer<I>> mOnDeathTasks = ConcurrentHashMap.newKeySet();
84 @NonNull Function<? super IBinder, ? extends I> castFunction, in ServiceHolder()
114 @NonNull Function<? super IBinder, ? extends I> castFunction, in ServiceHolder()
130 public void registerOnStartTask(Consumer<I> task) { in registerOnStartTask()
132 I i; in registerOnStartTask()
138 public void unregisterOnStartTask(Consumer<I> task) { in unregisterOnStartTask()
[all …]
/frameworks/base/tools/hoststubgen/hoststubgen/test-tiny-framework/
Dpolicy-override-tiny-framework.txt6 method addOne (I)I stub
7 method addOneInner (I)I keep
9 method addTwo (I)I @addTwo_host
10 # method addTwo_host (I)I # used as a substitute
11 method nativeAddThree (I)I @addThree_host
12 # method addThree_host (I)I # used as a substitute
/frameworks/native/include/binder/
DIInterface.h97 static ::android::sp<I##INTERFACE> asInterface(const ::android::sp<::android::IBinder>& obj); \
99 I##INTERFACE(); \
100 virtual ~I##INTERFACE(); \
101 static bool setDefaultImpl(::android::sp<I##INTERFACE> impl); \
102 static const ::android::sp<I##INTERFACE>& getDefaultImpl(); \
105 static ::android::sp<I##INTERFACE> default_impl; \
161 const ::android::StaticString16 I##INTERFACE##_descriptor_static_str16( \
163 const ::android::String16 I##INTERFACE::descriptor(I##INTERFACE##_descriptor_static_str16); \
164 DO_NOT_DIRECTLY_USE_ME_IMPLEMENT_META_INTERFACE0(I##INTERFACE, I##INTERFACE, Bp##INTERFACE)
171 const ::android::String16 PARENT::I##INTERFACE::descriptor(NAME); \
[all …]

12345678910>>...14