Searched refs:tag (Results 76 - 100 of 2005) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DISimpleElement.java28 public static ISimpleElement create (final Tag tag) argument
30 return new SimpleElementImpl (tag, AttributeSet.create ());
33 public static ISimpleElement create (final Tag tag, final AttributeSet attrs) argument
35 return new SimpleElementImpl (tag, attrs);
79 SimpleElementImpl (final Tag tag, final AttributeSet attrs) argument
81 if ($assert.ENABLED) $assert.ASSERT (tag != null, "tag = null");
84 m_tag = tag;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DTaggedRecord.java20 private String tag; field in class:TaggedRecord
24 tag = theTag;
29 return tag;
54 public static int search(TaggedRecord[] table, int count, String tag) argument
62 if (table[extra].getTag().compareTo(tag) <= 0) {
69 if (table[index + probe].getTag().compareTo(tag) <= 0) {
74 if (table[index].getTag().equals(tag)) {
/external/protobuf/jenkins/
H A Dmake_test_output.py72 doc, tag, text = Doc().tagtext()
74 with tag("testsuites"):
75 with tag("testsuite", name="Protobuf Tests"):
77 with tag("testcase", name=test["name"], classname=test["name"],
79 with tag("system-out"):
81 with tag("system-err"):
84 with tag("failure"):
/external/piex/src/tiff_directory/
H A Dtiff_directory.h54 TIFF_TYPE_UNDEFINED, /* undefined (depend of tag) */
72 // Returns true if the directory contains the specified tag.
73 bool Has(const Tag tag) const;
75 // Gets the value of a tag of byte vector type.
76 // Returns false if the tag is not part of the directory or if the
78 bool Get(const Tag tag, std::vector<std::uint8_t>* value) const;
80 // Gets the value of a tag of type "ASCII".
81 // Returns false if the tag is not part of the directory or if its
84 bool Get(const Tag tag, std::string* value) const;
86 // Gets the value of a tag o
[all...]
/external/testng/src/main/java/org/testng/xml/dom/
H A DTestNGTagFactory.java16 public Class<?> getClassForTag(String tag) { argument
17 Class<?> result = m_map.get(tag);
21 String className = "org.testng.xml.Xml" + Reflect.toCapitalizedCamelCase(tag);
/external/elfutils/backends/
H A Daarch64_retval.c43 skip_until (Dwarf_Die *child, int tag) argument
46 while (DWARF_TAG_OR_RETURN (child) != tag)
77 static int hfa_type (Dwarf_Die *ftypedie, int tag,
87 int tag = dwarf_peeled_die_type (membdie, &typedie); local
88 switch (tag)
120 return hfa_type (&typedie, tag, sizep, countp);
127 hfa_type (Dwarf_Die *ftypedie, int tag, Dwarf_Word *sizep, Dwarf_Word *countp) argument
129 assert (tag == DW_TAG_structure_type || tag == DW_TAG_class_type
130 || tag
273 int tag = dwarf_peeled_die_type (functypedie, &typedie); local
[all...]
H A Dppc64_retval.c81 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
[all...]
H A Ds390_retval.c72 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)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DGeneralName.java60 private int tag; field in class:GeneralName
70 this.tag = 4;
77 this.tag = 4;
108 int tag,
112 this.tag = tag;
116 * Create a GeneralName for the given tag from the passed in String.
134 * @param tag tag number
139 int tag,
107 GeneralName( int tag, ASN1Encodable name) argument
138 GeneralName( int tag, String name) argument
[all...]
/external/ImageMagick/MagickWand/
H A Dmagick-wand-private.h29 #define ThrowWandException(severity,tag,context) \
32 tag,"`%s'",context); \
35 #define ThrowWandFatalException(severity,tag,context) \
41 (void) ThrowMagickException(fatal_exception,GetMagickModule(),severity,tag, \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1TaggedObjectParser.java10 public ASN1Encodable getObjectParser(int tag, boolean isExplicit) argument
/external/icu/icu4c/source/extra/uconv/unicode/
H A Duwmsg.h26 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... );
/external/kernel-headers/original/uapi/linux/
H A Dvirtio_9p.h38 /* length of the tag name */
40 /* non-NULL terminated tag name */
41 __u8 tag[0]; member in struct:virtio_9p_config
/external/libmojo/base/android/
H A Devent_log.h15 void BASE_EXPORT EventLogWriteInt(int tag, int value);
/external/libtextclassifier/util/base/
H A Dlogging_raw.cc50 void LowLevelLogging(LogSeverity severity, const std::string& tag, argument
59 __android_log_write(android_log_level, tag.c_str(), message.c_str());
89 void LowLevelLogging(LogSeverity severity, const std::string &tag,
91 fprintf(stderr, "[%s] %s : %s\n", LogSeverityToString(severity), tag.c_str(),
H A Dlogging_raw.h28 // severity. From android/log.h: "the tag normally corresponds to the component
30 void LowLevelLogging(LogSeverity severity, const std::string &tag,
/external/mesa3d/doxygen/
H A DMakefile6 %.tag: %.doxy
22 full: $(FULL:.doxy=.tag)
29 subset: $(SUBSET:.doxy=.tag)
34 -rm -rf *.tag
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DScalarNode.java30 public ScalarNode(Tag tag, String value, Mark startMark, Mark endMark, Character style) { argument
31 this(tag, true, value, startMark, endMark, style);
34 public ScalarNode(Tag tag, boolean resolved, String value, Mark startMark, Mark endMark, argument
36 super(tag, startMark, endMark);
71 return "<" + this.getClass().getName() + " (tag=" + getTag() + ", value=" + getValue()
H A DSequenceNode.java31 public SequenceNode(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, argument
33 super(tag, startMark, endMark, flowStyle);
41 public SequenceNode(Tag tag, List<Node> value, Boolean flowStyle) { argument
42 this(tag, true, value, null, null, flowStyle);
66 return "<" + this.getClass().getName() + " (tag=" + getTag() + ", value=" + getValue()
/external/toybox/toys/android/
H A Dlog.c18 -t use the given tag instead of "log"
26 char *tag;
43 if (!TT.tag) TT.tag = "log";
57 __android_log_write(pri, TT.tag, toybuf);
/external/tpm2/
H A DCommandDispatcher_fp.h12 TPMI_ST_COMMAND_TAG tag, // IN: Input command tag
/external/v8/src/
H A Dlog-inl.h17 CodeEventListener::LogEventsAndTags tag, Script* script) {
18 if (script->type() != Script::TYPE_NATIVE) return tag;
19 switch (tag) {
27 return tag;
16 ToNativeByScript( CodeEventListener::LogEventsAndTags tag, Script* script) argument
/external/ImageMagick/MagickCore/
H A Dmonitor-private.h28 const char *tag,const MagickOffsetType offset,const MagickSizeType extent)
35 (void) FormatLocaleString(message,MagickPathExtent,"%s/%s",tag,
27 SetImageProgress(const Image *image, const char *tag,const MagickOffsetType offset,const MagickSizeType extent) argument
/external/autotest/client/bin/
H A Dharness_simple.py28 def test_status(self, status, tag):
33 # AUTOTEST_STATUS:tag: so that we can tell
35 pre = 'AUTOTEST_STATUS:%s:' % (tag,)
/external/doclava/src/com/google/doclava/
H A DLinter.java23 TagInfo tag);
37 TagInfo tag) {
22 lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position, TagInfo tag) argument
36 lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position, TagInfo tag) argument

Completed in 663 milliseconds

1234567891011>>