Searched defs:source (Results 451 - 468 of 468) sorted by relevance

<<111213141516171819

/frameworks/base/services/core/java/com/android/server/location/
H A DGpsLocationProvider.java254 public WorkSource source; field in class:GpsLocationProvider.GpsRequest
255 public GpsRequest(ProviderRequest request, WorkSource source) { argument
257 this.source = source;
1093 public void setRequest(ProviderRequest request, WorkSource source) { argument
1094 sendMessage(SET_REQUEST, 0, new GpsRequest(request, source));
1097 private void handleSetRequest(ProviderRequest request, WorkSource source) { argument
1099 mWorkSource = source;
1158 private void updateClientUids(WorkSource source) { argument
1159 // Update work source
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp438 && (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER)
536 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) {
659 entry->deviceId, entry->source, policyFlags,
807 ALOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
811 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
833 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
876 ALOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
881 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
1150 || mTempTouchState.source != entry->source
3887 KeyEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime) argument
3922 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, float xPrecision, float yPrecision, nsecs_t downTime, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords, float xOffset, float yOffset) argument
4003 isHovering(int32_t deviceId, uint32_t source, int32_t displayId) const argument
[all...]
H A DInputReader.cpp176 nsecs_t when, int32_t deviceId, uint32_t source,
186 NotifyKeyArgs args(when, deviceId, source, policyFlags,
193 nsecs_t when, int32_t deviceId, uint32_t source,
195 synthesizeButtonKey(context, action, when, deviceId, source, policyFlags,
198 synthesizeButtonKey(context, action, when, deviceId, source, policyFlags,
896 dump.appendFormat(INDENT3 "%s: source=0x%08x, "
898 name, range.source, range.min, range.max, range.flat, range.fuzz,
1988 uint32_t source, int32_t keyboardType) :
1989 InputMapper(device), mSource(source),
3087 mOrientedRanges.x.source
175 synthesizeButtonKey(InputReaderContext* context, int32_t action, nsecs_t when, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t lastButtonState, int32_t currentButtonState, int32_t buttonState, int32_t keyCode) argument
192 synthesizeButtonKeys(InputReaderContext* context, int32_t action, nsecs_t when, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t lastButtonState, int32_t currentButtonState) argument
1987 KeyboardInputMapper(InputDevice* device, uint32_t source, int32_t keyboardType) argument
5642 dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, const PointerProperties* properties, const PointerCoords* coords, const uint32_t* idToIndex, BitSet32 idBits, int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) argument
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp1341 << "Should return unknown key code state when source not supported.";
1343 << "Should return unknown scan code state when source not supported.";
1345 << "Should return unknown switch state when source not supported.";
1348 << "Should query mapper when source is supported.";
1350 << "Should query mapper when source is supported.";
1352 << "Should query mapper when source is supported.";
1357 << "Should do nothing when source is unsupported.";
1358 ASSERT_EQ(0, flags[0]) << "Flag should be unchanged when source is unsupported.";
1359 ASSERT_EQ(0, flags[1]) << "Flag should be unchanged when source is unsupported.";
1360 ASSERT_EQ(0, flags[2]) << "Flag should be unchanged when source i
1444 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument
1447 ASSERT_TRUE(range != NULL) << "Axis: " << axis << " Source: " << source; local
1448 ASSERT_EQ(axis, range->axis) << "Axis: " << axis << " Source: " << source; local
1449 ASSERT_EQ(source, range->source) << "Axis: " << axis << " Source: " << source; local
1450 ASSERT_NEAR(min, range->min, EPSILON) << "Axis: " << axis << " Source: " << source; local
1451 ASSERT_NEAR(max, range->max, EPSILON) << "Axis: " << axis << " Source: " << source; local
1452 ASSERT_NEAR(flat, range->flat, EPSILON) << "Axis: " << axis << " Source: " << source; local
1453 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; local
[all...]
/frameworks/base/core/java/android/app/
H A DIActivityManager.java509 public ContentProviderHolder createFromParcel(Parcel source) {
510 return new ContentProviderHolder(source);
519 private ContentProviderHolder(Parcel source) { argument
520 info = ProviderInfo.CREATOR.createFromParcel(source);
522 source.readStrongBinder());
523 connection = source.readStrongBinder();
524 noReleaseNeeded = source.readInt() != 0;
556 public WaitResult createFromParcel(Parcel source) {
557 return new WaitResult(source);
566 private WaitResult(Parcel source) { argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2765 public void notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) { argument
2772 mParent.notifySubtreeAccessibilityStateChanged(this, source, changeType);
6448 * Copy constructor. Clones the width and height values of the source.
6450 * @param source The layout params to copy from.
6452 public LayoutParams(LayoutParams source) { argument
6453 this.width = source.width;
6454 this.height = source.height;
6713 * Copy constructor. Clones the width, height and margin values of the source.
6715 * @param source The layout params to copy from.
6717 public MarginLayoutParams(MarginLayoutParams source) { argument
6734 MarginLayoutParams(LayoutParams source) argument
6747 copyMarginsFrom(MarginLayoutParams source) argument
[all...]
H A DViewRootImpl.java3891 final int source = q.mEvent.getSource();
3892 if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3987 final int source = q.mEvent.getSource();
3988 if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3990 } else if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
4172 final int source = event.getSource();
4173 if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
4176 } else if ((source & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
4179 } else if ((source & InputDevice.SOURCE_TOUCH_NAVIGATION)
4198 final int source
6156 postSendWindowContentChangedCallback(View source, int changeType) argument
6273 notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) argument
6944 runOrPost(View source, int changeType) argument
[all...]
H A DView.java5218 * to populate information about the event source (this View), then calls
5220 * populate the text content of the event source including its descendants,
5325 * event not only the text of the source but also the text of all its descendants.
5413 * this View which is the event source. In other words, the source of
6934 * data source, such as an adapter binding item views in a list. This may be
6952 * data source, such as an adapter binding item views in a list. This may be
7557 View source = this;
7559 if (source.includeForAccessibility()) {
7560 source
20154 BaseSavedState(Parcel source) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5477 * What is the distance between the source and destination rectangles given the direction of
5481 * @param source the source rectangle
5486 static int getDistance(Rect source, Rect dest, int direction) { argument
5487 int sX, sY; // source x, y
5491 sX = source.right;
5492 sY = source.top + source.height() / 2;
5497 sX = source.left + source
6292 LayoutParams(ViewGroup.LayoutParams source) argument
[all...]
H A DEditor.java2753 // Notify source IME of the suggestion pick. Do this before
4168 public CharSequence filter(CharSequence source, int start, int end, argument
4171 Log.d(TAG, "filter: source=" + source + " (" + start + "-" + end + ")");
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java18 // This source file is automatically generated
1099 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
1106 byte[] source,
1110 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
1117 byte source
1120 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
1101 glGetShaderSource( int shader, int bufsize, int[] length, int lengthOffset, byte[] source, int sourceOffset ) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2489 // make this child the event source since this is the feature itself
4565 private static SavedState readFromParcel(Parcel source) { argument
4567 savedState.featureId = source.readInt();
4568 savedState.isOpen = source.readInt() == 1;
4569 savedState.isInExpandedMode = source.readInt() == 1;
4572 savedState.menuState = source.readBundle();
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java406 public Spanned fromHtml(String source, ImageGetter imageGetter, TagHandler tagHandler); argument
1857 public Spanned fromHtml(String source) { argument
1858 return Html.fromHtml(source);
1861 public Spanned fromHtml(String source, ImageGetter imageGetter, TagHandler tagHandler) { argument
1862 return Html.fromHtml(source, imageGetter, tagHandler);
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java7415 public LayoutParams(MarginLayoutParams source) { argument
7416 super(source);
7419 public LayoutParams(ViewGroup.LayoutParams source) { argument
7420 super(source);
7423 public LayoutParams(LayoutParams source) { argument
7424 super((ViewGroup.LayoutParams) source);
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp2749 void GLTrace_glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei * length, GLchar * source) { argument
2773 // copy argument source
2777 arg_source->add_int64value((uintptr_t)source);
2782 glContext->hooks->gl.glGetShaderSource(shader, bufSize, length, source);
2788 (void *) source,
13476 void GLTrace_glDebugMessageControlKHR(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled) { argument
13482 // copy argument source
13486 arg_source->add_intvalue((int)source);
13521 glContext->hooks->gl.glDebugMessageControlKHR(source, type, severity, count, ids, enabled);
13535 void GLTrace_glDebugMessageInsertKHR(GLenum source, GLenu argument
13714 GLTrace_glPushDebugGroupKHR(GLenum source, GLuint id, GLsizei length, const GLchar * message) argument
15746 GLTrace_glGetTranslatedShaderSourceANGLE(GLuint shader, GLsizei bufsize, GLsizei * length, GLchar * source) argument
23337 GLTrace_glExtGetProgramBinarySourceQCOM(GLuint program, GLenum shadertype, GLchar * source, GLint * length) argument
[all...]

Completed in 9082 milliseconds

<<111213141516171819