/external/chromium_org/win8/metro_driver/ |
secondary_tile.cc | 160 mswr::ComPtr<winfoundtn::IUriRuntimeClass> uri; local 161 hr = uri_factory->CreateUri(logo_url.Get(), &uri); 162 CheckHR(hr, "Failed to create URI"); 170 uri.Get(),
|
/external/libxml2/ |
xmlcatalog.c | 27 #include <libxml/uri.h> 552 xmlURIPtr uri; local 555 uri = xmlParseURI(argv[i]); 556 if (uri == NULL) { 566 xmlFreeURI(uri); 572 printf ("No entry for URI %s\n", argv[i]);
|
/external/libxslt/libxslt/ |
security.c | 57 #include <libxml/uri.h> 371 xmlURIPtr uri; local 374 uri = xmlParseURI((const char *)URL); 375 if (uri == NULL) { 376 uri = xmlCreateURI(); 377 if (uri == NULL) { 382 uri->path = (char *)xmlStrdup(URL); 384 if ((uri->scheme == NULL) || 385 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { 388 if ((uri->path)&&(uri->path[0]=='/')& 436 xmlURIPtr uri; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressImpl.java | 37 * Address structure. Imbeds a URI and adds a display name. 106 SipUri uri = (SipUri) address; local 107 return uri.getHostPort(); 110 /** Get the port from the imbedded URI. This assumes that a SIP URL 119 SipUri uri = (SipUri) address; local 120 return uri.getHostPort().getPort(); 131 SipUri uri = (SipUri) address; local 132 return uri.getUserAtHostPort(); 144 SipUri uri = (SipUri) address; local 145 return uri.getHostPort().getHost().getHostname() 155 SipUri uri = (SipUri) address; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultRouter.java | 51 * URI Jiang He - use address in route header. Significant changes to conform to 69 * <li> If the request contains one or more Route headers, use the URI of the 74 * <li> Otherwise, use the request URI as next hop. If the request URI is not a 75 * SIP URI, call {@link javax.sip.address.Router#getNextHop(Request)} provided 86 * <li>The implementation places the Request-URI into the Route header field as 89 * the Request-URI and removes that value from the Route header field. 91 * Subsequently, the request URI will be used as next hop target 137 * URI uri = firstRoute.getAddress().getURI() 197 URI uri = route.getAddress().getURI(); local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowContentResolver.java | 7 import android.net.Uri; 28 private HashMap<Uri, TestCursor> uriCursorMap = new HashMap<Uri, TestCursor>(); 44 public final Uri uri; field in class:ShadowContentResolver.NotifiedUri 48 public NotifiedUri(Uri uri, ContentObserver observer, boolean syncToNetwork) { 49 this.uri = uri; 64 public final InputStream openInputStream(final Uri uri) [all...] |
ShadowVideoView.java | 5 import android.net.Uri; 19 private Uri uri; field in class:ShadowVideoView 52 public void setVideoURI(Uri uri) { 53 this.uri = uri; 134 return uri == null ? null : uri.toString();
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/ |
SimpleTestCursorTest.java | 4 import android.net.Uri; 20 private Uri uri; field in class:SimpleTestCursorTest 28 uri = Uri.parse("http://foo"); 30 shadowContentResolver.setCursor(uri, cursor); 39 contentResolver.query(uri, new String[]{"projection"}, "selection", new String[]{"selection"}, "sortOrder"); 40 assertThat(cursor.uri, equalTo(uri));
|
/external/smack/src/com/kenai/jbosh/ |
BodyParserXmlPull.java | 83 String uri = xpp.getNamespace(); local 85 QName name = new QName(uri, localName, prefix); 89 LOG.finest(" URI: " + uri); 99 + "' in '" + uri + "')"));
|
/frameworks/base/core/java/android/preference/ |
RingtonePreference.java | 23 import android.net.Uri; 30 * The chosen ringtone's URI will be persisted as a string. 173 * By default, this saves the ringtone URI to the persistent storage as a 176 * @param ringtoneUri The chosen ringtone's {@link Uri}. Can be null. 178 protected void onSaveRingtone(Uri ringtoneUri) { 186 * By default, this restores the previous ringtone URI from the persistent 191 protected Uri onRestoreRingtone() { 193 return !TextUtils.isEmpty(uriString) ? Uri.parse(uriString) : null; 218 onSaveRingtone(Uri.parse(defaultValue)); 235 Uri uri = data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI) local [all...] |
/frameworks/base/media/mca/tests/src/android/camera/mediaeffects/tests/functional/ |
EffectsVideoCapture.java | 30 import android.net.Uri; 73 Uri uri = Uri.fromFile(file); local 74 verify(getActivity(), uri); local 78 private void verify(CameraEffectsRecordingSample activity, Uri uri) throws Exception { 79 assertNotNull(uri); 82 retriever.setDataSource(activity, uri);
|
/frameworks/base/services/java/com/android/server/am/ |
CoreSettingsObserver.java | 21 import android.net.Uri; 76 Uri uri = Settings.Secure.getUriFor(setting); local 78 uri, false, this);
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
RsBench.java | 25 import android.net.Uri; 54 Uri uri = intent.getData(); local 55 if (uri != null) { 57 String scheme = uri.getScheme(); 59 iterations = Integer.parseInt(uri.getSchemeSpecificPart());
|
/frameworks/wilhelm/tests/mimeUri/ |
slesTestGetPositionUri.cpp | 34 * a resource, for instance because a file URI is invalid, or an HTTP server doesn't respond. */ 126 /* Play some audio from a URI and regularly query the position */ 137 SLDataLocator_URI uri; local 181 /* Setup the data source structure for the URI */ 182 uri.locatorType = SL_DATALOCATOR_URI; 183 uri.URI = (SLchar*) path; 189 audioSource.pLocator = (void *)&uri; 203 fprintf(stdout, "URI example: after Realize\n"); 238 /* Play the URI */ [all...] |
slesTestLoopUri.cpp | 44 * a resource, for instance because a file URI is invalid, or an HTTP server doesn't respond. 121 /* Play some music from a URI */ 132 SLDataLocator_URI uri; local 168 /* Setup the data source structure for the URI */ 169 uri.locatorType = SL_DATALOCATOR_URI; 170 uri.URI = (SLchar*) path; 176 audioSource.pLocator = (void *)&uri; 194 fprintf(stdout, "URI example: after Realize\n"); 235 /* Play the URI */ [all...] |
slesTestManyPlayers.cpp | 47 SLDataLocator_URI uri; variable 157 /* Setup the data source structure for the URI */ 160 //uri = { SL_DATALOCATOR_URI /*locatorType*/, (SLchar*) path /*URI*/ }; 163 uri.locatorType = SL_DATALOCATOR_URI; 164 uri.URI = (SLchar*) path; 170 audioSource.pLocator = (void *)&uri; 271 /* Play the URI */
|
slesTestPlayUri.cpp | 124 /* Play some music from a URI */ 135 SLDataLocator_URI uri; local 174 /* Setup the data source structure for the URI */ 175 uri.locatorType = SL_DATALOCATOR_URI; 176 uri.URI = (SLchar*) path; 182 audioSource.pLocator = (void *)&uri; 196 fprintf(stdout, "URI example: after Realize\n"); 242 /* Play the URI */ 275 fprintf(stdout, "URI example: starting to play\n") [all...] |
/frameworks/wilhelm/tests/ |
mimeUri_test.cpp | 98 /* Play some music from a URI */ 109 SLDataLocator_URI uri; local 148 /* Setup the data source structure for the URI */ 149 uri.locatorType = SL_DATALOCATOR_URI; 150 uri.URI = (SLchar*) path; 156 audioSource.pLocator = (void *)&uri; 194 /* Play the URI */
|
/packages/apps/Browser/src/com/android/browser/ |
GeolocationPermissionsPrompt.java | 20 import android.net.Uri; 78 Uri uri = Uri.parse(mOrigin); local 79 setMessage("http".equals(uri.getScheme()) ? mOrigin.substring(7) : mOrigin);
|
Performance.java | 62 WebAddress uri = new WebAddress(url); local 63 host = uri.getHost();
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
HomeProvider.java | 24 import android.net.Uri;
44 public int delete(Uri uri, String selection, String[] selectionArgs) {
49 public String getType(Uri uri) {
54 public Uri insert(Uri uri, ContentValues values) {
64 public Cursor query(Uri uri, String[] projection, String selection, 81 new RequestHandler(getContext(), uri, afd.createOutputStream()).start(); local 94 Uri uri = Uri.parse(url); local [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
DismissAlarmsService.java | 25 import android.net.Uri; 73 Uri uri = CalendarAlerts.CONTENT_URI; local 97 resolver.update(uri, values, selection, null);
|
SnoozeAlarmsService.java | 25 import android.net.Uri; 71 Uri uri = CalendarAlerts.CONTENT_URI; local 76 resolver.update(uri, dismissValues, selection, null); 82 resolver.insert(uri, values);
|
/packages/apps/Camera/src/com/android/camera/ |
MediaSaver.java | 21 import android.net.Uri; 50 public void onMediaSaved(Uri uri); 113 Uri uri = storeImage(r.data, r.title, r.date, r.loc, r.width, r.height, local 115 r.listener.onMediaSaved(uri); 132 private Uri storeImage(final byte[] data, String title, long date, 134 Uri uri = Storage.addImage(mContentResolver, title, date, loc, local 136 return uri; [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ContactEditorActivity.java | 24 import android.net.Uri; 118 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null; local 119 mFragment.load(action, uri, getIntent().getExtras()); 175 public void onContactSplit(Uri newLookupUri) { 186 Uri contactLookupUri, ArrayList<ContentValues> values) { 228 Uri rawContactUri, Bundle intentExtras, boolean redirect) {
|