HomeSort by relevance Sort by last modified time
    Searched refs:keyword (Results 26 - 50 of 382) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SelectFormat.java 85 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
120 * for each user-defined keyword.
121 * The pattern is a sequence of (keyword, message) pairs.
122 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+
126 * <p>You always have to define a phrase for the default keyword
127 * <code>other</code>; this phrase is returned when the keyword
129 * the <code>format</code> method matches no other keyword.
215 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message.
218 * @param keyword a keyword to be matched to one of the SelectFormat argument's keywords
    [all...]
PluralRules.java 39 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
63 * keyword "other" by the default rule.
70 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
71 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
89 * rule = keyword ':' condition
90 * keyword = &lt;identifier&gt;
1362 String keyword = description.substring(0, x).trim(); local
1605 private final String keyword; field in class:PluralRules.Rule
1666 String keyword = nextRule.getKeyword(); local
    [all...]
  /external/messageformat/java/com/ibm/icu/text/
SelectFormat.java 85 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
120 * for each user-defined keyword.
121 * The pattern is a sequence of (keyword, message) pairs.
122 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
126 * <p>You always have to define a phrase for the default keyword
127 * <code>other</code>; this phrase is returned when the keyword
129 * the <code>format</code> method matches no other keyword.
216 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message.
219 * @param keyword a keyword to be matched to one of the SelectFormat argument's keywords
    [all...]
  /external/autotest/site_utils/suite_scheduler/
base_event.py 21 def SectionName(keyword):
23 return keyword + _SECTION_SUFFIX
49 @var _keyword: the keyword/name of this event, e.g. new_build, nightly.
72 Uses cls.KEYWORD to determine which section to look at, and parses
78 section = SectionName(cls.KEYWORD)
82 def __init__(self, keyword, manifest_versions, always_handle):
85 @param keyword: the keyword/name of this event, e.g. nightly.
89 self._keyword = keyword
96 def keyword(self) member in class:BaseEvent
    [all...]
driver.py 59 for keyword, event in self._events.iteritems():
60 event.Merge(new_events[keyword])
82 events[klass.KEYWORD] = klass.CreateFromConfig(config, mv)
85 for keyword, task_list in tasks.iteritems():
86 if keyword in events:
87 events[keyword].tasks = task_list
89 logging.warning('%s, is an unknown keyword.', keyword)
99 keyword. Return a dictionary of these keyword: list of task mappings
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 40 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
64 * keyword "other" by the default rule.
71 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
72 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
90 * rule = keyword ':' condition
91 * keyword = &lt;identifier&gt;
1408 String keyword = description.substring(0, x).trim(); local
1651 private final String keyword; field in class:PluralRules.Rule
1712 String keyword = nextRule.getKeyword(); local
    [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java 36 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
60 * keyword "other" by the default rule.
67 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
68 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
86 * rule = keyword ':' condition
87 * keyword = &lt;identifier&gt;
1353 String keyword = description.substring(0, x).trim(); local
1596 private final String keyword; field in class:PluralRules.Rule
1657 String keyword = nextRule.getKeyword(); local
    [all...]
PluralFormat.java 81 * selector = explicitValue | keyword
83 * keyword = [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+
99 * If there is no exact-number match, then a keyword is selected by calling
102 * If there is no clause with that keyword, then the "other" clauses is returned.
161 * <code>String</code>(plural case keyword) --&gt; <code>String</code>
280 * @param selector the PluralSelector for mapping the number (minus offset) to a keyword.
298 // The keyword is null until we need to match against a non-explicit, not-"other" value.
299 // Then we get the keyword from the selector.
301 // or if the only non-explicit keyword is "other".)
302 String keyword=null local
    [all...]
  /external/curl/lib/
curl_fnmatch.c 74 char keyword[KEYLEN] = { 0 }; local
85 keyword[i] = c;
101 if(strcmp(keyword, "digit") == 0)
103 else if(strcmp(keyword, "alnum") == 0)
105 else if(strcmp(keyword, "alpha") == 0)
107 else if(strcmp(keyword, "xdigit") == 0)
109 else if(strcmp(keyword, "print") == 0)
111 else if(strcmp(keyword, "graph") == 0)
113 else if(strcmp(keyword, "space") == 0)
115 else if(strcmp(keyword, "blank") == 0
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
plurrule.h 53 * examines each condition in order and returns the keyword for the
68 * are assigned the keyword "other" by the default rule.
71 * This illustrates that the same keyword can be defined multiple times.
72 * Each rule is examined in order, and the first keyword whose condition
88 * rule = keyword ':' condition
89 * keyword = <identifier>
174 * 'other'. Callers need to check the value of keyword returned by
179 * UnicodeString keyword = pl->select(number);
180 * if (keyword== UnicodeString("one") {
324 * Given a number, returns the keyword of the first rule that applies t
    [all...]
upluralrules.h 25 * returns the keyword for the first condition that matches the number.
33 * the value of keyword returned by the uplrules_select function.
127 * Given a number, returns the keyword of the first rule that
131 * @param keyword The keyword of the rule that applies to number.
132 * @param capacity The capacity of keyword.
134 * @return The length of keyword.
140 UChar *keyword, int32_t capacity,
selfmt.h 101 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
138 * for each user-defined keyword.
139 * The pattern is a sequence of (keyword, message) pairs.
140 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
144 * <p>You always have to define a phrase for the default keyword
145 * <code>other</code>; this phrase is returned when the keyword
147 * the <code>format</code> method matches no other keyword.
210 * for the keyword rules.
225 * Selects the phrase for the given keyword
227 * @param keyword The keyword that is used to select an alternative
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralRulesTest.java 184 public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType sampleType,
186 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType);
187 if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expected)),
189 rules.getSamples(keyword, sampleType);
193 public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampleType,
196 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType);
202 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType));
323 for (String keyword : rules.getKeywords()) {
325 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType);
330 if (keyword.equals("other"))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralRulesTest.java 180 public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType sampleType,
182 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType);
183 if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expected)),
185 rules.getSamples(keyword, sampleType);
189 public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampleType,
192 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType);
198 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType));
319 for (String keyword : rules.getKeywords()) {
321 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType);
326 if (keyword.equals("other"))
    [all...]
  /external/icu/icu4c/source/i18n/
selfmt.cpp 86 SelectFormat::format(const UnicodeString& keyword,
93 // Check for the validity of the keyword
94 if (!PatternProps::isIdentifier(keyword.getBuffer(), keyword.length())) {
101 int32_t msgStart = findSubMessage(msgPattern, 0, keyword, status);
126 const UnicodeString& keyword, UErrorCode& ec) {
141 if(pattern.partSubstringMatches(part, keyword)) {
142 // keyword matches
  /external/protobuf/editors/
proto.vim 53 syn keyword pbTodo contained TODO FIXME XXX
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
61 syn keyword pbRPC service rpc returns
63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64
64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64
65 syn keyword pbType float double bool string byte
    [all...]
  /external/ImageMagick/coders/
vicar.c 153 keyword[MagickPathExtent],
228 Determine a keyword and its value.
230 p=keyword;
233 if ((size_t) (p-keyword) < (MagickPathExtent-1))
259 Assign a value to the specified keyword.
261 if (LocaleCompare(keyword,"Label_RECORDS") == 0)
263 if (LocaleCompare(keyword,"LBLSIZE") == 0)
265 if (LocaleCompare(keyword,"RECORD_BYTES") == 0)
267 if (LocaleCompare(keyword,"NS") == 0)
269 if (LocaleCompare(keyword,"LINES") == 0
149 keyword[MagickPathExtent], local
    [all...]
svg.c 799 *keyword,
837 keyword=(const char *) attributes[i];
839 switch (*keyword)
844 if (LocaleCompare(keyword,"cx") == 0)
850 if (LocaleCompare(keyword,"cy") == 0)
861 if (LocaleCompare(keyword,"fx") == 0)
867 if (LocaleCompare(keyword,"fy") == 0)
878 if (LocaleCompare(keyword,"height") == 0)
889 if (LocaleCompare(keyword,"id") == 0)
899 if (LocaleCompare(keyword,"r") == 0
795 *keyword, local
3626 keyword[MagickPathExtent], local
    [all...]
  /external/icu/icu4c/source/test/intltest/
plurults.h 43 int32_t line, const char *keyword, ...);
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.js 20 // Watch for keypresses in the keyword filter textbox, and update
21 // search results to reflect the keyword filter.
22 $('#resource-browser-keyword-filter').keyup(function() {
23 // Filter results on screen by keyword.
40 * Returns whether or not the given search result contains the given keyword.
42 function resultMatchesKeyword(result, keyword) {
43 keyword = keyword.toLowerCase();
45 result.title.en.toLowerCase().indexOf(keyword) >= 0)
48 result.description.en.toLowerCase().indexOf(keyword) >= 0
    [all...]
  /external/llvm/test/MC/AsmParser/
macros-argument-parsing-diagnostics.s 16 # CHECK: error: cannot mix positional and keyword arguments
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteQueryBuilder.java 43 private static void conditionallyAppend(StringBuilder sb, String keyword, String value) {
45 sb.append(keyword);
  /libcore/ojluni/src/main/java/sun/security/x509/
AVA.java 139 * keyword/OID map.
167 * @param keywordMap a Map where a keyword String maps to a corresponding
168 * OID String. Each AVA keyword will be mapped to the corresponding OID.
170 * keyword/OID mapping.
182 * First get the keyword indicating the attribute's type,
709 * OID/keyword map.
728 * OID/keyword map.
1195 private String keyword; field in class:AVAKeyword
    [all...]
  /external/ImageMagick/MagickCore/
coder.c 827 keyword[MagickPathExtent],
861 (void) CopyMagickString(keyword,token,MagickPathExtent);
862 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
871 if (LocaleNCompare(keyword,"<!--",4) == 0)
880 if (LocaleCompare(keyword,"<include") == 0)
887 (void) CopyMagickString(keyword,token,MagickPathExtent);
892 if (LocaleCompare(keyword,"file") == 0)
923 if (LocaleCompare(keyword,"<coder") == 0)
939 if (LocaleCompare(keyword,"/>") == 0)
955 switch (*keyword)
813 keyword[MagickPathExtent], local
    [all...]
  /external/v8/test/webkit/
class-syntax-super.js 64 '"SyntaxError: \'super\' keyword unexpected here"');
65 shouldThrow('x = class extends Base { constructor() { super(); } method() { super } }', '"SyntaxError: \'super\' keyword unexpected here"');
66 shouldThrow('x = class extends Base { constructor() { super(); } method() { return new super } }', '"SyntaxError: \'super\' keyword unexpected here"');
87 shouldThrow('new (class { constructor() { super() } })', '"SyntaxError: \'super\' keyword unexpected here"');
88 shouldThrow('function x() { super(); }', '"SyntaxError: \'super\' keyword unexpected here"');
89 shouldThrow('new (class extends Object { constructor() { function x() { super() } } })', '"SyntaxError: \'super\' keyword unexpected here"');
90 shouldThrow('new (class extends Object { constructor() { function x() { super.method } } })', '"SyntaxError: \'super\' keyword unexpected here"');
91 shouldThrow('function x() { super.method(); }', '"SyntaxError: \'super\' keyword unexpected here"');
92 shouldThrow('function x() { super(); }', '"SyntaxError: \'super\' keyword unexpected here"');

Completed in 3798 milliseconds

12 3 4 5 6 7 8 91011>>