/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_DeletedContacts.java | 23 import android.net.Uri; 38 private static final Uri URI = ContactsContract.DeletedContacts.CONTENT_URI; 49 DatabaseAsserts.assertDeleteIsUnsupported(mResolver, URI); 51 Uri uri = ContentUris.withAppendedId(URI, 1L); local 52 DatabaseAsserts.assertDeleteIsUnsupported(mResolver, uri); 56 DatabaseAsserts.assertInsertIsUnsupported(mResolver, URI);
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
RawContactUtil.java | 24 import android.net.Uri; 34 private static final Uri URI = ContactsContract.RawContacts.CONTENT_URI; 38 Uri uri = ContentUris.withAppendedId(URI, rawContactId); local 39 resolver.update(uri, values, null, null); 60 Uri uri = resolver.insert(URI, values) local 66 Uri uri = ContentUris.withAppendedId(URI, rawContactId); local 78 Uri uri = ContentUris.withAppendedId(URI, contactId); local 85 Uri uri = ContentUris.withAppendedId(URI, rawContactId) local [all...] |
/external/chromium_org/third_party/libxml/src/include/libxml/ |
entities.h | 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */ 57 const xmlChar *URI; /* the full URI as computed */
|
/external/jsilver/src/com/google/streamhtmlparser/ |
HtmlParser.java | 61 * {@code URI} is for attributes taking a URI such as "href" and "src". 71 URI, 226 * {@link #getAttributeType()} returning {@code .ATTR_TYPE#URI}.
|
/external/libxml2/include/libxml/ |
entities.h | 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */ 57 const xmlChar *URI; /* the full URI as computed */
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
UriMatcherTest.java | 4 import android.net.Uri; 24 Uri URI; 27 URI = Uri.parse("content://" + AUTH); 67 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1)); 70 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/1")), is(2)); 73 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1)) [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/database/ |
NoNullCursorAsyncQueryHandlerTest.java | 20 import android.net.Uri; 36 private static final Uri URI = Uri.parse("content://" + AUTHORITY); 45 public Cursor query(Uri uri, String[] projection, String selection, 76 handler.startQuery(1, null, URI, PROJECTION, null, null, null); 103 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null); 130 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherSettings.java | 19 import android.net.Uri; 100 static final Uri CONTENT_URI = Uri.parse("content://" + 105 * The content:// style URL for this table. When this Uri is used, no notification is 108 static final Uri CONTENT_URI_NO_NOTIFICATION = Uri.parse("content://" + 120 static Uri getContentUri(long id, boolean notify) { 121 return Uri.parse("content://" + LauncherProvider.AUTHORITY + 221 * The URI associated with the favorite. It is used, for instance, by 225 static final String URI = "uri" [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
TransactionBundle.java | 59 * Key of the URI. 61 * Uri of the M-Send.req/M-Read-Rec.ind in TYPE_SEND_TRANSACTION and 64 public static final String URI = "uri"; 87 * @param uri The relevant URI for this transaction. Indicates the URL of the 88 * M-Retrieve.conf in TYPE_RETRIEVE_TRANSACTION, or the Uri of the 92 public TransactionBundle(int transactionType, String uri) { 94 mBundle.putString(URI, uri); [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/ |
RawContactUtil.java | 24 import android.net.Uri; 35 private static final Uri URI = ContactsContract.RawContacts.CONTENT_URI; 39 Uri uri = ContentUris.withAppendedId(URI, rawContactId); local 40 resolver.update(uri, values, null, null); 45 Uri uri = ContentUris.withAppendedId(ContactsContract.RawContacts.CONTENT_URI, local 47 Cursor cursor = resolver.query(uri, projection, null, null, null) 58 Uri uri = ContentUris.withAppendedId(ContactsContract.RawContacts.CONTENT_URI, contactId); local 65 Uri uri = ContentUris.withAppendedId(ContactsContract.RawContacts.CONTENT_URI, rawContactId) local 93 final Uri uri = TestUtil.maybeAddAccountQueryParameters(ContactsContract.RawContacts.CONTENT_URI, account); local [all...] |
/development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/ |
NativeAudio.java | 43 static String URI; 64 // initialize URI spinner 73 URI = parent.getItemAtPosition(pos).toString(); 77 URI = null; 131 if (!created && URI != null) { 132 created = createUriAudioPlayer(URI); 295 public static native boolean createUriAudioPlayer(String uri);
|
/external/chromium_org/third_party/libxslt/libxslt/ |
functions.c | 34 #include <libxml/uri.h> 60 * @ns_uri: the function namespace URI 105 xsltDocumentFunctionLoadDocument(xmlXPathParserContextPtr ctxt, xmlChar* URI) 108 xmlURIPtr uri; local 123 uri = xmlParseURI((const char *) URI); 124 if (uri == NULL) { 126 "document() : failed to parse URI\n"); 134 fragment = (xmlChar *)uri->fragment; 137 uri->fragment = NULL [all...] |
preproc.c | 28 #include <libxml/uri.h> 631 * href = { uri-reference } 872 * namespace = { uri-reference } 990 * namespace = { uri-reference }> [all...] |
/external/libxslt/libxslt/ |
functions.c | 34 #include <libxml/uri.h> 60 * @ns_uri: the function namespace URI 105 xsltDocumentFunctionLoadDocument(xmlXPathParserContextPtr ctxt, xmlChar* URI) 108 xmlURIPtr uri; local 123 uri = xmlParseURI((const char *) URI); 124 if (uri == NULL) { 126 "document() : failed to parse URI\n"); 134 fragment = (xmlChar *)uri->fragment; 137 uri->fragment = NULL [all...] |
preproc.c | 28 #include <libxml/uri.h> 631 * href = { uri-reference } 872 * namespace = { uri-reference } 990 * namespace = { uri-reference }> [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Challenge.java | 57 private static String URI = ParameterNames.URI; 113 * get the URI field 117 return (String) authParams.getValue(URI);
|
AuthenticationHeader.java | 72 public static final String URI = ParameterNames.URI; 117 || name.equalsIgnoreCase(ParameterNames.URI) 247 * Sets the URI of the WWWAuthenicateHeader to the <var>uri</var> parameter 250 * @param uri - 251 * the new URI of this AuthenicationHeader. 257 public void setURI(javax.sip.address.URI uri) { 258 if (uri != null) [all...] |
ParameterNames.java | 46 public static final String URI = "uri";
|
/external/smack/src/org/xbill/DNS/ |
CERTRecord.java | 47 /** Certificate format defined by URI */ 48 public static final int URI = 253; 68 types.add(URI, "URI"); 101 /** Certificate format defined by URI */ 102 public static final int URI = CertificateType.URI;
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
PropertyOptions.java | 27 public static final int URI = 0x00000002; 74 * @return Return whether the property value is a URI. It is serialized to RDF using the 79 return getOption(URI); 89 setOption(URI, value); 372 URI | 393 case URI : return "URI"; 411 * and URI cannot be a struct. 423 else if ((options & URI) > 0 && (options & (ARRAY | STRUCT)) > 0)
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothShare.java | 36 import android.net.Uri; 54 * The content:// URI for the data table in the provider 56 public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp"); 78 * The name of the column containing the URI of the file being 87 public static final String URI = "uri"; 347 * requests with unknown/unsupported URI schemes.
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
DirectoryListLoader.java | 24 import android.net.Uri; 45 public static final Uri URI = Directory.CONTENT_URI; 148 Cursor cursor = context.getContentResolver().query(DirectoryQuery.URI,
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherSettings.java | 19 import android.net.Uri; 111 static final Uri CONTENT_URI = Uri.parse("content://" + 129 static final Uri CONTENT_URI = Uri.parse("content://" + 136 static final Uri OLD_CONTENT_URI = Uri.parse("content://" + 141 * The content:// style URL for this table. When this Uri is used, no notification is 144 static final Uri CONTENT_URI_NO_NOTIFICATION = Uri.parse("content://" [all...] |
/external/chromium_org/third_party/libxml/src/ |
parserInternals.c | 49 #include <libxml/uri.h> [all...] |
/external/libxml2/ |
parserInternals.c | 49 #include <libxml/uri.h> [all...] |