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

12 3 4 5 6 7 8 91011>>

  /external/ImageMagick/MagickCore/
locale_.h 31 *tag, member in struct:_LocaleInfo
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TaggedObject.java 34 public byte tag; field in class:TaggedObject
38 * Creates new value with empty tag.
41 tag = JDWPConstants.Tag.NO_TAG;
48 public TaggedObject(byte tag, long objectID) {
49 this.tag = tag;
  /external/curl/docs/examples/
href_extractor.c 55 char tag[1], attr[4], val[128]; local
70 html_parser_set_tag_buffer(hsp, tag, sizeof(tag));
  /external/grpc-grpc/include/grpcpp/impl/codegen/
client_callback.h 70 auto* tag = new (g_core_codegen_interface->grpc_call_arena_alloc( local
77 tag->force_run(s);
86 ops->ClientRecvStatus(context, tag->status_ptr());
87 ops->set_cq_tag(tag);
  /external/grpc-grpc/src/core/lib/iomgr/
polling_entity.h 42 grpc_pollset_tag tag; member in struct:grpc_polling_entity
  /external/grpc-grpc/src/core/lib/surface/
completion_queue.h 41 /** user supplied tag */
42 void* tag; member in struct:grpc_cq_completion
72 \a tag is currently used only in debug builds. Return true on success, and
74 bool grpc_cq_begin_op(grpc_completion_queue* cc, void* tag);
76 /* Queue a GRPC_OP_COMPLETED operation; tag must correspond to the tag passed to
78 void grpc_cq_end_op(grpc_completion_queue* cc, void* tag, grpc_error* error,
  /external/harfbuzz_ng/src/
hb-ot-deprecated.h 83 hb_tag_t tag; member in struct:hb_ot_var_axis_t
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/javadoc/description/
JavadocInlineTagTest.java 32 String tag = JavadocInlineTag.fromText("{@foo something}").toText(); local
34 assertEquals(tag, "@foo something");
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_UTypes.pass.cpp 136 // given a tag type that derives from allocator_arg_t.
137 DerivedFromAllocArgT tag; local
140 std::tuple<int, alloc_first, alloc_last> t(tag,
  /external/libexif/libexif/canon/
mnote-canon-entry.h 26 #include <libexif/canon/mnote-canon-tag.h>
31 MnoteCanonTag tag; member in struct:_MnoteCanonEntry
  /external/libexif/libexif/fuji/
mnote-fuji-entry.h 25 #include <libexif/fuji/mnote-fuji-tag.h>
33 MnoteFujiTag tag; member in struct:_MnoteFujiEntry
mnote-fuji-tag.c 1 /* mnote-fuji-tag.c
26 #include "mnote-fuji-tag.h"
30 MnoteFujiTag tag; member in struct:__anon28211
77 if (table[i].tag == t) return (table[i].name);
88 if (table[i].tag == t) return (_(table[i].title));
98 if (table[i].tag == t) {
  /external/libexif/libexif/olympus/
mnote-olympus-entry.h 26 #include <libexif/olympus/mnote-olympus-tag.h>
31 MnoteOlympusTag tag; member in struct:_MnoteOlympusEntry
mnote-olympus-tag.c 1 /* mnote-olympus-tag.c:
22 #include "mnote-olympus-tag.h"
30 MnoteOlympusTag tag; member in struct:__anon28214
202 if (table[i].tag == t) return (table[i].name);
213 if (table[i].tag == t) return (_(table[i].title));
223 if (table[i].tag == t) {
  /external/libexif/libexif/pentax/
mnote-pentax-entry.h 26 #include <libexif/pentax/mnote-pentax-tag.h>
31 MnotePentaxTag tag; member in struct:_MnotePentaxEntry
mnote-pentax-tag.c 1 /* mnote-pentax-tag.c:
22 #include "mnote-pentax-tag.h"
29 MnotePentaxTag tag; member in struct:__anon28219
147 if (table[i].tag == t) return (table[i].name);
158 if (table[i].tag == t) return (_(table[i].title));
168 if (table[i].tag == t) {
  /external/libprotobuf-mutator/examples/xml/
xml_writer.cc 80 std::string tag; local
82 tag += element.tag().name();
83 out_ << "<" << tag; local
85 for (int i = 0; i < element.tag().attribute_size(); ++i) {
86 ToXml(element.tag().attribute(i).name(),
87 element.tag().attribute(i).value());
95 out_ << "</" << tag << ">"; local
  /external/oj-libjdwp/src/share/back/
ClassLoaderReferenceImpl.c 55 jbyte tag; local
59 tag = referenceTypeTag(clazz);
61 (void)outStream_writeByte(out, tag);
  /external/openssh/
cipher-chachapoly.c 49 * tag. This tag is written on encryption and verified on decryption.
70 /* If decrypting, check tag before anything else */
72 const u_char *tag = src + aadlen + len; local
75 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
92 /* If encrypting, calculate and append tag */
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
ResolverTuple.java 20 import org.yaml.snakeyaml.nodes.Tag;
23 private final Tag tag; field in class:ResolverTuple
26 public ResolverTuple(Tag tag, Pattern regexp) {
27 this.tag = tag;
31 public Tag getTag() {
32 return tag;
41 return "Tuple tag=" + tag + " regexp=" + regexp
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
TagTest.java 27 new Tag((String) null);
30 assertEquals("Tag must be provided.", e.getMessage());
33 new Tag("");
36 assertEquals("Tag must not be empty.", e.getMessage());
39 new Tag("!Dice ");
42 assertEquals("Tag must not contain leading or trailing spaces.", e.getMessage());
44 Tag tag = new Tag(TagTest.class); local
45 assertEquals(Tag.PREFIX + "org.yaml.snakeyaml.nodes.TagTest", tag.getValue())
58 Tag tag = new Tag(Tag.PREFIX + "org.yaml.snakeyaml.nodes.TagTest"); local
64 Tag tag = new Tag("!TagTest"); local
74 Tag tag = new Tag(t); local
79 Tag tag = new Tag("!car"); local
84 Tag tag = new Tag("!Académico"); local
89 Tag tag = new Tag("!ruby\/object:Test::Module::Sub2"); local
94 Tag tag = new Tag("!car"); local
99 Tag tag = new Tag("!car"); local
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/eager/
grpc_eager_service_impl.cc 54 void* tag; // Matches the operation started against this cq_. local
58 if (!cq_->Next(&tag, &ok)) {
62 UntypedCall<GrpcEagerServiceImpl>::Tag* callback_tag =
63 static_cast<UntypedCall<GrpcEagerServiceImpl>::Tag*>(tag);
75 // This enqueues a special event (with a null tag)
  /external/tensorflow/tensorflow/core/example/
feature_util_test.cc 30 (*example.mutable_features()->mutable_feature())["tag"]
34 auto tag = GetFeatureValues<protobuf_int64>("tag", example); local
36 ASSERT_EQ(1, tag.size());
37 EXPECT_EQ(42, tag.Get(0));
53 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42);
56 example.features().feature().at("tag").int64_list().value_size());
57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0));
71 ASSERT_FALSE(HasFeature("tag", example));
73 GetFeatureValues<protobuf_int64>("tag", &example)->Add(0)
123 auto tag = GetFeatureValues<float>("tag", example); local
194 auto tag = GetFeatureValues<string>("tag", example); local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
summary_tensor_op.cc 34 const Tensor& tag = c->input(0); variable
35 OP_REQUIRES(c, IsLegacyScalar(tag.shape()),
36 errors::InvalidArgument("tag must be scalar"));
42 v->set_tag(tag.scalar<string>()());
71 // pass a tag (more consistent with other summaries) as well as serialized
  /external/u-boot/tools/libfdt/
fdt_rw.c 13 int tag = FDT_PROP; local
20 for (offset = 0; tag != FDT_END; offset = next_offset) {
21 tag = fdt_next_tag(old, offset, &next_offset);
22 if (tag != FDT_PROP)

Completed in 1114 milliseconds

12 3 4 5 6 7 8 91011>>