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

<<11121314151617181920>>

  /external/v8/src/runtime/
runtime-wasm.cc 163 Handle<Object> tag; local
167 .ToHandle(&tag)) {
168 if (tag->IsSmi()) {
169 return *tag;
  /frameworks/av/camera/ndk/include/camera/
NdkCameraMetadata.h 94 * The tag identifying the entry.
100 uint32_t tag; member in struct:ACameraMetadata_entry
105 * <p>Must be one of ACAMERA_TYPE_* enum values defined above. A particular tag always has the
139 * The tag identifying the entry.
145 uint32_t tag; member in struct:ACameraMetadata_const_entry
150 * <p>Must be one of ACAMERA_TYPE_* enum values defined above. A particular tag always has the
183 * @param tag the tag value of the camera metadata entry to be get.
191 * of input tag value.</li></ul>
195 uint32_t tag, /*out*/ACameraMetadata_const_entry* entry) __INTRODUCED_IN(24)
    [all...]
  /frameworks/av/camera/ndk/ndk_vendor/impl/
ACameraManager.cpp 52 * The vendor tag descriptor class that takes HIDL vendor tag information as
77 ALOGE("%s: tag count %d from vendor tag sections is invalid.", __FUNCTION__, tagCount);
95 ALOGE("%s: no section name defined for vendor tag section %zu.", __FUNCTION__, s);
102 uint32_t tag = section.tags[j].tagId; local
103 if (tag < CAMERA_METADATA_VENDOR_TAG_BOUNDARY) {
104 ALOGE("%s: vendor tag %d not in vendor tag section.", __FUNCTION__, tag);
128 uint32_t tag = tagArray[i]; local
    [all...]
  /frameworks/av/media/libstagefright/
ESDS.cpp 73 uint8_t *tag, size_t *data_offset, size_t *data_size) const {
78 *tag = mData[offset++];
96 ALOGV("tag=0x%02x data_size=%zu", *tag, *data_size);
108 uint8_t tag; local
112 skipDescriptorHeader(0, mSize, &tag, &data_offset, &data_size);
118 if (tag != kTag_ESDescriptor) {
181 uint8_t tag; local
184 offset, size, &tag, &sub_offset, &sub_size);
190 if (tag != kTag_DecoderConfigDescriptor)
228 uint8_t tag; local
    [all...]
StagefrightMediaScanner.cpp 107 const char *tag; member in struct:android::KeyMap
138 status = client.addStringTag(kKeyMap[i].tag, value);
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.h 55 // Parse tag name list (comma-separated) and if valid, enable monitoring
74 static void printData(int fd, const uint8_t *data_ptr, uint32_t tag,
78 nsecs_t timestamp, const std::string& cameraId, uint32_t tag,
108 uint32_t tag; member in struct:android::TagMonitor::MonitorEvent
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 133 private final CharacterRecorder tag; field in class:HtmlParserImpl
156 tag = new CharacterRecorder();
174 tag = new CharacterRecorder(aHtmlParserImpl.tag);
221 * <li>Inside a STYLE tag.
252 // Special logic to handle the "content" attribute of the "meta" tag.
279 return tag.getContent().toLowerCase();
344 tag.reset();
491 tag.maybeRecord(input);
497 * Starts recording the name of the HTML tag. Called when the parse
    [all...]
  /art/test/903-hello-tagging/src/art/
Test903.java 76 long tag = Main.getTag(o); local
77 if (expectedTag != tag) {
78 throw new RuntimeException("Unexpected tag " + tag + ", expected " + expectedTag);
84 // to compare to. We use index % 10 as the tag.
135 long tag; field in class:Test903.Pair
138 tag = t;
142 if (tag != p.tag) {
143 return Long.compare(tag, p.tag)
    [all...]
  /art/tools/jvmti-agents/field-null-percent/
fieldnull.cc 119 jlong tag = static_cast<jlong>(reinterpret_cast<intptr_t>(klass)); local
120 CHECK_JVMTI(jvmti->GetObjectsWithTags(1, &tag, &obj_len, &obj_list, nullptr));
  /bionic/libc/kernel/uapi/linux/
virtio_balloon.h 54 __virtio16 tag; member in struct:virtio_balloon_stat
  /cts/tests/signature/lib/android/src/android/signature/cts/
ApiDocumentParser.java 68 private final String tag; field in class:ApiDocumentParser
72 public ApiDocumentParser(String tag) throws XmlPullParserException {
73 this.tag = tag;
142 throw new XmlPullParserException("No start tag found");
146 throw new XmlPullParserException("Unexpected start tag: found " + parser.getName() +
206 "unknown tag exception:" + tagname);
224 Log.d(tag, msg);
  /cts/tests/tests/carrierapi/src/android/carrierapi/cts/
FcpTemplate.java 30 * | 1 byte: BER tag (0x62) | 1 byte: length of TLVs |...TLV objects...| 2 bytes: status |
37 // FCP Template BER-TLV Tag tags. TS 101 220 Section 7.2
72 * the format: | 1 byte: BER tag | 1 byte: length of TLVs |...TLV objects...| 2 bytes: status |
83 // | 1 byte: BER tag | 1 byte: length of TLVs | ...TLV objects... | 2 bytes: status |
86 // don't count BER tag, length byte, or status bytes
88 // data[0]: Response tag
97 // | 1 byte: tag | 1 byte: length | 'length' bytes: value |
98 int tag = data[index++] & 0xFF; local
101 tlvObjects .add(new Tlv(tag, length, value));
110 * Represents a Tag-Length-Value object. TS 101 220 Section
114 private final int tag; field in class:FcpTemplate.Tlv
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 81 String tag = (String) mPickers.get(position).getTag(); local
82 if (tag == null) {
87 return context.getResources().getIdentifier(tag, "drawable", context.getPackageName());
  /developers/samples/android/deprecated/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 81 String tag = (String) mPickers.get(position).getTag(); local
82 if (tag == null) {
87 return context.getResources().getIdentifier(tag, "drawable", context.getPackageName());
  /development/apps/Development/src/com/android/development/
LogViewer.java 38 static final String TAG = LogViewer.class.getSimpleName();
106 CharSequence tag local
111 builder.append(tag)
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
BackgroundPickers.java 81 String tag = (String) mPickers.get(position).getTag(); local
82 if (tag == null) {
87 return context.getResources().getIdentifier(tag, "drawable", context.getPackageName());
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperEclair.java 65 String tag = tab.getTag(); local
69 spec = mTabHost.newTabSpec(tag).setIndicator(tab.getText(), tab.getIcon());
71 spec = mTabHost.newTabSpec(tag).setIndicator(tab.getText());
80 Fragment fragment = mActivity.getSupportFragmentManager().findFragmentByTag(tag);
89 mTabs.put(tag, tab);
149 public View createTabContent(String tag) {
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 58 // Starts by looking for the entry tag
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
84 // to their respective &quot;read&quot; methods for processing. Otherwise, skips the tag.
120 String tag = parser.getName(); local
122 if (tag.equals("link")) {
151 // if the next tag after a START_TAG isn't a matching END_TAG, it keeps going until it
  /device/google/cuttlefish_common/common/libs/usbforward/
protocol.h 92 uint32_t tag; member in struct:usb_forward::RequestHeader
97 uint32_t tag; member in struct:usb_forward::ResponseHeader
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/libfdt/
fdt.h 90 fdt32_t tag; member in struct:fdt_node_header
95 fdt32_t tag; member in struct:fdt_property
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_sw.c 181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
238 prop->tag = cpu_to_fdt32(FDT_PROP);
250 uint32_t tag; local
269 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
270 if (tag == FDT_PROP) {
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/
ShellDumpFdt.c 98 UINT32 tag; local
132 while ((tag = fdt32_to_cpu (GET_CELL (p))) != FDT_END) {
133 if (tag == FDT_BEGIN_NODE) {
146 if (tag == FDT_END_NODE) {
153 if (tag == FDT_NOP) {
158 if (tag != FDT_PROP) {
159 Print (L"%*s ** Unknown tag 0x%08x\n", depth * shift, L" ", tag);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/
fdt.h 82 fdt32_t tag; member in struct:fdt_node_header
87 fdt32_t tag; member in struct:fdt_property
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_sw.c 149 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
206 prop->tag = cpu_to_fdt32(FDT_PROP);
218 uint32_t tag; local
237 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
238 if (tag == FDT_PROP) {
  /external/ImageMagick/coders/
dng.c 297 *tag;
308 tag=GetXMLTreeTag(next);
309 if (tag == (char *) NULL)
310 tag="unknown";
312 tag);
315 if ((LocaleCompare(tag,"log") != 0) &&
316 (LocaleCompare(tag,"InputFilename") != 0) &&
317 (LocaleCompare(tag,"OutputFilename") != 0) &&
318 (LocaleCompare(tag,"OutputType") != 0) &&
547 % tag, a method to read and/or write the format, whether the forma
296 *tag; local
    [all...]

Completed in 2183 milliseconds

<<11121314151617181920>>