OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:noteUri
(Results
1 - 4
of
4
) sorted by null
/development/samples/NotePad/src/com/example/android/notepad/
NotesList.java
389
Uri
noteUri
= ContentUris.withAppendedId(getIntent().getData(), info.id);
397
startActivity(new Intent(Intent.ACTION_EDIT,
noteUri
));
409
noteUri
) // the URI
421
noteUri
, // The URI of the provider
NotePadProvider.java
558
Uri
noteUri
= ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, rowId);
561
getContext().getContentResolver().notifyChange(
noteUri
, null);
562
return
noteUri
;
/development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java
293
Uri
noteUri
= ContentUris.withAppendedId(MainTable.CONTENT_ID_URI_BASE, rowId);
294
getContext().getContentResolver().notifyChange(
noteUri
, null);
295
return
noteUri
;
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java
294
Uri
noteUri
= ContentUris.withAppendedId(MainTable.CONTENT_ID_URI_BASE, rowId);
295
getContext().getContentResolver().notifyChange(
noteUri
, null);
296
return
noteUri
;
Completed in 711 milliseconds