Searched refs:identifier (Results 26 - 50 of 54) sorted by relevance

123

/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/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 )
H A DGLES32.spec9 void glObjectLabel ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
10 void glGetObjectLabel ( 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
/frameworks/native/services/inputflinger/
H A DEventHub.h341 const InputDeviceIdentifier identifier; member in struct:android::EventHub::Device
369 Device(int fd, int32_t id, const String8& path, const InputDeviceIdentifier& identifier);
387 void assignDescriptorLocked(InputDeviceIdentifier& identifier);
H A DInputReader.h315 const InputDeviceIdentifier& identifier) = 0;
318 virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier) = 0;
481 const InputDeviceIdentifier& identifier, uint32_t classes);
585 controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes);
H A DInputReader.cpp389 InputDeviceIdentifier identifier = mEventHub->getDeviceIdentifier(deviceId); local
393 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes);
399 identifier.name.string());
402 identifier.name.string(), device->getSources());
442 const InputDeviceIdentifier& identifier, uint32_t classes) {
444 controllerNumber, identifier, classes);
949 int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) :
951 mIdentifier(identifier), mClasses(classes),
441 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
948 InputDevice(InputReaderContext* context, int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
/frameworks/compile/slang/
H A Dslang_rs_pragma_handler.cpp160 while (PragmaToken.is(clang::tok::identifier)) {
275 // The current token must be an identifier in KeywordValueMap
277 if (PragmaToken.isNot(clang::tok::identifier) ||
314 // The current token must be an identifier (a name)
315 if (PragmaToken.isNot(clang::tok::identifier)) {
447 if (PragmaToken.is(clang::tok::identifier))
/frameworks/base/core/java/android/app/
H A DInstrumentation.java755 * @param id The identifier associated with the menu item.
764 private final int identifier;
771 identifier = _identifier;
780 identifier,
795 * @param id The identifier associated with the context menu item.
827 private final int identifier;
834 identifier = _identifier;
841 identifier,
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java368 // C function void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
371 int identifier,
377 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
379 public static native String glGetObjectLabelKHR(int identifier, int name); argument
370 glObjectLabelKHR( int identifier, int name, int length, String label ) argument
H A DGLES32.java374 // C function void glObjectLabel ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
377 int identifier,
383 // C function void glGetObjectLabel ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
385 public static native String glGetObjectLabel(int identifier, int name); argument
376 glObjectLabel( int identifier, int name, int length, String label ) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp216 virtual sp<KeyCharacterMap> getKeyboardLayoutOverlay(const InputDeviceIdentifier& identifier);
217 virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier);
531 const InputDeviceIdentifier& identifier) {
535 ScopedLocalRef<jstring> descriptor(env, env->NewStringUTF(identifier.descriptor.string()));
538 identifier.vendor, identifier.product));
556 String8 NativeInputManager::getDeviceAlias(const InputDeviceIdentifier& identifier) { argument
559 ScopedLocalRef<jstring> uniqueIdObj(env, env->NewStringUTF(identifier.uniqueId.string()));
530 getKeyboardLayoutOverlay( const InputDeviceIdentifier& identifier) argument
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp128 auto identifier = new ::input_device_identifier { local
135 // TODO: store this identifier somewhere
136 return identifier;
/frameworks/rs/api/
H A Drs_value_types.spec52 Multiple entries of a vector can be accessed at once by using an identifier that is
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DLayoutBinder.java267 final IdentifierExpr id = mExprModel.identifier(name);
H A DExpressionVisitor.java196 return mModel.identifier(ctx.getText());
/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetManagerService.java263 * Fetches the stable identifier associated with the given KeySet. Returns
339 /* Checks if an identifier refers to a known keyset */
348 * Returns {@code null} if the identifier doesn't
488 * Finds the stable identifier for a KeySet based on a set of PublicKey stable IDs.
503 * Finds the stable identifier for a PublicKey or PUBLIC_KEY_NOT_FOUND.
518 * Gets an unused stable identifier for a KeySet.
660 serializer.attribute(null, "identifier", Long.toString(id));
673 serializer.attribute(null, "identifier", Long.toString(id));
676 serializer.attribute(null, "identifier", Long.toString(keyId));
753 String encodedID = parser.getAttributeValue(null, "identifier");
[all...]
/frameworks/base/media/java/android/media/
H A DExifInterface.java1877 byte[] identifier = new byte[6];
1878 if (inputStream.read(identifier) != 6) {
1883 if (!Arrays.equals(identifier, IDENTIFIER_EXIF_APP1)) {
1993 byte[] identifier = new byte[6];
1995 if (dataInputStream.read(identifier) != 6) {
1998 if (Arrays.equals(identifier, IDENTIFIER_EXIF_APP1)) {
2012 dataOutputStream.write(identifier);
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionParser.java32 "expressionList", "literal", "identifier", "javaLiteral", "stringLiteral",
214 public IdentifierContext identifier() { method in class:BindingExpressionParser.ConstantValueContext
267 identifier();
434 public IdentifierContext identifier() { method in class:BindingExpressionParser.PrimaryContext
770 identifier();
1323 public final IdentifierContext identifier() throws RecognitionException { method in class:BindingExpressionParser
1778 public IdentifierContext identifier() { method in class:BindingExpressionParser.ClassOrInterfaceTypeContext
1819 identifier();
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp314 InputDeviceIdentifier identifier; member in struct:android::FakeEventHub::Device
349 device->identifier.name = name;
481 return device ? device->identifier : InputDeviceIdentifier();
955 InputDeviceIdentifier identifier; local
956 identifier.name = name;
958 return new InputDevice(&mContext, deviceId, generation, controllerNumber, identifier,
964 const InputDeviceIdentifier& identifier, uint32_t classes) {
970 return InputReader::createDeviceLocked(deviceId, controllerNumber, identifier, classes);
1221 InputDeviceIdentifier identifier; local
1222 identifier
963 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
1408 InputDeviceIdentifier identifier; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31Ext.cpp640 /* void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label ) */
643 (JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) {
654 (GLenum)identifier,
668 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
670 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) { argument
642 android_glObjectLabelKHR__IIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) argument
H A Dandroid_opengl_GLES32.cpp688 /* void glObjectLabel ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label ) */
691 (JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) {
710 (GLenum)identifier,
726 /* void glGetObjectLabel ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
728 android_glGetObjectLabel(JNIEnv *_env, jobject _this, jint identifier, jint name) { argument
690 android_glObjectLabel__IIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) argument
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExprModel.java155 public IdentifierExpr identifier(String name) { method in class:ExprModel
172 * Creates a static identifier for the given class or returns the existing one.
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3937 ALOGW("No package identifier when getting name for resource number 0x%08x", resID);
3946 ALOGW("No type identifier when getting name for resource number 0x%08x", resID);
3952 ALOGW("Bad identifier when getting name for resource number 0x%08x", resID);
4002 ALOGW("No package identifier when getting value for resource number 0x%08x", resID);
4009 ALOGW("No type identifier when getting value for resource number 0x%08x", resID);
4015 ALOGW("Bad identifier when getting value for resource number 0x%08x", resID);
4168 ALOGW("Invalid package identifier when getting bag for resource number 0x%08x", resID);
4172 ALOGW("No type identifier when getting bag for resource number 0x%08x", resID);
4179 ALOGW("Bad identifier when getting bag for resource number 0x%08x", resID);
4185 ALOGW("Type identifier
4643 const uint32_t identifier = findEntry(group, ti, name, nameLen, local
[all...]

Completed in 572 milliseconds

123