HomeSort by relevance Sort by last modified time
    Searched refs:identifier (Results 1 - 25 of 936) 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/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/mesa3d/src/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);
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 28 * 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) {
38 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
  /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/chromium-trace/catapult/third_party/closure_linter/closure_linter/
closurizednamespacesinfo.py 44 def __init__(self, namespace, identifier, token, alias_definition):
48 namespace: the namespace of an identifier used in the file
49 identifier: the complete identifier
55 self.identifier = identifier
110 # A list of tuples where the first element is the namespace of an identifier
111 # created in the file, the second is the identifier itself and the third is
212 namespace == ns.namespace or namespace == ns.identifier)):
226 for namespace, identifier, line_number in self._created_namespaces
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
aclhelpers.py 70 self.identifier = ''
78 self.scope_type, self.perm, self.identifier)
113 self.identifier = scope_string
116 self.identifier = scope_string
123 self.identifier = scope_string
139 if self.scope_type in self.public_scopes and self.identifier:
142 if self.scope_type in self.id_scopes and not self.identifier:
145 if self.scope_type in self.email_scopes and not self.identifier:
148 if self.scope_type in self.domain_scopes and not self.identifier:
168 entry.entityId and self.identifier == entry.entityId)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
route53 75 def _add_del(conn, hosted_zone_id, change, name, type, identifier, weight, values, ttl, comment):
79 identifier=identifier, weight=weight)
84 def _add_del_alias(conn, hosted_zone_id, change, name, type, identifier, weight, alias_hosted_zone_id, alias_dns_name, comment):
88 identifier=identifier, weight=weight)
93 identifier=None, weight=None, comment=""):
94 """Add a new record to a zone. identifier and weight are optional."""
95 _add_del(conn, hosted_zone_id, "CREATE", name, type, identifier,
99 identifier=None, weight=None, comment="")
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
zone.py 62 def _new_record(self, changes, resource_type, name, value, ttl, identifier,
82 :type identifier: tuple
83 :param identifier: A tuple for setting WRR or LBR attributes. Valid
94 if identifier is not None:
96 int(identifier[1])
97 weight = identifier[1]
98 identifier = identifier[0]
100 region = identifier[1]
101 identifier = identifier[0
    [all...]
  /external/clang/test/Sema/
decl-invalid.c 13 expected-error{{expected identifier or '('}}

Completed in 2332 milliseconds

1 2 3 4 5 6 7 8 91011>>