HomeSort by relevance Sort by last modified time
    Searched refs:Tag (Results 176 - 200 of 1251) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IElement.java 28 public static IElement create (final Tag tag)
30 return new ElementImpl (tag, AttributeSet.create ());
33 public static IElement create (final Tag tag, final AttributeSet attrs)
35 return new ElementImpl (tag, attrs);
110 ElementImpl (final Tag tag, final AttributeSet attrs)
112 super (tag, attrs);
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbol.h 34 static const PDB_SymType Tag = TagValue; \
35 static bool classof(const PDBSymbol *S) { return S->getSymTag() == Tag; }
71 auto BaseIter = RawSymbol->findChildren(T::Tag);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp 19 Tag = 0;
35 Tag = Data.getULEB128(OffsetPtr);
57 if (Tag == 0) {
  /external/llvm/lib/Support/
ARMBuildAttrs.cpp 86 int AttrTypeFromString(StringRef Tag) {
87 bool HasTagPrefix = Tag.startswith("Tag_");
90 if (StringRef(ARMAttributeTags[TI].TagName + (HasTagPrefix ? 0 : 4)) == Tag)
  /external/sfntly/cpp/src/test/
otf_basic_editing_test.cc 21 #include "sfntly/tag.h"
47 char tag[5] = {0}; local
49 memcpy(tag, &value, 4);
50 fprintf(stderr, "tag %s does not have valid builder\n", tag);
58 font_builder->GetTableBuilder(Tag::head));
70 EXPECT_TRUE(builder_tags.find(header->tag()) != builder_tags.end());
71 builder_tags.erase(header->tag());
76 down_cast<FontHeaderTable*>(font->GetTable(Tag::head));
81 TablePtr post = font->GetTable(Tag::post)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue64/
ParameterizedTypeTest.java 28 import org.yaml.snakeyaml.nodes.Tag;
64 return representScalar(new Tag("!clazz"), clazz.getSimpleName());
71 this.yamlConstructors.put(new Tag("!clazz"), new ConstructClass());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ImplicitResolverTest.java 31 import org.yaml.snakeyaml.nodes.Tag;
39 private static final Tag CFG = new Tag("!cfg");
90 assertEquals("Explicit tag must be respected", "HOME", bean.getMyval());
93 assertEquals("Implicit tag must be respected", "HOME", bean.getMyval());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/serializer/
SerializerTest.java 27 import org.yaml.snakeyaml.nodes.Tag;
65 serializer.serialize(new ScalarNode(new Tag("!foo"), "bar", null, null, (char) 0));
89 serializer.serialize(new ScalarNode(new Tag("!foo"), "bar", null, null, (char) 0));
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 28 Tag = data.getULEB128(offset_ptr);
41 return Tag != 0;
43 Tag = 0;
  /external/testng/src/main/java/org/testng/xml/dom/
Wrapper.java 14 private Tag m_tag;
22 else if (a instanceof Tag) m_tag = (Tag) a;
28 if (m_onElement != null) return m_onElement.tag();
29 else if (m_onElementList != null) return m_onElementList.tag();
  /frameworks/base/core/java/android/nfc/tech/
MifareUltralight.java 20 import android.nfc.Tag;
31 * Provides access to MIFARE Ultralight properties and I/O operations on a {@link Tag}.
36 * The primary operations on an Ultralight tag are {@link #readPages} and
53 * {@link MifareUltralight} will never be enumerated in {@link Tag#getTechList}.
55 * In either case, {@link NfcA} will also be enumerated on the tag,
62 private static final String TAG = "NFC";
64 /** A MIFARE Ultralight compatible tag of unknown type */
66 /** A MIFARE Ultralight tag */
68 /** A MIFARE Ultralight C tag */
83 * Get an instance of {@link MifareUltralight} for the given tag
    [all...]
NdefFormatable.java 23 import android.nfc.Tag;
31 * Provide access to NDEF format operations on a {@link Tag}.
47 private static final String TAG = "NFC";
50 * Get an instance of {@link NdefFormatable} for the given tag.
52 * <p>Returns null if {@link NdefFormatable} was not enumerated in {@link Tag#getTechList}.
53 * This indicates the tag is not NDEF formatable by this Android device.
55 * @param tag an NDEF formatable tag
58 public static NdefFormatable get(Tag tag) {
    [all...]
BasicTagTechnology.java 20 import android.nfc.Tag;
28 * A base class for tag technologies that are built on top of transceive().
31 private static final String TAG = "NFC";
33 final Tag mTag;
38 BasicTagTechnology(Tag tag, int tech) throws RemoteException {
39 mTag = tag;
44 public Tag getTag() {
65 Log.e(TAG, "NFC service dead", e);
77 // Store this in the tag objec
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/focus/
AutoFocusRing.java 22 import com.android.camera.debug.Log.Tag;
30 private static final Tag TAG = new Tag("AutoFocusRing");
FocusController.java 23 import com.android.camera.debug.Log.Tag;
31 private static final Tag TAG = new Tag("FocusController");
52 Log.v(TAG, "Running showPassiveFocusAtCenter()");
71 Log.v(TAG, "Running showPassiveFocusAt(" + viewX + ", " + viewY + ")");
90 Log.v(TAG, "showActiveFocusAt(" + viewX + ", " + viewY + ")");
107 Log.v(TAG, "clearFocusIndicator()");
122 Log.v(TAG, "configurePreviewDimensions(" + previewArea + ")");
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Option.h 154 UINT8 Tag;
202 UINT8 Tag;
212 IN UINT8 Tag,
264 an array of 256 DHCP_OPTION_COUNTs because DHCP option tag is encoded
298 @param[in] Tag The option's tag
308 IN UINT8 Tag,
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeExampleTest.java 31 import org.yaml.snakeyaml.nodes.Tag;
72 if (nnode.getTag().equals("tag:yaml.org,2002:timestamp")) {
73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP);
84 * This class should be used if JodaTime may appear with a tag or as a
94 // Whenever we see an explicit timestamp tag, make a Joda Date
96 yamlConstructors.put(Tag.TIMESTAMP, jodaDateConstruct);
112 if (nnode.getTag().equals(Tag.TIMESTAMP)) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue149/
GlobalDirectivesTest.java 26 import org.yaml.snakeyaml.nodes.Tag;
33 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag(
34 "tag:ualberta.ca,2012:29"));
48 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag(
49 "tag:ualberta.ca,2012:" + 29));
66 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag(
67 "tag:ualberta.ca,2012:" + 29));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterClassInfo.cpp 27 RegisterClassInfo::RegisterClassInfo() : Tag(0), MF(0), TRI(0), CalleeSaved(0)
64 ++Tag;
115 RCI.Tag = Tag;
  /external/v8/src/
vm-state.h 20 template <StateTag Tag>
  /system/security/keystore/include/keystore/
keymaster_tags.h 25 * authorizations. For example, it's an error to create a KeyParameter with tag == Tag::PURPOSE
31 * to which Tag. Central to this mechanism is the template TypedTag. It has zero size and binds a
32 * numeric Tag to a type that the compiler understands. By means of the macro DECLARE_TYPED_TAG,
36 * TAG_name. Once these typed tags have been declared we define metafunctions mapping the each tag
39 * a typed tag to the corresponding c++ type, and access function, accessTagValue returning a
47 * Authorization takes a typed tag and a value and checks at compile time whether the value given
48 * is suitable for the given tag. At runtime it creates a new KeyParameter initialized with the
49 * given tag and value and returns it by value.
52 * a safe way. It takes a typed tag and a KeyParameter and returns a reference to the value wrappe
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodDefault002Test.java 106 assertEquals("Expected an object value", JDWPConstants.Tag.OBJECT_TAG, fieldValue.getTag());
157 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.tag
158 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG)
159 , JDWPConstants.Tag.getName(exception.tag));
160 logWriter.println(" InterfaceType.InvokeMethod: exception.tag="
161 + exception.tag + " exception.objectID=" + exception.objectID)
    [all...]
InvokeMethodDefaultTest.java 106 assertEquals("Expected an object value", JDWPConstants.Tag.OBJECT_TAG, fieldValue.getTag());
157 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.tag
158 , JDWPConstants.Tag.getName(JDWPConstants.Tag.OBJECT_TAG)
159 , JDWPConstants.Tag.getName(exception.tag));
160 logWriter.println(" InterfaceType.InvokeMethod: exception.tag="
161 + exception.tag + " exception.objectID=" + exception.objectID)
    [all...]
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 55 /// A markup tag is a name and a (usually empty) list of modifiers.
77 /// the ':' which terminates the tag open.
88 // Example handler for when a tag is recognized.
89 static void processStartTag(MarkupTag &Tag) {
93 outs() << Tag.getName();
94 if (Tag.getModifiers().size())
95 outs() << " " << Tag.getModifiers();
104 if (Tag.getName() == "reg")
106 else if (Tag.getName() == "imm")
110 // Example handler for when the end of a tag is recognized
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
JavaBeanWithNullValuesTest.java 24 import org.yaml.snakeyaml.nodes.Tag;
117 assertFalse("No explicit root tag must be used.",
161 return representScalar(new Tag(Tag.PREFIX + "java.lang.Float"),
168 return representScalar(new Tag(Tag.PREFIX + "java.lang.Long"),
175 return representScalar(new Tag(Tag.PREFIX + "java.sql.Date"),
182 return representScalar(new Tag(Tag.PREFIX + "java.sql.Timestamp")
    [all...]

Completed in 729 milliseconds

1 2 3 4 5 6 78 91011>>