Searched refs:sources (Results 1 - 25 of 36) sorted by last modified time

12

/frameworks/support/v8/renderscript/jni/
H A DAndroid.mk17 rs_generated_include_dir := $(call generated-sources-dir-for,SHARED_LIBRARIES,libRSSupport,,)
/frameworks/support/v8/renderscript/rs_support/
H A DAndroid.mk45 generated_sources_dir := $(call local-generated-sources-dir)
/frameworks/webview/chromium/
H A Dpackage.mk23 # Some branches don't have the chromium sources; they shouldn't depend on
25 $(warning Chromium sources missing, skipping webview package build)
27 # Chromium sources exist, build the package.
/frameworks/rs/
H A DAndroid.mk97 generated_sources:= $(local-generated-sources-dir)
197 intermediates := $(call local-generated-sources-dir)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java1403 String sources[] = {"{0}", "{1}", "{2}"};
1456 return TextUtils.replace(template, sources, destinations);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneMmiCode.java1188 String sources[] = {"{0}", "{1}", "{2}"};
1240 return TextUtils.replace(template, sources, destinations);
/frameworks/native/libs/binder/
H A DAndroid.mk15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
44 LOCAL_SRC_FILES := $(sources)
56 LOCAL_SRC_FILES := $(sources)
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h125 typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);
137 GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp13630 GLuint GLTrace_glGetDebugMessageLogKHR(GLuint count, GLsizei bufSize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog) { argument
13648 // copy argument sources
13652 arg_sources->add_int64value((uintptr_t)sources);
13687 GLuint retValue = glContext->hooks->gl.glGetDebugMessageLogKHR(count, bufSize, sources, types, ids, severities, lengths, messageLog);
13698 (void *) sources,
[all...]
H A Dgltrace_api.h345 GLuint GLTrace_glGetDebugMessageLogKHR(GLuint count, GLsizei bufSize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec5 GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLogKHR.java1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
3 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/native/services/inputflinger/
H A DInputReader.cpp153 static inline bool sourcesMatchMask(uint32_t sources, uint32_t sourceMask) { argument
154 return (sources & sourceMask & ~ AINPUT_SOURCE_CLASS_MASK) != 0;
378 ALOGI("Device added: id=%d, name='%s', sources=0x%08x", deviceId,
402 ALOGI("Device removed: id=%d, name='%s', sources=0x%08x",
2786 // Configure device sources, surface dimensions, orientation and
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp803 FakeInputMapper(InputDevice* device, uint32_t sources) : argument
805 mSources(sources), mKeyboardType(AINPUT_KEYBOARD_TYPE_NONE),
1008 const String8& name, uint32_t classes, uint32_t sources,
1011 FakeInputMapper* mapper = new FakeInputMapper(device, sources);
1057 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1061 << "Should return value provided by mapper when device id is valid and the device supports some of the sources.";
1065 << "Should return unknown when the device id is < 0 but the sources are not supported by any device.";
1069 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1084 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1088 << "Should return value provided by mapper when device id is valid and the device supports some of the sources
1007 addDeviceWithFakeInputMapper(int32_t deviceId, int32_t controllerNumber, const String8& name, uint32_t classes, uint32_t sources, const PropertyMap* configuration) argument
[all...]
/frameworks/compile/slang/
H A DAndroid.mk175 intermediates := $(call local-generated-sources-dir)
/frameworks/base/tools/split-select/
H A DAndroid.mk27 sources := \ macro
78 LOCAL_SRC_FILES := $(sources)
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java303 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
308 int[] sources,
321 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
325 java.nio.IntBuffer sources,
332 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
336 int[] sources,
345 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
349 java.nio.IntBuffer sources,
305 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
323 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
334 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
347 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/base/services/
H A DAndroid.mk46 # include all the jni subdirs to collect their sources
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7272 final int sources = device.getSources();
7278 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
7286 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
7289 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java281 public void processMulti(TextureSource[] sources, RenderTarget target, int width, int height) { argument
284 checkTexCount(sources.length);
287 bindInputTextures(sources);
610 private void bindInputTextures(TextureSource[] sources) { argument
611 for (int i = 0; i < sources.length; ++i) {
616 sources[i].bind();
623 throw new RuntimeException("Shader does not seem to support " + sources.length
/frameworks/base/media/java/android/media/
H A DAudioManager.java3521 * @param sources List of source audio ports. All must be AudioPort.ROLE_SOURCE.
3536 AudioPortConfig[] sources,
3538 return AudioSystem.createAudioPatch(patch, sources, sinks);
3665 for (int j = 0; j < newPatches.get(i).sources().length; j++) {
3666 AudioPortConfig portCfg = updatePortConfig(newPatches.get(i).sources()[j],
3668 newPatches.get(i).sources()[j] = portCfg;
3679 for (AudioPortConfig portCfg : newPatch.sources()) {
3535 createAudioPatch(AudioPatch[] patch, AudioPortConfig[] sources, AudioPortConfig[] sinks) argument
H A DAudioPatch.java21 * An AudioPatch describes a connection between audio sources and audio sinks.
36 AudioPatch(AudioHandle patchHandle, AudioPortConfig[] sources, AudioPortConfig[] sinks) { argument
38 mSources = sources;
43 * Retrieve the list of sources of this audio patch.
45 public AudioPortConfig[] sources() { method in class:AudioPatch
H A DAudioSystem.java561 AudioPortConfig[] sources, AudioPortConfig[] sinks);
560 createAudioPatch(AudioPatch[] patch, AudioPortConfig[] sources, AudioPortConfig[] sinks) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp206 std::vector<const GLFrame*> sources; local
207 sources.push_back(frame);
208 GetIdentity()->Process(sources, this);
377 std::vector<const GLFrame*> sources; local
378 sources.push_back(this);
385 GetIdentity()->Process(sources, &target);
/frameworks/base/core/java/android/text/
H A DTextUtils.java844 String[] sources,
848 for (int i = 0; i < sources.length; i++) {
849 int where = indexOf(tb, sources[i]);
852 tb.setSpan(sources[i], where, where + sources[i].length(),
856 for (int i = 0; i < sources.length; i++) {
857 int start = tb.getSpanStart(sources[i]);
858 int end = tb.getSpanEnd(sources[i]);
843 replace(CharSequence template, String[] sources, CharSequence[] destinations) argument

Completed in 2653 milliseconds

12