Home
last modified time | relevance | path

Searched refs:Pointer (Results 1 – 25 of 37) sorted by relevance

12

/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dpointertest.cpp35 TEST(Pointer, Parse) { in TEST() argument
552 EXPECT_TRUE(Pointer("/foo/0") == Pointer("/foo/0")); in TEST()
553 EXPECT_FALSE(Pointer("/foo/0") == Pointer("/foo/1")); in TEST()
554 EXPECT_FALSE(Pointer("/foo/0") == Pointer("/foo/0/1")); in TEST()
555 EXPECT_FALSE(Pointer("/foo/0") == Pointer("a")); in TEST()
560 EXPECT_FALSE(Pointer("/foo/0") != Pointer("/foo/0")); in TEST()
561 EXPECT_TRUE(Pointer("/foo/0") != Pointer("/foo/1")); in TEST()
562 EXPECT_TRUE(Pointer("/foo/0") != Pointer("/foo/0/1")); in TEST()
563 EXPECT_TRUE(Pointer("/foo/0") != Pointer("a")); in TEST()
858 Pointer("/foo/0").Swap(d, *Pointer("/foo/1").Get(d), a); in TEST()
[all …]
/aosp12/frameworks/native/services/inputflinger/docs/
H A Dpointer_capture.md1 # Pointer Capture in InputFlinger
14 …InputWindow`s can only gain Pointer Capture if they have window focus. If a window with Pointer Ca…
16 ## Pointer Capture pipeline in InputFlinger
18 …le for controlling the state of Pointer Capture. Since the feature requires changes to how events …
22 ### Enabling Pointer Capture
24 There are four key steps that take place when Pointer Capture is enabled:
31 ### Disabling Pointer Capture
35 When Pointer Capture is disabled by a request from the application, it follows the same pipeline as…
37 #### Window loses Pointer Capture when it loses focus
41 ## Pointer Capture in `InputDispatcher`
[all …]
/aosp12/frameworks/base/libs/protoutil/include/android/util/
H A DEncodedBuffer.h49 class Pointer {
51 Pointer();
52 explicit Pointer(size_t chunkSize);
58 Pointer* move(size_t amt);
60 Pointer* rewind();
62 Pointer copy() const;
85 Pointer* wp();
148 Pointer* ep();
206 Pointer mRp;
213 Pointer mWp;
[all …]
/aosp12/frameworks/base/libs/protoutil/src/
H A DEncodedBuffer.cpp30 EncodedBuffer::Pointer::Pointer() : Pointer(BUFFER_SIZE) in Pointer() function in android::util::EncodedBuffer::Pointer
34 EncodedBuffer::Pointer::Pointer(size_t chunkSize) in Pointer() function in android::util::EncodedBuffer::Pointer
59 EncodedBuffer::Pointer*
68 EncodedBuffer::Pointer*
76 EncodedBuffer::Pointer
79 Pointer p = Pointer(mChunkSize); in copy()
96 mWp = Pointer(mChunkSize); in EncodedBuffer()
97 mEp = Pointer(mChunkSize); in EncodedBuffer()
128 EncodedBuffer::Pointer*
275 EncodedBuffer::Pointer*
[all …]
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
H A Dpointer.md1 # Pointer chapter
11 # JSON Pointer {#JsonPointer}
41 Pointer("/project").Set(d, "RapidJSON");
42 Pointer("/stars").Set(d, 10);
47 if (Value* stars = Pointer("/stars").Get(d))
53 Pointer("/a/b/0").Create(d);
64 Pointer("/hello").Swap(d, x);
70 bool success = Pointer("/a").Erase(d);
104 1. `Pointer(source).<Method>(root, ...)`
108 # Resolving Pointer {#ResolvingPointer}
[all …]
H A Dinternals.md51 | `Ch* str` | Pointer to the string (may own) |4 |8 |
58 | `Member* members` | Pointer to array of members (owned) |4 |8 |
65 | `Value* values` | Pointer to array of values (owned) |4 |8 |
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dserializable.h33 template <typename Type, typename Class, Type Class::*Pointer>
34 struct MemberPointer<Type Class::*, Pointer> {
40 static Type& Resolve(Class& instance) { return (instance.*Pointer); }
42 return (instance.*Pointer);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
H A DSensorLoggerSession.java140 proto.pointers = new TouchEvent.Pointer[count]; in motionEventToProto()
142 TouchEvent.Pointer p = new TouchEvent.Pointer(); in motionEventToProto()
/aosp12/build/soong/ui/terminal/
H A Dutil.go32 ioctlGetTermios, uintptr(unsafe.Pointer(&termios)),
48 syscall.TIOCGWINSZ, uintptr(unsafe.Pointer(&winsize)),
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A Dtouch_analytics.proto42 message Pointer { message
55 repeated Pointer pointers = 4;
/aosp12/art/test/1973-jni-id-swap-pointer/
H A Dexpected-stdout.txt4 JNI Type is: Pointer
/aosp12/frameworks/native/include/input/
H A DInputTransport.h149 struct Pointer { struct
161 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS in size()
162 + sizeof(Pointer) * pointerCount; in size()
/aosp12/frameworks/rs/script_api/include/
H A Drs_time.rsh80 * local: Pointer to time structure where the local time will be stored.
83 * Returns: Pointer to the output local time, i.e. the same value as the parameter local.
/aosp12/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp351 case clang::Type::Pointer: { in TypeExportableHelper()
363 if (PointeeType->getTypeClass() == clang::Type::Pointer) { in TypeExportableHelper()
456 if (T->getTypeClass() != clang::Type::Pointer) { in ValidateRSObjectInVarDecl()
596 case clang::Type::Pointer: { in ValidateTypeHelper()
795 case clang::Type::Pointer: { in GetTypeName()
891 case clang::Type::Pointer: { in Create()
1258 if (PointeeType->getTypeClass() != clang::Type::Pointer) { in Create()
H A Dslang_rs_export_element.cpp90 case clang::Type::Pointer: { in Create()
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DSingleTouchInputMapper.cpp49 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[0]; in syncTouch()
H A DTouchInputMapper.h55 struct Pointer { struct
73 Pointer pointers[MAX_POINTERS];
96 inline const Pointer& pointerForId(uint32_t id) const { return pointers[idToIndex[id]]; } in pointerForId()
H A DTouchInputMapper.cpp124 const Pointer& pointer = pointerForId(id); in getCentroidOfTouchingPointers()
1614 const RawPointerData::Pointer& pointer = in cookAndDispatch()
1628 const RawPointerData::Pointer& pointer = in cookAndDispatch()
1823 const RawPointerData::Pointer& pointer = in consumeRawTouches()
2695 const RawPointerData::Pointer& pointer = in preparePointerGestures()
2835 const RawPointerData::Pointer& lastPointer = in preparePointerGestures()
2969 const RawPointerData::Pointer& lastPointer = in preparePointerGestures()
3140 const RawPointerData::Pointer& p1 = in preparePointerGestures()
3142 const RawPointerData::Pointer& p2 = in preparePointerGestures()
3338 const RawPointerData::Pointer& pointer = in preparePointerGestures()
[all …]
/aosp12/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLImplHeader.java-impl81 "Application %s (SDK target %d) called a GL11 Pointer method with an indirect Buffer.",
/aosp12/build/soong/bp2build/
H A Dbzl_conversion.go109 factoryName := runtime.FuncForPC(reflect.ValueOf(factory).Pointer()).Name()
/aosp12/build/blueprint/bootstrap/bpdoc/
H A Dreader.go63 f := runtime.FuncForPC(factory.Pointer())
/aosp12/frameworks/base/core/java/android/view/
H A DPointerIcon.java246 com.android.internal.R.style.LargePointer : com.android.internal.R.style.Pointer; in getSystemIcon()
248 com.android.internal.R.styleable.Pointer, in getSystemIcon()
/aosp12/frameworks/base/libs/protoutil/tests/
H A DEncodedBuffer_test.cpp25 static void expectPointer(EncodedBuffer::Pointer* p, size_t pos) { in expectPointer()
/aosp12/packages/services/Car/cpp/watchdog/server/tests/
H A DWatchdogInternalHandlerTest.cpp55 using ::testing::Pointer;
462 EXPECT_CALL(*mMockIoOveruseMonitor, getResourceOveruseConfigurations(Pointer(&configs))) in TEST_F()
/aosp12/frameworks/native/libs/input/tests/
H A DStructLayout_test.cpp121 sizeof(InputMessage::Body::Motion::Pointer) * MAX_POINTERS); in TestBodySize()

12