HomeSort by relevance Sort by last modified time
    Searched defs:NUMBER (Results 1 - 25 of 27) sorted by null

1 2

  /cts/libs/json/src/com/android/json/stream/
JsonToken.java 61 * A JSON number represented in this API by a Java {@code double}, {@code
64 NUMBER,
  /development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/sms/
SmsTest.java 41 public final static String NUMBER = "5551212";
49 * Verify that an SMS has been received with the correct number and body
56 String number = c.getString(c.getColumnIndexOrThrow("address")); local
61 assertEquals(NUMBER, number);
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
EbayPolicyExample.java 91 private static final Pattern NUMBER = Pattern.compile(
140 .allowAttributes("size").matching(NUMBER).onElements("font")
156 .allowAttributes("border", "hspace", "vspace").matching(NUMBER)
159 .matching(NUMBER).onElements("table")
195 .allowAttributes("colspan", "rowspan").matching(NUMBER)
  /external/chromium_org/third_party/mesa/src/src/glsl/
s_expression.h 38 #define SX_AS_NUMBER(x) SX_AS_(number, x)
159 s_pattern(s_number *&s) : p_number(&s), type(NUMBER) { }
174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
  /external/ipsec-tools/src/racoon/
prsa_par.h 61 NUMBER = 277,
85 #define NUMBER 277
cfparse.h 186 NUMBER = 402,
351 #define NUMBER 402
  /external/mesa3d/src/glsl/
s_expression.h 38 #define SX_AS_NUMBER(x) SX_AS_(number, x)
159 s_pattern(s_number *&s) : p_number(&s), type(NUMBER) { }
174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
  /cts/tools/signature-tools/test/signature/comparator/
MethodCompareTests.java 326 "public class J<W> extends I<Number,W>{" +
423 CompilationUnit NUMBER = new CompilationUnit("a.Number",
425 "public class Number{}");
433 "public class E extends A<Number>{" +
434 " public void m(Number n){}" +
438 "public class E extends A<Number>{}");
439 IApi fromApi = convert(E0, Q, NUMBER);
440 IApi toApi = convert(E1, Q, NUMBER);
448 CompilationUnit NUMBER = new CompilationUnit("a.Number",
    [all...]
  /external/bison/examples/calc++/
calc++-parser.hh 101 NUMBER = 260
190 /// For a state, default reduction number.
201 /// - if negative, reduce the rule which number is the opposite.
229 /// For each rule, its source line number.
231 /// For each scanner token number, its symbol number.
243 /// Convert a scanner token number \a t to a symbol number.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokens.py 26 NUMBER = 'number'
87 EXPRESSION_ENDER_TYPES = [tokens.TokenType.NORMAL, IDENTIFIER, NUMBER,
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokens.py 26 NUMBER = 'number'
87 EXPRESSION_ENDER_TYPES = [tokens.TokenType.NORMAL, IDENTIFIER, NUMBER,
  /external/chromium_org/v8/src/
ast-value-factory.h 137 // AstValue is either a string, a number, a string array, a boolean, or a
146 return type_ == NUMBER || type_ == SMI;
157 if (type_ == NUMBER)
190 NUMBER,
203 explicit AstValue(double n) : type_(NUMBER) { number_ = n; }
312 const AstValue* NewNumber(double number);
313 const AstValue* NewSmi(int number);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java 177 String NUMBER = "-?(?:0|[1-9][0-9]*)(?:\\.[0-9]*[1-9])?(?:e-?[1-9][0-9]*)?";
193 CssTokens.TokenType.DIMENSION, Pattern.compile(NUMBER + "[a-z]+"));
219 CssTokens.TokenType.NUMBER,
220 Pattern.compile(NUMBER));
223 Pattern.compile(NUMBER + "%"));
251 * "1:NUMBER ex:IDENT" -> "1ex:DIMENSION" is a common source source of
258 if (it.type() != TokenType.NUMBER) {
263 } while (it.hasNext() && it.type() == TokenType.NUMBER);
  /external/chromium_org/v8/src/ic/
ic-state.h 95 return (result_kind_ > SMI && result_kind_ <= NUMBER) &&
97 left_kind_ <= NUMBER) ||
99 right_kind_ <= NUMBER));
144 enum Kind { NONE, SMI, INT32, NUMBER, STRING, GENERIC };
151 return (kind >= SMI && kind <= NUMBER) || kind == GENERIC;
184 // SMI < NUMBER
190 NUMBER,
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 203 NUMBER,
311 * The number of elements in {@link #brackets} that are valid.
324 * The number of elements in {@link #open} that are valid.
440 // <bad-url>, <delim>, <number>, <percentage>,
956 // dimension := <number> <ident>
969 // Skip over space between number and unit.
983 // Normalize the number onto the buffer.
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.h 47 // A very small number of users will want to construct their own
168 // The number of fields in this message type.
174 // Looks up a field by declared tag number. Returns NULL if no such field
176 const FieldDescriptor* FindFieldByNumber(int number) const;
195 // The number of nested types in this message type.
207 // The number of enum types in this message type.
229 // The number of extension ranges in this message type.
236 // Returns true if the number is in one of the extension ranges.
237 bool IsExtensionNumber(int number) const;
239 // The number of extensions -- extending *other* messages -- that wer
    [all...]
  /external/e2fsprogs/intl/
plural.c 17 # define NUMBER 261
159 /* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */
162 /* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */
212 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
227 "ADDOP2", "MULOP2", "'!'", "NUMBER", "':'", "'n'", "'('", "')'",
232 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
239 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
418 local variables YYSIZE and YYSTACKSIZE give the old and new number of
653 /* Number of parse errors so far. */ \
686 /* Number of tokens to shift before error messages enabled. *
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 436 // Return a random number in [0, size)
437 // Every number has different chance (aka weight) to be selected.
468 // Give a random number with the consideration of weight.
469 // Every random number is associated with a weight.
479 // The algorithms to generate the number is illustrated by preceding figure.
784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT};
867 terminated(NUMBER);
960 if (token == NUMBER){
962 match(NUMBER);
1000 if (token != NUMBER){
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_attr.js 50 * Observe that all characters are given as hex code number in order to ease the
764 /** Array of all non-digit number symbols.
770 /** Array of all number symbols.
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 

Completed in 621 milliseconds

1 2