HomeSort by relevance Sort by last modified time
    Searched defs:prefix (Results 351 - 375 of 2666) sorted by null

<<11121314151617181920>>

  /external/selinux/libsemanage/src/
user_extra_record.c 30 /* Labeling prefix */
31 char *prefix; member in struct:semanage_user_extra
102 /* Labeling prefix */
107 return user_extra->prefix;
112 const char *prefix)
115 char *tmp_prefix = strdup(prefix);
117 ERR(handle, "out of memory, could not set prefix %s "
118 "for user %s", prefix, user_extra->name);
121 free(user_extra->prefix);
122 user_extra->prefix = tmp_prefix
    [all...]
  /external/webrtc/webrtc/base/
fakenetwork.h 101 IPAddress prefix = TruncateIP(it->first.ipaddr(), prefix_length); local
103 it->first.hostname(), prefix,
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 17 int prefix; member in struct:eap_gtc_data
33 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
35 data->prefix = 1;
57 msg = data->prefix ? "CHALLENGE=Password" : "Password";
107 if (data->prefix) {
112 "for EAP-FAST prefix");
124 "response to EAP-FAST prefix");
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfThinItemsTest.java 66 String prefix = "after " + i + " down presses, "; local
68 assertTrue(prefix + "selected item is below bottom threshold (fading edge or bottom as " +
71 assertTrue(prefix + "first item in list must be at very top or just above",
73 assertTrue(prefix + "last item in list should be at very bottom or just below",
105 String prefix = "after " + i + " up presses, "; local
107 assertTrue(prefix + "selected item is above top threshold (fading edge or top as " +
110 assertTrue(prefix + "first item in list must be at very top or just above",
112 assertTrue(prefix + "last item in list should be at very bottom or just below",
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
ShortButtonsTest.java 60 String prefix = "after " + i + " downs expected button " + i; local
62 assertTrue(prefix + " to have focus", button.isFocused());
63 assertTrue(prefix + " to be on screen", isButtonOnScreen(button));
89 String prefix = "after " + i + " ups expected button " + i; local
91 assertTrue(prefix + " to have focus", button.isFocused());
92 assertTrue(prefix + " to be on screen", isButtonOnScreen(button));
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
TestAppWidgetProvider.java 34 static final String PREF_PREFIX_KEY = "prefix";
55 String prefix = prefs.getString(PREF_PREFIX_KEY, "hai"); local
59 views.setTextViewText(R.id.oh_hai_text, prefix + ": " + SystemClock.elapsedRealtime());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
VisualVoicemailSmsParser.java 34 public final String prefix; field in class:VisualVoicemailSmsParser.WrappedMessageData
39 return "WrappedMessageData [type=" + prefix + " fields=" + fields + "]";
42 WrappedMessageData(String prefix, Bundle keyValues) {
43 this.prefix = prefix;
84 * @param message The sms string with the prefix removed.
121 * <p>This format is not protected with a client prefix and should be handled with care. For
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS02.java 71 String prefix; local
78 prefix = attribute1.getPrefix();
83 assertEquals("documentcreateattributeNS02_att1_prefix", "xml", prefix);
89 prefix = attribute2.getPrefix();
documentcreateelementNS01.java 85 String prefix; local
92 prefix = element.getPrefix();
97 assertEquals("documentcreateelementNS01_prefix", "XML", prefix);
getElementsByTagNameNS09.java 80 String prefix; local
88 prefix = newElement.getPrefix();
89 assertEquals("prefix", "emp", prefix);
removeAttributeNS02.java 37 * namespace URI and local name, as well as the original prefix.
86 String prefix; local
97 prefix = testAddr.getPrefix();
101 assertEquals("prefix", "emp", prefix);
  /libcore/luni/src/main/java/javax/xml/namespace/
QName.java 39 * <strong>prefix</strong>.</p>
41 * <p>The prefix is included in <code>QName</code> to retain lexical
43 * javax.xml.transform.Source XML input source}. The prefix is
51 * If not specified, the prefix is set to {@link
105 * <p>prefix of this <code>QName</code>.</p>
107 private String prefix; field in class:QName
134 * <p>When using this constructor, the prefix is set to {@link
149 * prefix) QName(String namespaceURI, String localPart, String
150 * prefix)
158 * local part and prefix.</p
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 43 String prefix; field in class:AttrImpl
64 return prefix != null
65 ? prefix + ":" + localName
94 return prefix;
106 public void setPrefix(String prefix) {
107 this.prefix = validatePrefix(prefix, namespaceAware, namespaceURI);
DocumentTypeImpl.java 52 String prefix = qualifiedName.substring(0, prefixSeparator); local
55 if (!DocumentImpl.isXMLIdentifier(prefix)) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MissingClassesTest.java 27 String prefix = MissingClassesTest.class.getName(); local
29 .withPrivateCopy(prefix + "$Loadable")
30 .without(prefix + "$Unloadable")
32 loadableClass = cl.loadClass(prefix + "$Loadable");
  /libcore/ojluni/src/main/java/java/util/
StringJoiner.java 29 * by a delimiter and optionally starting with a supplied prefix
33 * {@code sj.toString()} method will, by default, return {@code prefix + suffix}.
37 * <code>"{}"</code>, where the {@code prefix} is <code>"{"</code>, the
66 private final String prefix; field in class:StringJoiner
72 * prefix, the added element separated by the delimiter, but without the
79 * By default, the string consisting of prefix+suffix, returned by
88 * {@code prefix} or {@code suffix}, and a copy of the supplied
92 * {@code prefix} or {@code suffix} (or properties thereof) in the result,
105 * of the supplied {@code prefix}, {@code delimiter} and {@code suffix}.
108 * {@code prefix + suffix} (or properties thereof) in the result, unles
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/format/
TextHighlighterTest.java 53 final String prefix = "TE"; local
55 CharSequence seq = mTextHighlighter.applyPrefixHighlight("test", prefix);
58 seq = mTextHighlighter.applyPrefixHighlight("Test", prefix);
61 seq = mTextHighlighter.applyPrefixHighlight("TEst", prefix);
64 seq = mTextHighlighter.applyPrefixHighlight("a test", prefix);
80 final String prefix = "TE"; local
81 CharSequence seq = mTextHighlighter.applyPrefixHighlight("atest", prefix);
84 seq = mTextHighlighter.applyPrefixHighlight("atest otest", prefix);
87 seq = mTextHighlighter.applyPrefixHighlight("atest test", prefix);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
CacheManager.java 76 String prefix = cacheDir.getAbsolutePath() + "/"; local
78 BlobCache.deleteFiles(prefix + "imgcache");
79 BlobCache.deleteFiles(prefix + "rev_geocoding");
80 BlobCache.deleteFiles(prefix + "bookmark");
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DeferredFileOutputStream.java 72 * The temporary file prefix.
74 private String prefix; field in class:DeferredFileOutputStream
117 * @param prefix Prefix to use for the temporary file.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory)
126 if (prefix == null) {
127 throw new IllegalArgumentException("Temporary file prefix is missing");
129 this.prefix = prefix;
162 if (prefix != null)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java 53 * Constructor for a matcher that only checks if one string is the exact prefix of the other
77 boolean prefix = true;
80 prefix = false;
84 if (prefix) {
159 int prefix = 0; local
164 prefix++;
167 return jaro + Math.min(0.1f, 1f / length2) * prefix * (1 - jaro);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 16 char prefix[EBT_ULOG_PREFIX_LEN]; member in struct:ebt_ulog_info
25 char prefix[EBT_ULOG_PREFIX_LEN]; member in struct:ebt_ulog_packet_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 31 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
43 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 18 char prefix[EBT_ULOG_PREFIX_LEN]; member in struct:ebt_ulog_info
27 char prefix[EBT_ULOG_PREFIX_LEN]; member in struct:ebt_ulog_packet_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 31 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
43 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 31 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
42 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg

Completed in 1483 milliseconds

<<11121314151617181920>>