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

1 2 3 4 56 7 8 91011>>

  /external/libcxx/test/std/algorithms/alg.sorting/alg.clamp/
clamp.comp.pass.cpp 21 struct Tag {
22 Tag() : val(0), tag("Default") {}
23 Tag(int a, const char *b) : val(a), tag(b) {}
24 ~Tag() {}
27 const char *tag; member in struct:Tag
30 bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag;
    [all...]
clamp.pass.cpp 20 struct Tag {
21 Tag() : val(0), tag("Default") {}
22 Tag(int a, const char *b) : val(a), tag(b) {}
23 ~Tag() {}
26 const char *tag; member in struct:Tag
29 bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag;
    [all...]
  /external/libexif/libexif/canon/
mnote-canon-tag.c 1 /* mnote-canon-tag.c
22 #include "mnote-canon-tag.h"
29 MnoteCanonTag tag; member in struct:__anon24765
51 MnoteCanonTag tag; member in struct:__anon24766
135 if (table[i].tag == t) return table[i].name; /* do not translate */
146 if (table_sub[i].tag == t) {
165 if (table[i].tag == t) return (_(table[i].title));
176 if (table_sub[i].tag == t) {
194 if (table[i].tag == t) {
  /external/libexif/libexif/
exif-entry.h 30 /*! Data found in one EXIF tag.
42 /*! Data found in one EXIF tag */
44 /*! EXIF tag for this entry */
45 ExifTag tag; member in struct:_ExifEntry
117 * for the given tag. If the entry is already initialized, this function
123 * \param[in] tag tag number to initialize as
125 void exif_entry_initialize (ExifEntry *e, ExifTag tag);
128 * If the data for this EXIF tag is in of the wrong type or is in an invalid
131 * EXIF_FORMAT_SHORT. If the tag is unknown, its value is untouched
    [all...]
  /external/libexif/libexif/fuji/
mnote-fuji-entry.c 54 ExifTag tag; member in struct:__anon24788
205 switch (entry->tag) {
232 /* search the tag */
233 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++);
234 if (!items[i].tag) {
  /external/libvpx/libvpx/build/make/
msvs_common.sh 76 die "Missing attribute value in '$opt' while generating $tag tag"
82 local tag=$1
85 echo "${indent}<${tag}"
90 echo "${indent}<${tag}>"
96 local tag=$1
98 echo "${indent}</${tag}>"
101 tag() { function
102 local tag=$1
105 echo "${indent}<${tag}"
    [all...]
  /external/nanopb-c/examples/using_union_messages/
decode.c 11 /* This function reads manually the first tag from the stream and finds the
15 * message type. Returns null if the tag is of unknown type or an error occurs.
20 uint32_t tag; local
23 while (pb_decode_tag(stream, &wire_type, &tag, &eof))
28 for (field = UnionMessage_fields; field->tag != 0; field++)
30 if (field->tag == tag && (field->type & PB_LTYPE_SUBMESSAGE))
  /external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
aes-gcm-cavp.h 20 uint32_t tag[16]; member in struct:__anon30766
    [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java 44 final int tag; field in class:UnknownFieldData
51 UnknownFieldData(int tag, byte[] bytes) {
52 this.tag = tag;
58 size += CodedOutputByteBufferNano.computeRawVarint32Size(tag);
64 output.writeRawVarint32(tag);
78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
84 result = 31 * result + tag;
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_extension.cc 88 string tag = SimpleItoa(WireFormat::MakeTag(descriptor)); local
96 // For message typed extensions, tags_params contains a single tag
98 (*variables)["tag_params"] = tag;
103 (*variables)["tag_params"] = tag;
107 // Non-packable: nonPackedTag == tag, packedTag == 0
108 (*variables)["tag_params"] = tag + ", " + tag + ", 0";
110 // Packable and packed: tag == packedTag
114 (*variables)["tag_params"] = tag + ", " + non_packed_tag + ", " + tag;
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XTagXmlResourceLoader.java 19 private String tag; field in class:XTagXmlResourceLoader
32 public XTagXmlResourceLoader( ResourceExtractor resourceExtractor, String tag ) {
34 this.tag = tag;
44 NodeList items = document.getElementsByTagName( tag );
  /external/sfntly/cpp/src/sfntly/table/
table.cc 24 #include "sfntly/tag.h"
71 derived_table->header_ = new Header(header()->tag(),
79 int32_t tag = header->tag(); local
84 if (tag == Tag::head) {
88 } else if (tag == Tag::cmap) {
92 } else if (tag == Tag::hhea)
    [all...]
  /external/skia/gm/
fontscalerdistortable.cpp 50 SkFourByteTag tag = SkSetFourByteTag('w','g','h','t'); variable
52 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}};
  /external/skia/tools/
skpinfo.cpp 76 uint32_t tag = stream.readU32(); local
77 if (SK_PICT_EOF_TAG == tag) {
94 // of them store tag-specific size information (e.g., number of
97 switch (tag) {
142 SkDebugf("Unknown tag %d\n", chunkSize);
  /external/skqp/gm/
fontscalerdistortable.cpp 50 SkFourByteTag tag = SkSetFourByteTag('w','g','h','t'); variable
52 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}};
  /external/skqp/tools/
skpinfo.cpp 76 uint32_t tag = stream.readU32(); local
77 if (SK_PICT_EOF_TAG == tag) {
94 // of them store tag-specific size information (e.g., number of
97 switch (tag) {
142 SkDebugf("Unknown tag %d\n", chunkSize);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
CollectionStartEvent.java 24 private final String tag; field in class:CollectionStartEvent
25 // The implicit flag of a collection start event indicates if the tag may be
31 public CollectionStartEvent(String anchor, String tag, boolean implicit, Mark startMark,
34 this.tag = tag;
40 * Tag of this collection.
42 * @return The tag of this collection, or <code>null</code> if no explicit
43 * tag is available.
46 return this.tag;
50 * <code>true</code> if the tag can be omitted while this collection i
    [all...]
ScalarEvent.java 24 private final String tag; field in class:ScalarEvent
30 // indicate if the tag may be omitted when the scalar is emitted in a plain
34 public ScalarEvent(String anchor, String tag, ImplicitTuple implicit, String value,
37 this.tag = tag;
44 * Tag of this scalar.
46 * @return The tag of this scalar, or <code>null</code> if no explicit tag
50 return this.tag;
94 return super.getArguments() + ", tag=" + tag + ", " + implicit + ", value=" + value
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue132/
ScalarEventTagTest.java 41 String tag = ((ScalarEvent) events.get(2)).getTag(); local
42 assertNull("The tag should not be specified: " + tag, tag);
48 assertEquals("tag:yaml.org,2002:int", intNode.getTag().toString());
51 String tag = ((ScalarEvent) intEvents.get(2)).getTag(); local
52 assertEquals("Without the tag emitter would not know how to emit '7'",
53 "tag:yaml.org,2002:int", tag);
56 assertEquals("tag:yaml.org,2002:str", strNode.getTag().toString())
    [all...]
  /external/tcpdump/
print-ether.c 203 uint16_t tag = EXTRACT_16BITS(p); local
205 ND_PRINT((ndo, "%s, ", ieee8021q_tci_string(tag)));
  /external/tensorflow/tensorflow/core/kernels/data/
stats_dataset_ops.cc 44 string tag; variable
45 OP_REQUIRES_OK(ctx, ParseScalarArgument(ctx, "tag", &tag));
46 *output = new Dataset(ctx, input, std::move(tag));
52 explicit Dataset(OpKernelContext* ctx, const DatasetBase* input, string tag)
53 : GraphDatasetBase(ctx), input_(input), tag_(std::move(tag)) {
138 string tag; variable
139 OP_REQUIRES_OK(ctx, ParseScalarArgument(ctx, "tag", &tag));
140 *output = new Dataset(ctx, input, std::move(tag));
    [all...]
  /external/tensorflow/tensorflow/core/util/
tensor_slice_set.h 48 // Register a new slice for the tensor. The "tag" is an arbitrary string
55 Status Register(const TensorSlice& slice, const string& tag,
74 const string tag; member in struct:tensorflow::checkpoint::TensorSliceSet::SliceInfo
101 const string& tag, const TensorSlice& slice,
  /external/vogar/src/vogar/target/
AndroidLog.java 26 private final String tag; field in class:AndroidLog
28 public AndroidLog(String tag) {
29 this.tag = tag;
33 Log.v(tag, s);
37 Log.i(tag, s);
41 Log.i(tag, s, exception);
45 Log.w(tag, s);
  /external/walt/ios/WALT/
WALTClient.h 52 char tag; member in struct:__anon43669
93 * If an error occurs, the trigger's tag will be '\0'.
  /frameworks/av/media/libmedia/
TimeCheck.cpp 29 TimeCheck::TimeCheck(const char *tag, uint32_t timeoutMs)
30 : mEndTimeNs(getTimeCheckThread()->startMonitoring(tag, timeoutMs))
46 nsecs_t TimeCheck::TimeCheckThread::startMonitoring(const char *tag, uint32_t timeoutMs) {
50 mMonitorRequests.add(endTimeNs, tag);
64 const char *tag; local
76 tag = mMonitorRequests.valueAt(0);
84 LOG_ALWAYS_FATAL_IF(status != NO_ERROR, "TimeCheck timeout for %s", tag);

Completed in 1116 milliseconds

1 2 3 4 56 7 8 91011>>