Home
last modified time | relevance | path

Searched refs:newPosition (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/flutter/packages/flutter/test/gestures/
Dpointer_router_test.dart187 const Offset newPosition = Offset(20, 40);
188 router.route(pointer1.move(newPosition));
191 expect(events.single.position, newPosition);
192 expect(events.single.delta, newPosition - firstPosition);
197 expect(globalEvents.single.position, newPosition);
198 expect(globalEvents.single.delta, newPosition - firstPosition);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dtext_handler.h177 void setPosition(const spv_position_t& newPosition) { in setPosition() argument
178 current_position_ = newPosition; in setPosition()
/third_party/skia/third_party/externals/spirv-tools/source/
Dtext_handler.h177 void setPosition(const spv_position_t& newPosition) { in setPosition() argument
178 current_position_ = newPosition; in setPosition()
/third_party/spirv-tools/source/
Dtext_handler.h177 void setPosition(const spv_position_t& newPosition) { in setPosition() argument
178 current_position_ = newPosition; in setPosition()
/third_party/flutter/skia/third_party/externals/spirv-tools/source/
Dtext_handler.h170 void setPosition(const spv_position_t& newPosition) { in setPosition() argument
171 current_position_ = newPosition; in setPosition()
/third_party/flutter/skia/third_party/externals/sdl/src/core/android/
DSDL_android.c1135 Sint64 newPosition; in Android_JNI_FileSeek() local
1140 newPosition = offset; in Android_JNI_FileSeek()
1143 newPosition = ctx->hidden.androidio.position + offset; in Android_JNI_FileSeek()
1146 newPosition = ctx->hidden.androidio.size + offset; in Android_JNI_FileSeek()
1153 if (newPosition < 0) { in Android_JNI_FileSeek()
1156 if (newPosition > ctx->hidden.androidio.size) { in Android_JNI_FileSeek()
1157 newPosition = ctx->hidden.androidio.size; in Android_JNI_FileSeek()
1160 movement = newPosition - ctx->hidden.androidio.position; in Android_JNI_FileSeek()
1185 Android_JNI_FileSeek(ctx, newPosition, RW_SEEK_SET); in Android_JNI_FileSeek()
/third_party/flutter/flutter/dev/manual_tests/lib/
Ddrag_and_drop.dart233 void moveBall(int newPosition) {
234 setState(() { position = newPosition; });
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java1487 int newPosition = Utf8.encode(value, buffer, position, spaceLeft()); in writeStringNoTag() local
1491 int length = newPosition - oldPosition - minLengthVarIntSize; in writeStringNoTag()
1493 position = newPosition; in writeStringNoTag()
2628 int newPosition = Utf8.encode(value, buffer, position, limit - position); in writeStringNoTag() local
2632 int length = newPosition - oldPosition - minLengthVarIntSize; in writeStringNoTag()
2634 position = newPosition; in writeStringNoTag()
2943 int newPosition = Utf8.encode(value, buffer, position, limit - position); in writeStringNoTag() local
2947 length = newPosition - oldPosition - minLengthVarIntSize; in writeStringNoTag()
2949 position = newPosition; in writeStringNoTag()
/third_party/typescript/src/server/
Dsession.ts592 const newPosition = getMappedLocation(documentSpanLocation(documentSpan), project); constant
593 if (!newPosition) return undefined;
595 fileName: newPosition.fileName,
597 start: newPosition.pos,
/third_party/typescript/lib/
Dtsserver.js159448 var newPosition = getMappedLocation(documentSpanLocation(documentSpan), project);
159449 if (!newPosition)
159452 fileName: newPosition.fileName,
159454 start: newPosition.pos,
Dtsserverlibrary.js159642 var newPosition = getMappedLocation(documentSpanLocation(documentSpan), project);
159643 if (!newPosition)
159646 fileName: newPosition.fileName,
159648 start: newPosition.pos,