Searched defs:identifier (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Constructed.java42 * Tests provided identifier.
44 * @param identifier - identifier to be verified
45 * @return - true if identifier correspond to constructed identifier of
48 public final boolean checkTag(int identifier) { argument
49 return this.constrId == identifier;
H A DASN1Primitive.java38 * Tests provided identifier.
40 * @param identifier identifier to be verified
41 * @return true if identifier correspond to primitive identifier of this
44 public final boolean checkTag(int identifier) { argument
45 return this.id == identifier;
H A DASN1Any.java63 * Tests provided identifier.
65 * @param identifier - identifier to be verified
68 public final boolean checkTag(int identifier) { argument
H A DASN1Implicit.java49 * 1) primitive: only primitive identifier is valid
50 * 2) constructed: only constructed identifier is valid
91 public final boolean checkTag(int identifier) { argument
94 return id == identifier;
96 return constrId == identifier;
98 return id == identifier || constrId == identifier;
110 // substitute identifier for further decoding
125 //FIXME need another way for specifying identifier to be encoded
H A DASN1Choice.java254 // add primitive identifier
259 // add constructed identifier
272 BigInteger identifier = entry.getKey();
274 identifiers[0][i] = identifier.intValue();
281 private void addIdentifier(TreeMap<BigInteger, BigInteger> map, int identifier, int index){ argument
282 if (map.put(BigInteger.valueOf(identifier), BigInteger.valueOf(index)) != null) {
289 * Tests whether one of choice alternatives has the same identifier or not.
291 * @param identifier -
292 * ASN.1 identifier to be verified
293 * @return - true if one of choice alternatives has the same identifier,
296 checkTag(int identifier) argument
[all...]
H A DASN1StringType.java74 * Tests provided identifier.
76 * @param identifier identifier to be verified
77 * @return true if identifier correspond to primitive or constructed
78 * identifier of this ASN.1 string type, otherwise false
80 public final boolean checkTag(int identifier) { argument
81 return this.id == identifier || this.constrId == identifier;
H A DASN1Type.java36 /** Integer representation of primitive identifier. */
39 /** Integer representation of constructed identifier. */
119 * Tests provided identifier.
121 * @param identifier identifier to be verified
122 * @return true if identifier is associated with this ASN.1 type
124 public abstract boolean checkTag(int identifier); argument
/libcore/luni/src/main/java/libcore/reflect/
H A DGenericSignatureParser.java86 char symbol; // 0: eof; else valid term symbol or first char of identifier.
87 String identifier; field in class:GenericSignatureParser
264 String name = identifier.intern(); // FIXME: is this o.k.?
311 qualIdent.append(identifier).append(".");
315 qualIdent.append(this.identifier);
326 qualIdent.append("$").append(identifier); // FIXME: is "$" correct?
385 return new TypeVariableImpl<GenericDeclaration>(genericDecl, identifier);
489 // PRE: symbol is the first char of the identifier.
490 // POST: symbol = the next symbol AFTER the identifier.
503 identifier
[all...]

Completed in 57 milliseconds