diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 54d2e76a86b6e..2d231405e8ea2 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -75,10 +75,10 @@ import java.util.Set; *
Some examples of action/data pairs are:
* *{@link #ACTION_VIEW} content://contacts/1 -- Display + *
{@link #ACTION_VIEW} content://contacts/people/1 -- Display * information about the person whose identifier is "1".
*{@link #ACTION_DIAL} content://contacts/1 -- Display + *
{@link #ACTION_DIAL} content://contacts/people/1 -- Display * the phone dialer with the person filled in.
*{@link #ACTION_VIEW} tel:123 -- Display @@ -89,10 +89,10 @@ import java.util.Set; *
{@link #ACTION_DIAL} tel:123 -- Display * the phone dialer with the given number filled in.
*{@link #ACTION_EDIT} content://contacts/1 -- Edit + *
{@link #ACTION_EDIT} content://contacts/people/1 -- Edit * information about the person whose identifier is "1".
*{@link #ACTION_VIEW} content://contacts/ -- Display + *
{@link #ACTION_VIEW} content://contacts/people/ -- Display * a list of people, which the user can browse through. This example is a * typical top-level entry into the Contacts application, showing you the * list of people. Selecting a particular person to view would result in a @@ -156,7 +156,7 @@ import java.util.Set; * defined in the Intent class, but applications can also define their own. * These strings use java style scoping, to ensure they are unique -- for * example, the standard {@link #ACTION_VIEW} is called - * "android.app.action.VIEW".
+ * "android.intent.action.VIEW". * *Put together, the set of actions, data types, categories, and extra data * defines a language for the system allowing for the expression of phrases @@ -347,7 +347,7 @@ import java.util.Set; *
{ action=android.app.action.MAIN, * category=android.app.category.LAUNCHER } is the actual intent * used by the Launcher to populate its top-level list.
- *{ action=android.app.action.VIEW
+ * { action=android.intent.action.VIEW
* data=content://com.google.provider.NotePad/notes }
* displays a list of all the notes under
* "content://com.google.provider.NotePad/notes", which
@@ -399,7 +399,7 @@ import java.util.Set;
* NoteEditor activity: { action=android.app.action.VIEW
+ * { action=android.intent.action.VIEW
* data=content://com.google.provider.NotePad/notes/{ID} }
* shows the user the content of note {ID}. { action=android.app.action.EDIT
diff --git a/opengl/libagl/primitives.cpp b/opengl/libagl/primitives.cpp
index f164c02eea349..769ec404a8a43 100644
--- a/opengl/libagl/primitives.cpp
+++ b/opengl/libagl/primitives.cpp
@@ -369,7 +369,7 @@ void compute_iterators_t::iterators0032(int32_t* it,
int32_t c0, int32_t c1, int32_t c2) const
{
int64_t it64[3];
- iterators0032(it, c0, c1, c2);
+ iterators0032(it64, c0, c1, c2);
it[0] = it64[0];
it[1] = it64[1];
it[2] = it64[2];
- *