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

<<11121314151617181920>>

  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/ulp_components/
IPAddress.java 57 for (Asn1Tag tag : select.getPossibleFirstTags()) {
59 if ((select0 = tagToSelection.put(tag, select)) != null) {
61 "IPAddress: " + tag + " maps to both " + select0 + " and " + select);
143 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
144 Select select = tagToSelection.get(tag);
146 throw new IllegalArgumentException("Unknown selection tag: " + tag);
174 return tag == null ? IPAddress.ipv4AddressType.getPossibleFirstTags() : ImmutableList.of(tag);
192 return tag == null ? IPAddress.ipv6AddressType.getPossibleFirstTags() : ImmutableList.of(tag)
203 @Nullable final Asn1Tag tag; field in class:IPAddress.Select
450 @Nullable private final Asn1Tag tag; field in class:IPAddress.Extend
    [all...]
SLPAddress.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "SLPAddress: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? IPAddress.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? FQDN.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:SLPAddress.Select
293 @Nullable private final Asn1Tag tag; field in class:SLPAddress.Extend
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SmallStructsTest.java 90 fail("Unknown type tag: " + type);
115 fail("unknown type tag: " + type);
140 fail("unknown type tag: " + type);
211 String tag = type1 + "_" + type2; local
213 "android.renderscript.cts.ScriptField_two_element_struct_" + tag);
237 "forEach_modify_two_element_struct_" + tag,
241 "invoke_verify_two_element_struct_" + tag,
  /cts/tests/tests/view/src/android/view/cts/
ActionModeTest.java 123 Object tag = new Object(); local
128 actionMode.setTag(tag);
129 assertSame(tag, actionMode.getTag());
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 192 int tag = bytes.getUnsignedByte(at); local
194 switch (tag) {
238 throw new ParseException("unknown tag byte: " + Hex.u1(tag));
268 int tag = bytes.getUnsignedByte(at); local
269 switch (tag) {
388 throw new ParseException("unknown tag byte: " + Hex.u1(tag));
409 * @param at offset to the start of the constant (where the tag byte is)
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 307 int tag = input.readUnsignedByte(); local
310 CstString humanTag = new CstString(Character.toString((char) tag));
311 parsed(1, "tag: " + humanTag.toQuoted());
314 switch (tag) {
410 throw new ParseException("unknown annotation tag: " +
411 Hex.u1(tag));
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
124 * off to their respective "read" methods for processing. Otherwise, skips the tag.
167 * Process an incoming tag and read the selected value from it.
171 String tag = null; local
184 throw new IllegalArgumentException("Unknown tag type: " + tagType);
189 * Reads the body of a basic XML tag, which is guaranteed not to contain any nested elements.
194 * @param tag XML element tag name to pars
214 String tag = parser.getName(); local
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardStreamFragment.java 50 public void onDismiss(String tag) {
51 dismissCard(tag);
73 final String tag = card.getTag(); local
75 if (!mVisibleCards.containsKey(tag) && !mHiddenCards.containsKey(tag)) {
77 view.setTag(tag);
78 mHiddenCards.put(tag, card);
98 * @param tag
101 public boolean removeCard(String tag) {
103 Card card = mVisibleCards.get(tag);
242 final String tag = card.getTag(); local
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
124 * off to their respective "read" methods for processing. Otherwise, skips the tag.
167 * Process an incoming tag and read the selected value from it.
171 String tag = null; local
184 throw new IllegalArgumentException("Unknown tag type: " + tagType);
189 * Reads the body of a basic XML tag, which is guaranteed not to contain any nested elements.
194 * @param tag XML element tag name to pars
214 String tag = parser.getName(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 99 private final String tag; field in class:FragmentTabsFragment.TabManager.TabInfo
105 tag = _tag;
119 public View createTabContent(String tag) {
145 String tag = tabSpec.getTag(); local
146 TabInfo info = new TabInfo(tag, clss, args);
164 tab.fragment = mManager.findFragmentByTag(tab.tag);
166 if (tab.tag.equals(currentTab)) {
219 if (tab.tag.equals(tabId)) {
224 throw new IllegalStateException("No tab known for tag " + tabId);
239 ft.add(mContainerId, newTab.fragment, newTab.tag);
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
124 * off to their respective "read" methods for processing. Otherwise, skips the tag.
167 * Process an incoming tag and read the selected value from it.
171 String tag = null; local
184 throw new IllegalArgumentException("Unknown tag type: " + tagType);
189 * Reads the body of a basic XML tag, which is guaranteed not to contain any nested elements.
194 * @param tag XML element tag name to pars
214 String tag = parser.getName(); local
    [all...]
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardStreamFragment.java 50 public void onDismiss(String tag) {
51 dismissCard(tag);
73 final String tag = card.getTag(); local
75 if (!mVisibleCards.containsKey(tag) && !mHiddenCards.containsKey(tag)) {
77 view.setTag(tag);
78 mHiddenCards.put(tag, card);
98 * @param tag
101 public boolean removeCard(String tag) {
103 Card card = mVisibleCards.get(tag);
242 final String tag = card.getTag(); local
    [all...]
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
ComplicationSimpleConfigActivity.java 46 private static final String TAG = "CompSimpleConfig";
74 Log.d(TAG, "Selected Provider: " + complicationProviderInfo);
82 if (Log.isLoggable(TAG, Log.DEBUG)) {
83 Log.d(TAG, "onClick()");
86 Integer tag = (Integer) viewHolder.itemView.getTag(); local
87 ComplicationItem complicationItem = mAdapter.getItem(tag);
125 if (Log.isLoggable(TAG, Log.DEBUG)) {
126 Log.d(TAG, "onTopEmptyRegionClick()");
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_ro.c 136 uint32_t tag; local
140 tag = fdt_next_tag(fdt, offset, &nextoffset);
142 switch (tag) {
153 } while (tag == FDT_NOP);
fdt_rw.c 243 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
339 uint32_t tag; local
354 tag = fdt_next_tag(fdt, offset, &nextoffset);
355 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
364 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_ro.c 110 uint32_t tag; local
114 tag = fdt_next_tag(fdt, offset, &nextoffset);
116 switch (tag) {
127 } while (tag == FDT_NOP);
fdt_rw.c 248 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
344 uint32_t tag; local
359 tag = fdt_next_tag(fdt, offset, &nextoffset);
360 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
369 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
pte.h 92 uint64_t tag; /* includes ti */ member in struct:ia64_lpte
  /external/ImageMagick/coders/
djvu.c 193 message_tag_name(ddjvu_message_tag_t tag)
208 if (tag <= DDJVU_PROGRESS)
209 return names[tag];
231 printf("*** %s: %s.\n",__FUNCTION__, message_tag_name(message->m_any.tag));
235 switch (message->m_any.tag){
313 return(message->m_any.tag);
574 int tag;
593 tag=(-1);
597 tag=process_message(message);
598 if (tag == 0) break
571 int tag; local
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
X000A_NTFS.java 38 * (NTFS) 0x000a 2 bytes Tag for this "extra" block type
41 * Tag1 2 bytes NTFS attribute tag value #1
47 * TagN 2 bytes NTFS attribute tag value #N
54 * Tag Size Description
56 * 0x0001 2 bytes Tag for attribute #1
94 + 2 /* Tag#1 */
165 final ZipShort tag = new ZipShort(data, offset); local
167 if (tag.equals(TIME_ATTR_TAG)) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Frame.java 217 private byte tag; field in class:Frame.Variable
232 tag = JDWPConstants.Tag.NO_TAG;
283 * Sets new signature and detects value of a type tag.
290 tag = JDWPConstants.Tag.ARRAY_TAG;
293 tag = JDWPConstants.Tag.BYTE_TAG;
296 tag = JDWPConstants.Tag.CHAR_TAG
    [all...]
  /external/autotest/scheduler/
scheduler_models_unittest.py 113 def tag(self): member in class:DBObjectTest.test_save.MockJob
  /external/autotest/server/cros/network/
netperf_runner.py 155 def tag(self): member in class:NetperfResult
404 """Convert a test type to a concise unique tag.
415 """Convert a test type to a unique human readable tag.
451 def tag(self): member in class:NetperfConfig
  /external/boringssl/src/crypto/cipher_extra/
aead_test.cc 116 // TAG: 1d45758621762e061368e68868e2f929
121 std::vector<uint8_t> key, nonce, in, ad, ct, tag;
127 ASSERT_TRUE(t->GetBytes(&tag, "TAG"));
128 size_t tag_len = tag.size();
130 // Legacy AEADs are MAC-then-encrypt and may include padding in the TAG
150 ASSERT_EQ(out.size(), ct.size() + tag.size());
152 EXPECT_EQ(Bytes(tag), Bytes(out.data() + ct.size(), tag.size()));
154 out.resize(ct.size() + tag.size())
695 std::vector<uint8_t> aad, ct, iv, key, msg, tag; local
    [all...]
e_chacha20poly1305.c 57 uint8_t tag[POLY1305_TAG_LEN]; member in struct:open_data::__anon15421
70 uint8_t tag[POLY1305_TAG_LEN]; member in struct:seal_data::__anon15423
88 // write calculated tag value to |aead_data->out.tag|, which the caller must
97 // Additional input parameters are passed in |aead_data->in|. The calculated tag
99 // and written to |aead_data->out.tag|.
156 // calc_tag fills |tag| with the authentication tag for the given inputs.
157 static void calc_tag(uint8_t tag[POLY1305_TAG_LEN], const uint8_t *key,
183 CRYPTO_poly1305_finish(&ctx, tag);
    [all...]

Completed in 2217 milliseconds

<<11121314151617181920>>