HomeSort by relevance Sort by last modified time
    Searched refs:INTEGER (Results 126 - 150 of 251) sorted by null

1 2 3 4 56 7 8 91011

  /external/chromium_org/tools/gn/
parse_tree.cc 59 if (!index_value.VerifyTypeIs(Value::INTEGER, err))
407 case Token::INTEGER: {
410 *err = MakeErrorDescribing("This does not look like an integer");
parser.cc 290 if (token.type() == Token::STRING || token.type() == Token::INTEGER) {
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 59 /** Represents the integer primitive type */
60 public static final Type INTEGER = new Type(CtClass.intType);
109 prims.put(CtClass.intType, INTEGER);
Analyzer.java 77 * frames[1].peek(); // returns Type.INTEGER
367 int caller = ((Integer) callerIter.next()).intValue();
380 int index = ((Integer)i.next()).intValue();
418 return Type.INTEGER;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 440 case INTEGER:
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypedBlock.java 223 return TypeTag.INTEGER;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 130 if (formats.contains(Format.INTEGER)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 185 case INTEGER:
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c 35 ** The basic unit of encoding is a variable-length integer called a
63 ** A docid is the unique integer identifier for a single document.
318 ** Write a 64-bit variable-length integer to memory starting at p[0].
335 ** Read a 64-bit variable-length integer from memory starting at p[0].
353 ** 32-bit integer before it is returned.
566 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY");
581 "CREATE TABLE %Q.'%q_segments'(blockid INTEGER PRIMARY KEY, block BLOB);",
586 "level INTEGER,"
587 "idx INTEGER,"
588 "start_block INTEGER,"
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
collateA.test 24 a INTEGER PRIMARY KEY,
fuzz_common.tcl 80 {CAST([Expr $c] AS integer)} \
301 {INTEGER PRIMARY KEY}
  /external/chromium_org/tools/json_schema_compiler/
model.py 150 elif json_type == 'integer':
151 self.property_type = PropertyType.INTEGER
297 ('type' not in json or json['type'] == 'integer'
307 json['type'] = 'integer'
385 INTEGER = _PropertyTypeInfo(True, "integer")
cpp_type_generator.py 98 elif type_.property_type == PropertyType.INTEGER:
  /external/eigen/blas/
drotmg.f 54 INTEGER IGO
srotmg.f 56 INTEGER IGO
  /external/mksh/src/
funcs.c 718 flag = INTEGER;
767 bi_errorf("%s: %s", "bad integer base", basestr);
806 INTEGER | INT_U | INT_L)) || set_refflag != SRF_NOP)
808 LCASEV | INTEGER | INT_U | INT_L);
942 * AT&T ksh prints things like export, integer,
949 if ((vp->flag & INTEGER))
982 if ((vp->flag & (INTEGER | LJUST | RJUST)) == INTEGER)
    [all...]
eval.c 322 v.flag = DEFINED|ISSET|INTEGER;
384 st->var->flag &= ~INTEGER;
648 * for integer variables is a
653 if (!(x.var->flag & INTEGER))
719 * of integer/right-adj/etc attributes).
    [all...]
exec.c 469 vp_pipest->flag = DEFINED | ISSET | INTEGER | RDONLY |
523 setstr(typeset("_", LOCAL, 0, INTEGER, 0), *--lastp,
806 setstr(typeset("_", LOCAL|EXPORT, 0, INTEGER, 0),
    [all...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 78 public static final int INTEGER = 1;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 125 value = Integer.valueOf(blenderInputStream.readShort());
129 data[i] = Integer.valueOf(blenderInputStream.readShort());
134 case INTEGER:
136 value = Integer.valueOf(blenderInputStream.readInt());
140 data[i] = Integer.valueOf(blenderInputStream.readInt());
224 List<Integer> lengths = new ArrayList<Integer>(3);//3 dimensions will be enough in most cases
233 lengths.add(Integer.valueOf(nameBuilder.substring(tableStartIndex + 1, tableStopIndex)));
  /external/opencv/cv/include/
cv.hpp 198 enum { GENERIC=0, ASYMMETRICAL=1, SYMMETRICAL=2, POSITIVE=4, SUM_TO_1=8, INTEGER=16 };
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 87 * format. Use {@link #getIntegerInstance} to get an integer number format,
117 * offset between the last character of the integer and the decimal. Add
147 * Field constant identifying the integer part of a number.
273 * {@code Integer}, and {@code Long} have {@code Number.longValue} invoked, as do instances of
295 if (object instanceof Byte || object instanceof Short || object instanceof Integer ||
418 * Returns the maximum number of integer digits that are printed when
419 * formatting. If the maximum is less than the number of integer digits, the
422 * @return the maximum number of integer digits.
439 * Returns the minimum number of integer digits that are printed when
442 * @return the minimum number of integer digits
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 56 " IntegerVal INTEGER, " + " RealVal REAL, "
221 String query = "create table hutch (id integer not null, animal_id integer, address char(20), primary key (id));";
492 ps.setInt(1, Integer.MAX_VALUE);
496 + Integer.MAX_VALUE);
508 ps.setInt(1, Integer.MIN_VALUE);
512 + Integer.MAX_VALUE);
525 ps.setInt(1, Integer.MIN_VALUE);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 360 case INTEGER: value = "1"; break; //$NON-NLS-1$

Completed in 791 milliseconds

1 2 3 4 56 7 8 91011