HomeSort by relevance Sort by last modified time
    Searched full:star (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 43 ATTRIBUTE User-Name-Is-Star 1035 integer
44 VALUE User-Name-Is-Star No 0
45 VALUE User-Name-Is-Star Yes 1
  /frameworks/base/docs/html/resources/articles/
drawable-mutations.jd 39 application with a list of books. Each book has a star next to its name, totally
49 Drawable star = context.getResources().getDrawable(R.drawable.star);
51 star.setAlpha(255); // opaque
53 star.setAlpha(70); // translucent
81 <pre>Drawable star = context.getResources().getDrawable(R.drawable.star);
83 star.mutate().setAlpha(255); // opaque
85 star. mutate().setAlpha(70); // translucent
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 33 boolean star = false;
40 if (! star)
42 star = true;
49 star = false;
246 boolean star = false;
263 star = true;
275 if (! star) return false;
285 if (! star) return false;
305 boolean star = false;
322 star = true
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
MediaRange.java 46 * media-range = ( "STAR/STAR"
47 * | ( type "/" STAR )
  /external/skia/tests/
TriangulationTest.cpp 67 static const SkPoint star[] = { variable
133 static const SkPoint star[] = { variable
156 #define kNumStarHoleVertices (sizeof(star) / sizeof(star[0]))
159 // Star test
174 bool success = SkConcaveToTriangles(kNumStarVertices, star, &triangles);
175 PrintTriangles(triangles, kNumStarVertices, star, reporter);
178 reporter->report("Triangulate Star", success ? reporter->kPassed
183 // Star with hole test
205 bool success = SkConcaveToTriangles(kNumStarHoleVertices, star, &triangles)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 32 private CompoundButton mStar; // Star for bookmarking
44 mStar = (CompoundButton) findViewById(R.id.star);
68 * Set whether or not this represents a bookmark, and make sure the star
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
star_decoration.h 15 // Star icon on the right side of the field.
location_bar_view_mac.h 86 // Set the starred state of the bookmark star.
89 // Get the point on the star for the bookmark bubble to aim at.
174 // Checks if the bookmark star should be enabled or not.
201 // Bookmark star right of page actions.
228 // Used to change the visibility of the star decoration.
instant_opt_in_view.mm 11 // How to round off the popup's corners. Goal is to match star and go
star_decoration.mm 17 // between the star's lower tips. The popup should be where the
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_CharStar.h 20 * @brief external API of the Char Star set of functions.
48 /* prototypes of the Char Star functions */
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 36 * (eg, checkmark, star, subject, sender, labels, etc.) It will inflate a view,
59 // Star.
253 View star = view.findViewById(R.id.star); local
254 coordinates.starX = getX(star);
255 coordinates.starY = getY(star);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bubble_controller.h 19 // bubble that pops up when clicking on the STAR next to the URL to
51 // user clicked on the star. (if NO, this is a brand new bookmark).
  /development/samples/XmlAdapters/res/layout/
contact_item.xml 35 android:id="@+id/star"
  /external/chromium/chrome/browser/ui/cocoa/
info_bubble_window.h 12 // A rounded window with an arrow used for example when you click on the STAR
  /external/chromium/chrome/browser/ui/views/location_bar/
star_view.h 25 // Toggles the star on or off.
  /frameworks/base/core/res/res/drawable/
ratingbar_full_empty.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
ratingbar_full_empty_holo_dark.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
ratingbar_full_empty_holo_light.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
ratingbar_full_filled.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
ratingbar_full_filled_holo_dark.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
ratingbar_full_filled_holo_light.xml 17 <!-- This is the rating bar drawable that is used to a show a filled star. -->
  /packages/apps/Contacts/res/layout/
favorites_star.xml 25 android:id="@+id/star"
  /frameworks/base/core/java/android/widget/
RatingBar.java 43 * internally as the background for a fractionally filled star.
111 // A touch inside a star fill up to that fractional area (slightly more
207 * half-star granularity is wanted, this would be 0.5.
230 * @return The amount of progress that fits into a star
261 * partially filled star. This method keeps the secondary progress in sync
  /external/stlport/test/unit/
hash_test.cpp 21 const char star = 92; variable
23 const char star = 42; variable
284 CPPUNIT_ASSERT( s.count(star) == 0 );
285 s.insert(star);
286 CPPUNIT_ASSERT( s.count(star) == 1 );
287 s.insert(star);
288 CPPUNIT_ASSERT( s.count(star) == 2 );
292 i = s.find(star);
295 CPPUNIT_ASSERT( s.erase(star) == 2 );

Completed in 2051 milliseconds

1 2 3 4 5 6 7 8 91011>>