HomeSort by relevance Sort by last modified time
    Searched defs:tag (Results 301 - 325 of 1167) sorted by null

<<11121314151617181920>>

  /external/ImageMagick/coders/
hdr.c 144 tag[MagickPathExtent],
301 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword);
302 (void) SetImageProperty(image,tag,value,exception);
313 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword);
314 (void) SetImageProperty(image,tag,value,exception);
346 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword);
347 (void) SetImageProperty(image,tag,value,exception);
369 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword);
370 (void) SetImageProperty(image,tag,value,exception);
375 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword)
140 tag[MagickPathExtent], local
    [all...]
ipl.c 73 tag, member in struct:_IPLInfo
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
Attribute.java 68 protected byte tag; // Tag to distinguish subclasses TODO make private & final; supposed to be immutable field in class:Attribute
76 protected Attribute(final byte tag, final int name_index, final int length, final ConstantPool constant_pool)
78 this.tag = tag;
186 byte tag = Const.ATTR_UNKNOWN; // Unknown attribute
200 tag = i; // found!
205 // Call proper constructor, depending on `tag'
206 switch (tag)
266 throw new IllegalStateException("Unrecognized attribute type tag parsed: " + tag)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Field.java 47 private byte tag; field in class:Field
74 * Sets signature and detects type tag from it.
82 tag = JDWPConstants.Tag.ARRAY_TAG;
85 tag = JDWPConstants.Tag.BYTE_TAG;
88 tag = JDWPConstants.Tag.CHAR_TAG;
91 tag = JDWPConstants.Tag.OBJECT_TAG
    [all...]
Value.java 47 return new Value(JDWPConstants.Tag.BYTE_TAG, Byte.valueOf(value));
61 return new Value(JDWPConstants.Tag.SHORT_TAG, Short.valueOf(value));
68 return new Value(JDWPConstants.Tag.INT_TAG, Integer.valueOf(value));
75 return new Value(JDWPConstants.Tag.LONG_TAG, Long.valueOf(value));
82 return new Value(JDWPConstants.Tag.FLOAT_TAG, Float.valueOf(value));
89 return new Value(JDWPConstants.Tag.DOUBLE_TAG, Double.valueOf(value));
96 return new Value(JDWPConstants.Tag.VOID_TAG, Long.valueOf(0));
102 public static Value createObjectValue(byte tag, long value) {
103 if (isPrimitiveTag(tag)) {
104 throw new AssertionError(JDWPConstants.Tag.getName(tag) + " is primitive")
109 private final byte tag; field in class:Value
    [all...]
  /external/autotest/client/bin/
setup_job_unittest.py 80 tag = '' variable in class:test_init_minimal_options.call_init.options
173 options.tag = self.jobtag
  /external/autotest/client/common_lib/hosts/
repair.py 53 '_DependencyFailure', ('dependency', 'error', 'tag'))
128 def __init__(self, description, tag):
131 @param tag A short identifier used for metric purpose.
134 self.tag = tag
145 @property tag Short identifier to be used in logging.
151 def __init__(self, tag, record_type, dependencies):
153 self._tag = tag
154 self._record_tag = record_type + '.' + tag
161 operation tag `self._record_tag`, plus any extra arguments i
245 def tag(self): member in class:_DependencyNode
    [all...]
  /external/boringssl/src/crypto/asn1/
asn1_lib.c 116 int tag, xclass, inf; local
124 if (i == V_ASN1_PRIMITIVE_TAG) { /* high-tag */
139 tag = (int)l;
143 tag = i;
150 if (xclass == V_ASN1_UNIVERSAL && tag > V_ASN1_MAX_UNIVERSAL)
153 *ptag = tag;
222 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
230 if (tag < 31)
231 *(p++) = i | (tag & V_ASN1_PRIMITIVE_TAG);
234 for (i = 0, ttag = tag; ttag > 0; i++
    [all...]
  /external/boringssl/src/crypto/cipher_extra/
cipher_test.cc 158 const std::vector<uint8_t> &tag) {
183 tag.size(),
184 const_cast<uint8_t *>(tag.data())));
206 ASSERT_LE(tag.size(), sizeof(rtag));
208 tag.size(), rtag));
209 EXPECT_EQ(Bytes(tag), Bytes(rtag, tag.size()));
219 std::vector<uint8_t> key, iv, plaintext, ciphertext, aad, tag; local
228 ASSERT_TRUE(t->GetBytes(&tag, "Tag"));
    [all...]
  /external/boringssl/src/crypto/
cpu-arm-linux.c 127 unsigned long tag; member in struct:__anon15427
133 (entry.tag == 0 && entry.value == 0)) {
136 if (entry.tag == type) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 15 protected final int tag; field in class:ASN1ApplicationSpecific
20 int tag,
24 this.tag = tag;
57 int length = data[1] & 0xff; // TODO: assumes 1 byte tag
101 * Return the tag number associated with this object,
103 * @return the application tag number.
107 return tag;
125 * @param derTagNo the type tag that should be applied to the object's contents.
134 throw new IOException("unsupported tag number")
    [all...]
ASN1InputStream.java 126 * build an object given its tag and the number of bytes to construct it from.
128 * @param tag the full tag details.
135 int tag,
140 boolean isConstructed = (tag & CONSTRUCTED) != 0;
144 if ((tag & APPLICATION) != 0)
149 if ((tag & TAGGED) != 0)
186 throw new IOException("unknown tag " + tagNo + " encountered");
216 int tag = read(); local
217 if (tag <= 0
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 17 protected final int tag; field in class:ASN1ApplicationSpecific
22 int tag,
26 this.tag = tag;
59 int length = data[1] & 0xff; // TODO: assumes 1 byte tag
103 * Return the tag number associated with this object,
105 * @return the application tag number.
109 return tag;
127 * @param derTagNo the type tag that should be applied to the object's contents.
136 throw new IOException("unsupported tag number")
    [all...]
ASN1InputStream.java 133 * build an object given its tag and the number of bytes to construct it from.
135 * @param tag the full tag details.
142 int tag,
147 boolean isConstructed = (tag & CONSTRUCTED) != 0;
151 if ((tag & APPLICATION) != 0)
156 if ((tag & TAGGED) != 0)
193 throw new IOException("unknown tag " + tagNo + " encountered");
225 int tag = read(); local
226 if (tag <= 0
    [all...]
ASN1StreamParser.java 60 ASN1Encodable readImplicit(boolean constructed, int tag) throws IOException
69 return readIndef(tag);
74 switch (tag)
86 switch (tag)
100 ASN1Primitive readTaggedObject(boolean constructed, int tag) throws IOException
106 return new DERTaggedObject(false, tag, new DEROctetString(defIn.toByteArray()));
114 ? new BERTaggedObject(true, tag, v.get(0))
115 : new BERTaggedObject(false, tag, BERFactory.createSequence(v));
119 ? new DERTaggedObject(true, tag, v.get(0))
120 : new DERTaggedObject(false, tag, DERFactory.createSequence(v))
126 int tag = _in.read(); local
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 150 int tag = tagged.getTagNo(); local
151 if (tag <= lastTag)
156 lastTag = tag;
158 switch (tag)
  /external/clang/test/CodeGen/
bool-bitfield.c 6 unsigned short tag; member in struct:SysParams
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateLikelySubtagTests.java 59 String tag = ltp.toString(); local
60 if (testedAlready.contains(tag)) {
63 writeTestLine(tag, likelySubtags);
64 testedAlready.add(tag);
  /external/cldr/tools/java/org/unicode/cldr/util/
XChoiceFormat.java 94 String tag = item.substring(0, semiPosition); local
95 conditions[i] = Condition.valueOf(tag.toUpperCase(Locale.ENGLISH));
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
Serialization.java 45 int tag = readByte(input) & DER_TAG_MASK; local
46 if (tag != DER_TAG_OCTET_STRING) {
47 throw new SerializationException("Wrong DER tag, expected OCTET STRING, got " + tag);
  /external/doclava/src/com/google/doclava/
FederationTagger.java 47 * <strong>Note:</strong> Must be called before calling tag() or get() methods.
53 throw new IllegalStateException("Cannot add sites after calling tag() or get() methods.");
61 * <strong>Note:</strong> Must be called before calling tag() or get() methods.
69 throw new IllegalStateException("Cannot add sites after calling tag() or get() methods.");
74 public void tag(ClassInfo classDoc) { method in class:FederationTagger
  /external/dtc/libfdt/
fdt.h 82 fdt32_t tag; member in struct:fdt_node_header
87 fdt32_t tag; member in struct:fdt_property
fdt_sw.c 181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
238 prop->tag = cpu_to_fdt32(FDT_PROP);
262 uint32_t tag; local
281 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
282 if (tag == FDT_PROP) {
  /external/dtc/tests/
testutils.c 92 uint32_t tag, nameoff, proplen; local
102 tag = fdt32_to_cpu(prop->tag);
106 if (tag != FDT_PROP)
107 FAIL("Incorrect tag 0x%08x on property \"%s\"", tag, name);
  /external/e2fsprogs/lib/blkid/
read.c 239 * Extract a tag of the form NAME="value" from the line.
279 * Extract a tag of the form <NAME>value</NAME> from the line.
299 * Extract a tag from the line.
301 * Return 1 if a valid tag was found.
302 * Return 0 if no tag found.
328 DBG(DEBUG_READ, printf(" tag: %s=\"%s\"\n", name, value));
337 * Lines are of the form <device [TAG="value" ...]>/dev/foo</device>
465 blkid_tag tag = list_entry(p, struct blkid_struct_tag, bit_tags); local
466 if (tag)
467 printf(" tag: %s=\"%s\"\n", tag->bit_name
    [all...]

Completed in 937 milliseconds

<<11121314151617181920>>