Searched refs:identifier (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetObjectLabelKHR.java1 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
3 public static native String glGetObjectLabelKHR(int identifier, int name); argument
H A DglGetObjectLabelKHR.cpp1 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
3 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) { argument
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DUsage.cpp26 status_t Element<audio_usage_t>::setIdentifier(audio_usage_t identifier) argument
28 if (identifier > AUDIO_USAGE_MAX) {
31 mIdentifier = identifier;
32 ALOGD("%s: Usage %s has identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
H A DInputSource.cpp27 status_t Element<audio_source_t>::setIdentifier(audio_source_t identifier) argument
29 if (identifier > AUDIO_SOURCE_MAX && identifier != AUDIO_SOURCE_HOTWORD) {
32 mIdentifier = identifier;
33 ALOGD("%s: InputSource %s identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
H A DStrategy.cpp28 status_t Element<routing_strategy>::setIdentifier(routing_strategy identifier) argument
30 if (identifier >= NUM_STRATEGIES) {
33 mIdentifier = identifier;
34 ALOGD("%s: Strategy %s identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
H A DElement.h40 * Returns identifier of this policy element
47 * Set the unique identifier for this policy element.
49 * @tparam Key type of the unique identifier.
50 * @param[in] identifier to be set.
52 * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
54 status_t setIdentifier(Key identifier) argument
56 mIdentifier = identifier;
61 * @return the unique identifier of this policy element.
H A DInputSource.h41 * Returns identifier of this policy element
48 * Set the unique identifier for this policy element.
50 * @tparam Key type of the unique identifier.
51 * @param[in] identifier to be set.
53 * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
55 status_t setIdentifier(audio_source_t identifier);
58 * @return the unique identifier of this policy element.
H A DStrategy.h41 * Returns identifier of this policy element
48 * Set the unique identifier for this policy element.
50 * @tparam Key type of the unique identifier.
51 * @param[in] identifier to be set.
53 * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
55 status_t setIdentifier(routing_strategy identifier);
58 * @return the unique identifier of this policy element.
H A DStream.cpp29 status_t Element<audio_stream_type_t>::setIdentifier(audio_stream_type_t identifier) argument
31 if (identifier > AUDIO_STREAM_CNT) {
34 mIdentifier = identifier;
35 ALOGD("%s: Stream %s identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
H A DUsage.h41 * Returns identifier of this policy element
48 * Set the unique identifier for this policy element.
50 * @tparam Key type of the unique identifier.
51 * @param[in] identifier to be set.
53 * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
55 status_t setIdentifier(audio_usage_t identifier);
58 * @return the unique identifier of this policy element.
H A DStream.h50 * Returns identifier of this policy element
57 * Set the unique identifier for this policy element.
59 * @tparam Key type of the unique identifier.
60 * @param[in] identifier to be set.
62 * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
64 status_t setIdentifier(audio_stream_type_t identifier);
67 * @return the unique identifier of this policy element.
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationUtils.java28 * An utility function that returns the menu identifier for a particular
32 * @param identifier Menu identifier.
35 public static int getMenuIdentifier(Class cls, String identifier) { argument
38 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.aidl51 String getCurrentKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier);
52 void setCurrentKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier,
54 String[] getKeyboardLayoutsForInputDevice(in InputDeviceIdentifier identifier);
55 void addKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier,
57 void removeKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier,
H A DInputManager.java108 * The <code>android:name</code> attribute specifies an identifier by which
380 * @param identifier Identifier for the input device
385 public String getCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier) { argument
387 return mIm.getCurrentKeyboardLayoutForInputDevice(identifier);
402 * @param identifier The identifier for the input device.
407 public void setCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, argument
409 if (identifier == null) {
410 throw new IllegalArgumentException("identifier must not be null");
417 mIm.setCurrentKeyboardLayoutForInputDevice(identifier,
432 getKeyboardLayoutsForInputDevice(InputDeviceIdentifier identifier) argument
457 addKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
485 removeKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
[all...]
/frameworks/native/services/inputflinger/
H A DEventHub.cpp148 const InputDeviceIdentifier& identifier) :
150 fd(fd), id(id), path(path), identifier(identifier),
254 return device->identifier;
293 axis, device->identifier.name.string(), device->fd, errno);
402 axis, device->identifier.name.string(), device->fd, errno);
571 static String8 generateDescriptor(InputDeviceIdentifier& identifier) { argument
573 rawDescriptor.appendFormat(":%04x:%04x:", identifier.vendor,
574 identifier.product);
576 if (!identifier
147 Device(int fd, int32_t id, const String8& path, const InputDeviceIdentifier& identifier) argument
600 assignDescriptorLocked(InputDeviceIdentifier& identifier) argument
1065 InputDeviceIdentifier identifier; local
1378 InputDeviceIdentifier identifier; local
[all...]
H A DEventHub.h336 const InputDeviceIdentifier identifier; member in struct:android::EventHub::Device
364 Device(int fd, int32_t id, const String8& path, const InputDeviceIdentifier& identifier);
382 void assignDescriptorLocked(InputDeviceIdentifier& identifier);
/frameworks/base/tools/aidl/
H A Daidl_language_l.l36 identifier [_a-zA-Z][_a-zA-Z0-9\.]*
95 {identifier} { SET_BUFFER(IDENTIFIER); return IDENTIFIER; }
96 {identifier}\<{whitespace}*{identifier}({whitespace}*,{whitespace}*{identifier})*{whitespace}*\> {
/frameworks/data-binding/compilerCommon/
H A DBindingExpression.g438 | identifier
46 | identifier # Primary
91 identifier
130 : identifier typeArguments? ('.' Identifier typeArguments? )*
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java995 private String getLayoutDescriptor(InputDeviceIdentifier identifier) { argument
996 if (identifier == null || identifier.getDescriptor() == null) {
997 throw new IllegalArgumentException("identifier and descriptor must not be null");
1000 if (identifier.getVendorId() == 0 && identifier.getProductId() == 0) {
1001 return identifier.getDescriptor();
1004 bob.append("vendor:").append(identifier.getVendorId());
1005 bob.append(",product:").append(identifier.getProductId());
1010 public String getCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier) { argument
1030 setCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1056 getKeyboardLayoutsForInputDevice(InputDeviceIdentifier identifier) argument
1069 addKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1098 removeKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1564 getKeyboardLayoutOverlay(InputDeviceIdentifier identifier) argument
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
H A DLayoutBinderTest.java83 IdentifierExpr id = mExprModel.identifier("user");
98 IdentifierExpr id = mExprModel.identifier("user");
/frameworks/native/libs/input/
H A DInputDevice.cpp146 const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal,
151 mIdentifier = identifier;
145 initialize(int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal, bool hasMic) argument
/frameworks/compile/slang/
H A Dslang_pragma_recorder.cpp32 else if (Token.is(clang::tok::identifier))
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec8 void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
9 void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
/frameworks/data-binding/compiler/src/test/java/android/databinding/
H A DBindingExpressionParserTest.java161 assertEquals("abcdEfg", primary.identifier().getText());
233 assertEquals("one", ((PrimaryContext) left.expression()).identifier().getText());
240 assertEquals("one", ((PrimaryContext) expression.left).identifier().getText());
241 assertEquals("two", ((PrimaryContext) expression.right).identifier().getText());
/frameworks/native/include/input/
H A DInputDevice.h76 const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal,
147 * The device identifier is used to construct several default configuration file

Completed in 435 milliseconds

12