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

1234567891011>>

/external/javassist/src/main/javassist/compiler/ast/
H A DSymbol.java24 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/
H A DEllipticCurve.java55 public final int identifier; field in class:EllipticCurve
57 private EllipticCurve(int identifier, String name) { argument
58 this.identifier = identifier;
61 public static EllipticCurve fromIdentifier(int identifier) { argument
63 if (curve.identifier == identifier) {
67 throw new AssertionError("Unknown curve identifier " + identifier);
73 sb.append(identifier);
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java10 public DERObjectIdentifier(String identifier) argument
12 super(identifier);
H A DASN1ObjectIdentifier.java17 private final String identifier; field in class:ASN1ObjectIdentifier
50 throw new IllegalArgumentException("failed to construct object identifier from byte[]: " + e.getMessage());
160 * Intern the identifier so there aren't hundreds of duplicates
163 this.identifier = objId.toString().intern();
171 * @param identifier a string representation of an OID.
174 String identifier)
176 if (identifier == null)
178 throw new IllegalArgumentException("'identifier' cannot be null");
180 if (!isValidIdentifier(identifier))
182 throw new IllegalArgumentException("string " + identifier
173 ASN1ObjectIdentifier( String identifier) argument
408 isValidIdentifier( String identifier) argument
[all...]
/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D059-token-pasting-integer.c4 paste(identifier,2)
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp31 Token::Token (const char* identifier) argument
34 m_arg.identifier = deStrdup(identifier);
35 if (!m_arg.identifier)
42 deFree(m_arg.identifier);
49 deFree(m_arg.identifier);
50 m_arg.identifier = DE_NULL;
57 m_arg.identifier = deStrdup(other.m_arg.identifier);
58 if (!m_arg.identifier)
[all...]
/external/google-breakpad/src/common/mac/
H A Dfile_id.h30 // 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[1
[all...]
H A Dfile_id.cc30 // file_id.cc: Return a unique identifier for a file
51 bool FileID::FileIdentifier(unsigned char identifier[16]) { argument
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], argument
89 int hi = (identifier[idx] >> 4) & 0x0F;
90 int lo = (identifier[idx]) & 0x0F;
73 MachoIdentifier(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char identifier[16]) argument
/external/javassist/src/main/javassist/tools/rmi/
H A DSample.java27 public Object forward(Object[] args, int identifier) { argument
28 return importer.call(objectId, identifier, args);
31 public static Object forwardStatic(Object[] args, int identifier) argument
/external/deqp/modules/gles2/scripts/
H A Dgen-keywords.py53 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/
H A Dgen-keywords.py54 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/google-breakpad/src/common/linux/
H A Dfile_id.h30 // 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[kMDGUIDSiz
[all...]
H A Dfile_id.cc30 // file_id.cc: Return a unique identifier for a file
61 uint8_t identifier[kMDGUIDSize]) {
83 my_memset(identifier, 0, kMDGUIDSize);
84 memcpy(identifier, build_id,
91 // and copy as many bytes of it as will fit into |identifier|.
93 uint8_t identifier[kMDGUIDSize]) {
108 identifier);
111 identifier);
118 // a simple hash by XORing the first page worth of bytes into |identifier|.
120 uint8_t identifier[kMDGUIDSiz
60 ElfClassBuildIDNoteIdentifier(const void *section, size_t length, uint8_t identifier[kMDGUIDSize]) argument
92 FindElfBuildIDNote(const void *elf_mapped_base, uint8_t identifier[kMDGUIDSize]) argument
119 HashElfTextSection(const void *elf_mapped_base, uint8_t identifier[kMDGUIDSize]) argument
141 ElfFileIdentifierFromMappedFile(const void* base, uint8_t identifier[kMDGUIDSize]) argument
151 ElfFileIdentifier(uint8_t identifier[kMDGUIDSize]) argument
160 ConvertIdentifierToString(const uint8_t identifier[kMDGUIDSize], char* buffer, int buffer_length) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DT.g16 /* With this true, enum is seen as a keyword. False, it's an identifier */
24 stat: identifier {NSLog(@"enum is an ID");}
28 identifier
/external/google-breakpad/src/common/solaris/
H A Dfile_id.h30 // 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/javassist/src/main/javassist/tools/reflect/
H A DSample.java25 public Object trap(Object[] args, int identifier) throws Throwable { argument
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier) argument
37 return _classobject.trapMethodcall(identifier, args);
H A DMetaobject.java120 * by <code>identifier</code>.
122 public final String getMethodName(int identifier) { argument
123 String mname = methods[identifier].getName();
137 * by <code>identifier</code>.
139 public final Class[] getParameterTypes(int identifier) { argument
140 return methods[identifier].getParameterTypes();
145 * return type of the method specified by <code>identifier</code>.
147 public final Class getReturnType(int identifier) { argument
148 return methods[identifier].getReturnType();
223 public Object trapMethodcall(int identifier, Objec argument
[all...]
/external/clang/test/Sema/
H A Ddecl-invalid.c13 expected-error{{expected identifier or '('}}
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
H A DMockMethodDispatcher.java16 public static MockMethodDispatcher get(String identifier, Object mock) { argument
20 return INSTANCE.get(identifier);
24 public static void set(String identifier, MockMethodDispatcher dispatcher) { argument
25 INSTANCE.putIfAbsent(identifier, dispatcher);
/external/toolchain-utils/bestflags/
H A Dpipeline_worker.py33 the identifier of the task. The value of the dictionary is the results of
61 # The identifier of this task.
62 identifier = task.GetIdentifier(stage)
68 if identifier in done_dict:
71 task.SetResult(stage, done_dict[identifier])
111 (identifier, result) = completed_queue.get()
112 done_dict[identifier] = result
114 tasks = [t for t in waiting_list if t.GetIdentifier(stage) == identifier]
/external/mesa3d/src/compiler/glsl/
H A Dhir_field_selection.cpp52 expr->primary_expression.identifier);
57 expr->primary_expression.identifier);
62 expr->primary_expression.identifier,
72 expr->primary_expression.identifier);
77 expr->primary_expression.identifier);
/external/clang/unittests/Lex/
H A DLexerTest.cpp121 ExpectedTokens.push_back(tok::identifier);
123 ExpectedTokens.push_back(tok::identifier);
135 ExpectedTokens.push_back(tok::identifier);
136 ExpectedTokens.push_back(tok::identifier);
147 ExpectedTokens.push_back(tok::identifier);
148 ExpectedTokens.push_back(tok::identifier);
149 ExpectedTokens.push_back(tok::identifier);
160 ExpectedTokens.push_back(tok::identifier);
161 ExpectedTokens.push_back(tok::identifier);
162 ExpectedTokens.push_back(tok::identifier);
[all...]
/external/javassist/sample/duplicate/
H A DDuplicatedObject.java29 public Object trapMethodcall(int identifier, Object[] args) argument
32 Object obj = super.trapMethodcall(identifier, args);
34 backup.trapMethodcall(identifier, args);
/external/javassist/sample/reflect/
H A DVerboseMetaobj.java21 public Object trapMethodcall(int identifier, Object[] args) argument
23 System.out.println("** trap: " + getMethodName(identifier) + "() in "
25 return super.trapMethodcall(identifier, args);
/external/autotest/client/cros/
H A Dtpm_store.py47 def _install_object(self, pem, identifier, conversion_type, output_type):
51 @param identifier string associated with the new object.
69 identifier))
89 def install_certificate(self, certificate, identifier):
93 @param identifier string associated with this certificate in the TPM.
97 identifier,
102 def install_private_key(self, key, identifier):
106 @param identifier string associated with this private key in the TPM.
110 identifier,

Completed in 519 milliseconds

1234567891011>>