HomeSort by relevance Sort by last modified time
    Searched refs:identifier (Results 1 - 25 of 1904) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetObjectLabel.java 1 // C function void glGetObjectLabel ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
3 public static native String glGetObjectLabel(int identifier, int name);
glGetObjectLabelKHR.java 1 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
3 public static native String glGetObjectLabelKHR(int identifier, int name);
glGetObjectLabel.cpp 1 /* void glGetObjectLabel ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
3 android_glGetObjectLabel(JNIEnv *_env, jobject _this, jint identifier, jint name) {
glGetObjectLabelKHR.cpp 1 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
3 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) {
  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 21 * Identifier.
24 protected String identifier; field in class:Symbol
27 identifier = sym;
30 public String get() { return identifier; }
32 public String toString() { return identifier; }
  /external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
EllipticCurve.java 55 public final int identifier; field in class:EllipticCurve
57 private EllipticCurve(int identifier, String name) {
58 this.identifier = identifier;
61 public static EllipticCurve fromIdentifier(int identifier) {
63 if (curve.identifier == identifier) {
67 throw new AssertionError("Unknown curve identifier " + identifier);
73 sb.append(identifier);
    [all...]
  /libcore/support/src/test/java/libcore/tlswire/handshake/
EllipticCurve.java 58 public final int identifier; field in class:EllipticCurve
61 private EllipticCurve(int identifier, String name) {
62 this.identifier = identifier;
66 public static EllipticCurve fromIdentifier(int identifier) {
68 if (curve.identifier == identifier) {
72 throw new AssertionError("Unknown curve identifier " + identifier);
79 sb.append(identifier);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 10 public DERObjectIdentifier(String identifier)
12 super(identifier);
  /external/google-breakpad/src/common/solaris/
file_id.h 30 // file_id.h: Return a unique identifier for a file
46 // Load the identifier for the elf file path specified in the constructor into
47 // |identifier|. Return false if the identifier could not be created for the
50 bool ElfFileIdentifier(unsigned char identifier[16]);
52 // Convert the |identifier| data to a NULL terminated string. The string will
56 static bool ConvertIdentifierToString(const unsigned char identifier[16],
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithIdentifier.java 31 N setIdentifier(String identifier);
37 default N setId(String identifier) {
38 assertNonEmpty(identifier);
39 return setIdentifier(identifier);
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
059-token-pasting-integer.c 4 paste(identifier,2)
  /external/deqp/framework/randomshaders/
rsgToken.cpp 31 Token::Token (const char* identifier)
32 : m_type(IDENTIFIER)
34 m_arg.identifier = deStrdup(identifier);
35 if (!m_arg.identifier)
41 if (m_type == IDENTIFIER)
42 deFree(m_arg.identifier);
47 if (m_type == IDENTIFIER)
49 deFree(m_arg.identifier);
50 m_arg.identifier = DE_NULL
    [all...]
  /external/google-breakpad/src/common/linux/
file_id.h 30 // file_id.h: Return a unique identifier for a file
50 // Load the identifier for the elf file path specified in the constructor into
51 // |identifier|. Return false if the identifier could not be created for the
55 // XORing the first 4096 bytes of the .text section to generate an identifier.
56 bool ElfFileIdentifier(uint8_t identifier[kMDGUIDSize]);
58 // Load the identifier for the elf file mapped into memory at |base| into
59 // |identifier|. Return false if the identifier could not be created for the
62 uint8_t identifier[kMDGUIDSize])
    [all...]
  /external/google-breakpad/src/common/mac/
file_id.h 30 // file_id.h: Return a unique identifier for a file
47 // Load the identifier for the file path specified in the constructor into
48 // |identifier|. Return false if the identifier could not be created for the
51 bool FileIdentifier(unsigned char identifier[16]);
60 // Return the unique identifier in |identifier|.
65 unsigned char identifier[16]);
67 // Convert the |identifier| data to a NULL terminated string. The string will
71 static void ConvertIdentifierToString(const unsigned char identifier[16]
    [all...]
file_id.cc 30 // file_id.cc: Return a unique identifier for a file
51 bool FileID::FileIdentifier(unsigned char identifier[16]) {
68 MD5Final(identifier, &md5);
75 unsigned char identifier[16]) {
78 if (macho.UUIDCommand(cpu_type, cpu_subtype, identifier))
81 return macho.MD5(cpu_type, cpu_subtype, identifier);
85 void FileID::ConvertIdentifierToString(const unsigned char identifier[16],
89 int hi = (identifier[idx] >> 4) & 0x0F;
90 int lo = (identifier[idx]) & 0x0F;
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 27 public Object forward(Object[] args, int identifier) {
28 return importer.call(objectId, identifier, args);
31 public static Object forwardStatic(Object[] args, int identifier)
  /external/deqp/modules/gles2/scripts/
gen-keywords.py 43 float ${{IDENTIFIER}} = 1.0;
53 def __init__(self, name, identifier):
55 self.identifier = identifier
59 "IDENTIFIER" : self.identifier }
103 for (name, identifier) in INVALID_IDENTIFIERS:
104 invalidIdentifiers.append(IdentifierCase(name, identifier)) # Invalid identifiers
  /external/deqp/modules/gles3/scripts/
gen-keywords.py 44 float ${{IDENTIFIER}} = 1.0;
54 def __init__(self, name, identifier):
56 self.identifier = identifier
60 "IDENTIFIER" : self.identifier }
117 for (name, identifier) in INVALID_IDENTIFIERS:
118 invalidIdentifiers.append(IdentifierCase(name, identifier)) # Invalid identifiers
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
T.g 16 /* With this true, enum is seen as a keyword. False, it's an identifier */
24 stat: identifier {NSLog(@"enum is an ID");}
28 identifier
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Usage.cpp 26 status_t Element<audio_usage_t>::setIdentifier(audio_usage_t identifier)
28 if (identifier > AUDIO_USAGE_MAX) {
31 mIdentifier = identifier;
32 ALOGD("%s: Usage %s has identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
InputSource.cpp 27 status_t Element<audio_source_t>::setIdentifier(audio_source_t identifier)
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);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
SimpleName.java 38 * A name that consists of a single identifier.
46 private String identifier; field in class:SimpleName
53 public SimpleName(final String identifier) {
54 this(null, identifier);
61 public SimpleName(TokenRange tokenRange, String identifier) {
63 setIdentifier(identifier);
81 return identifier;
85 public SimpleName setIdentifier(final String identifier) {
86 assertNonEmpty(identifier);
87 if (identifier == this.identifier)
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable {
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier)
37 return _classobject.trapMethodcall(identifier, args);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
MethodReferenceExpr.java 46 private String identifier; field in class:MethodReferenceExpr
53 List<TypeParameter> typeParameters, String identifier) {
56 setIdentifier(identifier);
91 return identifier;
94 public void setIdentifier(String identifier) {
95 this.identifier = identifier;
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
activations.py 130 def get(identifier):
131 if identifier is None:
133 if isinstance(identifier, six.string_types):
134 identifier = str(identifier)
135 return deserialize(identifier)
136 elif callable(identifier):
137 if isinstance(identifier, Layer):
139 'Do not pass a layer instance (such as {identifier}) as the '
142 'layer in a model.'.format(identifier=identifier.__class__.__name__)
    [all...]

Completed in 554 milliseconds

1 2 3 4 5 6 7 8 91011>>