HomeSort by relevance Sort by last modified time
    Searched defs:tag (Results 176 - 200 of 3210) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Camera2/src/com/android/camera/exif/
ExifOutputStream.java 61 private static final Log.Tag TAG = new Log.Tag("ExifOutputStream");
156 // until SOF tag.
162 short tag = mBuffer.getShort(); local
163 if (tag == JpegHeader.EOI) {
214 Log.v(TAG, "Writing exif data...");
285 for (ExifTag tag : tags) {
286 dataOutputStream.writeShort(tag.getTagId());
287 dataOutputStream.writeShort(tag.getDataType())
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifOutputStream.java 61 private static final String TAG = "ExifOutputStream";
156 // until SOF tag.
162 short tag = mBuffer.getShort(); local
163 if (tag == JpegHeader.EOI) {
214 Log.v(TAG, "Writing exif data...");
285 for (ExifTag tag : tags) {
286 dataOutputStream.writeShort(tag.getTagId());
287 dataOutputStream.writeShort(tag.getDataType());
288 dataOutputStream.writeInt(tag.getComponentCount());
290 Log.v(TAG, "\n" + tag.toString())
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifOutputStream.java 62 private static final String TAG = LogUtil.BUGLE_TAG;
157 // until SOF tag.
163 short tag = mBuffer.getShort(); local
164 if (tag == JpegHeader.EOI) {
215 Log.v(TAG, "Writing exif data...");
289 for (ExifTag tag : tags) {
290 dataOutputStream.writeShort(tag.getTagId());
291 dataOutputStream.writeShort(tag.getDataType());
292 dataOutputStream.writeInt(tag.getComponentCount());
294 Log.v(TAG, "\n" + tag.toString())
    [all...]
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-api/0.13.0/
opentracing-api-0.13.0.jar 
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Object.java 39 * Returns the universal tag defined for the base type.
44 * Returns the declared tag for this type. Tagged subclasses must override, the
74 Asn1Tag tag = getTag(); local
75 if (tag == null) {
76 tag = getDefaultTag();
80 return tag.getTaggedLength(valueLen);
99 Asn1Tag tag = getTag(); local
100 if (tag == null) {
101 tag = getDefaultTag();
105 tag.writeTagAndLength(buf, true, innerValueLen)
134 Asn1Tag tag = Asn1Tag.readTag(buf); local
    [all...]
  /art/libartbase/base/
logging.cc 104 const char* tag = ProgramInvocationShortName(); local
117 android_writeLog(priority, tag, buf);
120 android_writeLog(priority, tag, message);
  /bionic/libc/kernel/uapi/linux/
virtio_balloon.h 42 __virtio16 tag; member in struct:virtio_balloon_stat
  /cts/hostsidetests/jvmti/base/jni/
tagging.cpp 30 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject obj, jlong tag) {
31 jvmtiError ret = jvmti_env->SetTag(obj, tag);
37 jlong tag = 0; local
38 jvmtiError ret = jvmti_env->GetTag(obj, &tag);
42 return tag;
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperHoneycomb.java 47 String tag = tab.getTag(); local
53 Fragment fragment = mActivity.getSupportFragmentManager().findFragmentByTag(tag);
  /development/tools/bugreport/src/com/android/bugreport/logcat/
LogLine.java 43 * The raw text of everything up to the tag.
68 * The log tag.
70 public String tag; field in class:LogLine
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt.c 97 uint32_t tag; local
105 tag = fdt32_to_cpu(*tagp);
109 switch (tag) {
141 return tag;
165 uint32_t tag; local
173 tag = fdt_next_tag(fdt, offset, &nextoffset);
175 switch (tag) {
197 } while (tag != FDT_BEGIN_NODE);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt.c 96 uint32_t tag; local
104 tag = fdt32_to_cpu(*tagp);
108 switch (tag) {
140 return tag;
164 uint32_t tag; local
172 tag = fdt_next_tag(fdt, offset, &nextoffset);
174 switch (tag) {
196 } while (tag != FDT_BEGIN_NODE);
  /device/linaro/bootloader/edk2/SecurityPkg/Include/Library/
Tpm12CommandLib.h 72 TPM_STRUCTURE_TAG tag; member in struct:__anon11528
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ArrayRegion.java 29 private byte tag; field in class:ArrayRegion
36 public ArrayRegion(byte tag, int length) {
37 this.tag = tag;
71 * @return Returns the tag.
74 return tag;
77 * @param tag The tag to set.
79 public void setTag(byte tag) {
80 this.tag = tag
    [all...]
  /external/boringssl/src/crypto/asn1/
a_object.c 122 int tag, xclass; local
126 inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
132 if (tag != V_ASN1_OBJECT) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKeyStructure.java 107 ASN1TaggedObject tag = (ASN1TaggedObject)obj; local
108 if (tag.getTagNo() == tagNo)
110 return (ASN1Primitive)((ASN1Encodable)tag.getObject()).toASN1Primitive();
  /external/doclava/src/com/google/doclava/
SeeTagInfo.java 81 for (SeeTagInfo tag : tags) {
82 if (tag.mBase.checkLevel() && tag.checkLevel()) {
83 tag.makeHDF(data, base + "." + j);
  /external/droiddriver/src/io/appium/droiddriver/finders/
XPaths.java 34 * @return The tag name used to build UiElement DOM. It is preferable to use
37 public static String tag(String className) { method in class:XPaths
42 * @return The tag name used to build UiElement DOM. It is preferable to use
45 public static String tag(Class<?> clazz) { method in class:XPaths
46 return tag(clazz.getSimpleName());
  /external/dtc/libfdt/
fdt.c 97 uint32_t tag; local
105 tag = fdt32_to_cpu(*tagp);
109 switch (tag) {
141 return tag;
165 uint32_t tag; local
173 tag = fdt_next_tag(fdt, offset, &nextoffset);
175 switch (tag) {
197 } while (tag != FDT_BEGIN_NODE);
  /external/elfutils/backends/
ppc64_retval.c 81 int tag = dwarf_peeled_die_type (functypedie, typedie); local
82 if (tag <= 0)
83 return tag;
86 switch (tag)
97 tag = DWARF_TAG_OR_RETURN (typedie);
110 if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
117 if (tag == DW_TAG_base_type)
169 if (tag == DW_TAG_array_type)
175 tag = DWARF_TAG_OR_RETURN (typedie)
    [all...]
s390_retval.c 72 int tag = dwarf_peeled_die_type (functypedie, typedie); local
73 if (tag <= 0)
74 return tag;
77 switch (tag)
88 tag = DWARF_TAG_OR_RETURN (typedie);
106 if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
111 if (tag == DW_TAG_base_type)
sparc_retval.c 76 int tag = dwarf_peeled_die_type (functypedie, typedie); local
77 if (tag <= 0)
78 return tag;
81 switch (tag)
92 tag = DWARF_TAG_OR_RETURN (typedie);
107 if ((tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
115 if (tag == DW_TAG_base_type)
x86_64_retval.c 85 int tag = dwarf_peeled_die_type (functypedie, typedie); local
86 if (tag <= 0)
87 return tag;
90 switch (tag)
101 tag = DWARF_TAG_OR_RETURN (typedie);
114 if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
121 if (tag == DW_TAG_base_type)
  /external/elfutils/tests/
show-abbrev.c 64 unsigned tag = dwarf_getabbrevtag (abbrev); local
65 if (tag == 0)
91 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n",
92 (unsigned long long int) offset, code, tag, children);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_info.java 31 * Returns the tag byte for this CONSTANT type [this data is
34 public abstract byte tag (); method in class:CONSTANT_info
63 byte tag = bytes.readByte ();
65 switch (tag)
67 case CONSTANT_Utf8_info.TAG:
70 case CONSTANT_Integer_info.TAG:
73 case CONSTANT_Float_info.TAG:
76 case CONSTANT_Long_info.TAG:
79 case CONSTANT_Double_info.TAG:
83 case CONSTANT_Class_info.TAG
130 out.writeByte (tag ()); method
    [all...]

Completed in 705 milliseconds

1 2 3 4 5 6 78 91011>>