HomeSort by relevance Sort by last modified time
    Searched full:star (Results 151 - 175 of 716) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.h 16 * @power_state: Power state (this is a five-star comment).
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DialpadTextView.java 27 * This is a custom text view intended only for rendering the numerals (and star and pound) on the
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 746 const unsigned char *star = 0; local
765 if (star != NULL || (state & LABEL_IDNA) != 0 || dots)
774 star = &p[i];
825 * there must be at least two dots after the star.
830 return star;
838 const unsigned char *star = NULL; local
845 star = valid_star(pattern, pattern_len, flags);
846 if (star == NULL)
849 return wildcard_match(pattern, star - pattern,
850 star + 1, (pattern + pattern_len) - star - 1
    [all...]
  /external/clang/include/clang/Basic/
OperatorKinds.def 65 OVERLOADED_OPERATOR(Star , "*" , star , true , true , false)
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Wildcard.java 27 private static Pattern star = Pattern.compile("\\*"); field in class:Wildcard
47 regex = replaceAllLiteral(star, regex, "([^/]+)");
  /external/mesa3d/docs/
games.html 30 </li><li><a href="http://freetrek.linuxgames.com/" target="_parent">Free Trek</a> - Star
49 - Super Star Trek
  /external/nist-sip/java/gov/nist/javax/sip/header/
Accept.java 73 return mediaRange.type.compareTo(STAR) == 0;
85 return mediaRange.getSubtype().compareTo(STAR) == 0;
  /external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_more_functions/
py_contours_more_functions.markdown 39 img = cv2.imread('star.jpg')
91 img1 = cv2.imread('star.jpg',0)
  /external/skia/example/
SkiaSDLExample.cpp 31 * draw more complex primitives (star)
82 // Creates a star type shape using a SkPath
  /packages/apps/StorageManager/res/values-cs/
strings.xml 28 <string name="deletion_helper_photos_summary" msgid="2636724338009030470">"<xliff:g id="USED">%1$s</xliff:g> ? star?í ne? <xliff:g id="DAYS">%2$d</xliff:g> d"</string>
48 <string name="automatic_storage_manager_notification_summary" msgid="2267399886362245822">"Umo?n?te správci úlo?i?t? automaticky uvolnit místo odstran?ním starých fotek a videí, a? se telefon op?t zaplní."</string>
  /packages/apps/StorageManager/res/values-sk/
strings.xml 28 <string name="deletion_helper_photos_summary" msgid="2636724338009030470">"<xliff:g id="USED">%1$s</xliff:g> ? star?ie ako <xliff:g id="DAYS">%2$d</xliff:g> d."</string>
48 <string name="automatic_storage_manager_notification_summary" msgid="2267399886362245822">"Povo?te Správcovi úlo?iska uvo??ova? miesto automatickým odstra?ovaním starých fotiek a videí, ke? sa vá? telefón za?ne znova zapl?ova?."</string>
  /packages/apps/UnifiedEmail/src/com/android/mail/analytics/
AnalyticsUtils.java 101 } else if (id == R.id.star) {
102 s = "star";
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationMessage.java 36 * A message created as part of a conversation view. Sometimes, like during star/unstar, it's
112 public void star(boolean newStarred) { method in class:ConversationMessage
  /packages/inputmethods/LatinIME/java/res/values/
emoji-categories.xml 58 <item>2734</item> <!-- EIGHT POINTED BLACK STAR -->
59 <item>2733</item> <!-- EIGHT POINTED PINWHEEL STAR -->
  /external/skia/site/user/api/
skpaint.md 603 SkPath star() {
625 SkPath path(star());
645 SkPath path(star());
666 SkPath path(star());
686 SkPath path(star());
713 SkPath path(star());
737 SkPath path(star());
  /external/v8/test/cctest/interpreter/bytecode_expectations/
IfConditions.golden 123 B(Star), R(0),
128 B(Star), R(0),
268 B(Star), R(0),
270 B(Star), R(1),
495 B(Star), R(0),
497 B(Star), R(1),
727 B(Star), R(0),
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 518 | ss=STAR {$value = "*";} // used for k=*
640 {if (LA(1)==OR||(LA(2)==QUESTION||LA(2)==PLUS||LA(2)==STAR)) prefixWithSynPred($a1.tree);}
644 {if (LA(1)==OR||(LA(2)==QUESTION||LA(2)==PLUS||LA(2)==STAR)) prefixWithSynPred($a2.tree);}
676 if ( LA(1)==OR || (LA(2)==QUESTION||LA(2)==PLUS||LA(2)==STAR) )
682 if (LA(1)==OR||(LA(2)==QUESTION||LA(2)==PLUS||LA(2)==STAR))
784 | STAR
876 | STAR
968 | STAR
1108 STAR: '*' ;
  /ndk/sources/host-tools/nawk-20071023/
b.c 48 #define UNARY case STAR: case PLUS: case QUEST:
53 unary (STAR, PLUS, QUEST): left is child, right is null
128 p1 = op2(CAT, op2(STAR, op2(ALL, NIL, NIL), NIL), p);
129 /* put ALL STAR in front of reg. exp. */
411 case STAR:
435 case STAR:
700 case STAR:
702 return (unary(op2(STAR, np, NIL)));
778 case '*': return STAR;
  /external/libgdx/tests/gdx-tests-android/assets/data/
singleTextureAllAdditive.p 150 particle-star.png
302 particle-star.png
458 particle-star.png
  /prebuilts/go/darwin-x86/src/regexp/syntax/
compile.go 142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
241 func (c *compiler) star(f1 frag, nongreedy bool) frag {
256 return frag{f1.i, c.star(f1, nongreedy).out}
  /prebuilts/go/linux-x86/src/regexp/syntax/
compile.go 142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
241 func (c *compiler) star(f1 frag, nongreedy bool) frag {
256 return frag{f1.i, c.star(f1, nongreedy).out}
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_FrequentsStrequentsTest.java 179 // Star/favorite the first and third contact.
244 //Star all 3 contacts
281 // Star all 3 contacts
401 * @param contactId Contact ID corresponding to the contact to star
  /external/chromium-trace/catapult/
.eslintrc 19 "generator-star-spacing": "off",
  /external/chromium-trace/catapult/third_party/coverage/
igor.py 349 star, num_pos:
350 star(boolean): Does `function` accept *args?
374 star, num_args = analyze_args(handler)
375 if star:
  /external/chromium-trace/catapult/third_party/polymer/components/iron-icon/
README.md 27 <iron-icon src="star.png"></iron-icon>

Completed in 2520 milliseconds

1 2 3 4 5 67 8 91011>>