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

1 2 3 4 5

  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1Type.java 25 SEQUENCE,
  /external/libmojo/device/bluetooth/bluez/
bluetooth_service_attribute_value_bluez.cc 22 CHECK_NE(type, SEQUENCE);
26 std::unique_ptr<Sequence> sequence)
27 : type_(SEQUENCE),
28 size_(sequence->size()),
29 sequence_(std::move(sequence)) {}
41 if (attribute.type_ == SEQUENCE) {
43 sequence_ = base::MakeUnique<Sequence>(*attribute.sequence_);
bluetooth_service_attribute_value_bluez.h 20 // fixed types, an attribute can also be of type sequence, which means
25 // will be the string representation of the UUID. For a sequence, it
29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
31 using Sequence = std::vector<BluetoothServiceAttributeValueBlueZ>;
38 std::unique_ptr<Sequence> sequence);
47 const Sequence& sequence() const { return *sequence_.get(); } function in class:bluez::BluetoothServiceAttributeValueBlueZ
54 std::unique_ptr<Sequence> sequence_;
  /tools/apksig/src/main/java/com/android/apksig/internal/pkcs7/
SignerInfo.java 30 @Asn1Class(type = Asn1Type.SEQUENCE)
39 @Asn1Field(index = 2, type = Asn1Type.SEQUENCE)
49 @Asn1Field(index = 4, type = Asn1Type.SEQUENCE)
Attribute.java 28 @Asn1Class(type = Asn1Type.SEQUENCE)
SignedData.java 30 @Asn1Class(type = Asn1Type.SEQUENCE)
39 @Asn1Field(index = 2, type = Asn1Type.SEQUENCE)
AlgorithmIdentifier.java 27 @Asn1Class(type = Asn1Type.SEQUENCE)
ContentInfo.java 28 @Asn1Class(type = Asn1Type.SEQUENCE)
EncapsulatedContentInfo.java 28 @Asn1Class(type = Asn1Type.SEQUENCE)
IssuerAndSerialNumber.java 28 @Asn1Class(type = Asn1Type.SEQUENCE)
SignerIdentifier.java 31 @Asn1Field(type = Asn1Type.SEQUENCE)
  /tools/apksig/src/test/java/com/android/apksig/internal/asn1/
Asn1BerParserTest.java 46 // Empty SEQUENCE (0x3000) followed by garbage (0x12345678)
66 // Empty SEQUENCE (0x3000) followed by garbage (0x12345678)
158 // Empty SEQUENCE
166 // The CHOICE can be either a SEQUENCE, an IMPLICIT SEQUENCE, or an EXPLICIT SEQUENCE
168 // SEQUENCE
174 // IMPLICIT [0] SEQUENCE
180 // EXPLICIT [0] SEQUENCE
225 // Indefinite length SEQUENCE containing an INTEGER whose encoding contains 0x00 0x00 whic
    [all...]
Asn1DerEncoderTest.java 112 encodeToHex(new Sequence(BigInteger.ZERO, "0.0", new byte[0])));
116 encodeToHex(new Sequence(BigInteger.ZERO, null, new byte[0])));
121 encodeToHex(new Sequence(null, "0.0", new byte[0])));
150 @Asn1Class(type = Asn1Type.SEQUENCE)
161 @Asn1Class(type = Asn1Type.SEQUENCE)
172 @Asn1Class(type = Asn1Type.SEQUENCE)
206 @Asn1Class(type = Asn1Type.SEQUENCE)
218 @Asn1Class(type = Asn1Type.SEQUENCE)
219 public static class Sequence {
229 public Sequence(BigInteger num, String oid, byte[] octets)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1StreamParser.java 49 case BERTags.SEQUENCE:
76 case BERTags.SEQUENCE:
88 case BERTags.SEQUENCE:
193 case BERTags.SEQUENCE:
BERSequence.java 7 * Carrier class for an indefinite-length SEQUENCE.
13 * Create an empty sequence
20 * Create a sequence containing one object
29 * Create a sequence containing a vector of objects.
38 * Create a sequence containing an array of objects.
62 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
BERTags.java 13 public static final int SEQUENCE = 0x10;
14 public static final int SEQUENCE_OF = 0x10; // for completeness - used to model a SEQUENCE of the same type.
DERSequence.java 12 * create an empty sequence
19 * create a sequence containing one object
20 * @param obj the object to go in the sequence.
29 * create a sequence containing a vector of objects.
30 * @param v the vector of objects to make up the sequence.
39 * create a sequence containing an array of objects.
40 * @param array the array of objects to make up the sequence.
81 * ASN.1 descriptions given. Rather than just outputting SEQUENCE,
91 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
DLSequence.java 7 * The DLSequence encodes a SEQUENCE using definite length form.
15 * Create an empty sequence
22 * create a sequence containing one object
23 * @param obj the object to go in the sequence.
32 * create a sequence containing a vector of objects.
33 * @param v the vector of objects to make up the sequence.
42 * create a sequence containing an array of objects.
43 * @param array the array of objects to make up the sequence.
84 * ASN.1 descriptions given. Rather than just outputting SEQUENCE,
94 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED)
    [all...]
LazyEncodedSequence.java 102 out.writeEncoded(BERTags.SEQUENCE | BERTags.CONSTRUCTED, encoded);
ASN1TaggedObject.java 135 // tagging. As implicit tagging is ambiguous if a sequence is involved
206 case BERTags.SEQUENCE:
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/
example_test.go 44 // Foo ::= SEQUENCE {
56 if !input.ReadASN1(&inner, asn1.SEQUENCE) ||
72 // Foo ::= SEQUENCE {
82 b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/
example_test.go 44 // Foo ::= SEQUENCE {
56 if !input.ReadASN1(&inner, asn1.SEQUENCE) ||
72 // Foo ::= SEQUENCE {
82 b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Timeline.java 12 * The following example will create an animation sequence composed of 5 parts:
80 * Creates a new timeline with a 'sequence' behavior. Its children will
85 tl.setup(Modes.SEQUENCE);
103 private enum Modes {SEQUENCE, PARALLEL}
176 * Starts a nested timeline with a 'sequence' behavior. Don't forget to
185 tl.mode = Modes.SEQUENCE;
245 case SEQUENCE:
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1SequenceOf.java 32 ImmutableList.of(Asn1Tag.SEQUENCE);
34 protected LinkedList<T> sequence = new LinkedList<T>(); field in class:Asn1SequenceOf
51 sequence.addLast(component);
55 return sequence;
61 return Asn1Tag.SEQUENCE;
70 for (Asn1Object component : sequence) {
77 for (Asn1Object component : sequence) {
107 Preconditions.checkState(sequence.size() >= minimumSize,
110 || sequence.size() <= maximumSize,
115 listBuilder.add(PerAlignedUtils.encodeSemiConstrainedLength(sequence.size()))
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
BerEncoding.java 74 * Tag number: SEQUENCE
93 case SEQUENCE:
149 return "SEQUENCE";

Completed in 357 milliseconds

1 2 3 4 5