HomeSort by relevance Sort by last modified time
    Searched refs:FLOAT (Results 101 - 125 of 164) sorted by null

1 2 3 45 6 7

  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
220 public static final int FLOAT=47;
598 if ( (LA4_0==IDENTIFIER||LA4_0==ABSTRACT||LA4_0==BOOLEAN||LA4_0==BYTE||(LA4_0>=CHAR && LA4_0<=CLASS)||LA4_0==DOUBLE||LA4_0==ENUM||LA4_0==FINAL||LA4_0==FLOAT||(LA4_0>=INT && LA4_0<=NATIVE)||(LA4_0>=PRIVATE && LA4_0<=PUBLIC)||(LA4_0>=SHORT && LA4_0<=STRICTFP)||LA4_0==SYNCHRONIZED||LA4_0==TRANSIENT||(LA4_0>=VOID && LA4_0<=VOLATILE)||LA4_0==SEMI||LA4_0==MONKEYS_AT||LA4_0==LT) ) {
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 1189 "FLOAT", "" + Types.FLOAT, "7",
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 299 final float appScale = v.getContext().getResources()
376 final float appScale = view.getContext().getResources()
521 final float appScale = v.getContext().getResources()
811 static final int FLOAT = 6;
861 case FLOAT:
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
import.rb 321 FLOAT: INTEGER '.' DIGITS (('e'|'E') INTEGER)?;
  /external/qemu/
i386-dis.c 538 #define FLOAT NULL, { { NULL, FLOATCODE } }
    [all...]
  /external/v8/src/
flag-definitions.h 124 #define DEFINE_float(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
424 DEFINE_float(testing_float_flag, 2.5, "float-flag")
  /external/javassist/src/main/javassist/compiler/
Parser.java 199 || t == INT || t == LONG || t == FLOAT || t == DOUBLE);
    [all...]
MemberCodeGen.java 359 case FLOAT :
    [all...]
TypeChecker.java 463 else if (value instanceof Double || value instanceof Float) {
    [all...]
  /external/mesa3d/docs/
MESA_texture_signed_rgba.spec 109 the standard OpenGL byte/float mapping is considered acceptable too, as
114 converting to GL_FLOAT (using the standard OpenGL float/byte mapping)
178 UNSIGNED_NORMALIZED_ARB, or FLOAT. This extension adds a new enum,
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_fixup.cpp 87 arg_floatarray->set_type(GLMessage::DataType::FLOAT);
298 arg_params->set_type(GLMessage::DataType::FLOAT);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.cpp 121 case GraphicsContext3D::FLOAT: // OES_texture_float
264 case FLOAT: // OES_texture_float
598 void unpackRGB32FToRGBA32F(const float* source, float* destination)
606 void unpackR32FToRGBA32F(const float* source, float* destination)
614 void unpackRA32FToRGBA32F(const float* source, float* destination)
622 void unpackA32FToRGBA32F(const float* source, float* destination
    [all...]
GraphicsContext3D.h 235 FLOAT = 0x1406,
731 void uniform2f(GC3Dint location, GC3Dfloat x, float y);
    [all...]
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.cc 111 BubbleBorder* bubble_border = new BubbleBorder(BubbleBorder::FLOAT);
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 208 case FLOAT:
645 * If the next token is a float, consume it and return its value.
648 public float consumeFloat() throws ParseException {
650 // Float.parseFloat() does not accept "inf", "infinity", or "nan".
654 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
658 return Float.NaN;
661 final float result = Float.parseFloat(currentToken);
768 * {@code NumberFormatException} when trying to parse a float or double
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 451 result = parse( <<-'END', :a, 'var a:int; b:float;' )
455 type : 'int' | 'float' ;
461 result.should == '(var (: a int) (: b float))'
471 type : 'int' | 'float' ;
503 type : 'int' | 'float' ;
519 type : 'int' | 'float' ;
535 type : 'int' | 'float' ;
881 type : 'int' | 'float' ;
1088 tokens { FLOAT; }
1090 : INT -> { ANTLR3::CommonTree.new( create_token( FLOAT, nil, "#{$INT.text}.0" ) )
    [all...]
  /external/dexmaker/lib/
jarjar.jar 
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 686 PRIMITIVE_TO_BOXED.put(float.class, Float.class);
717 map.put(float.class, TypeId.get(Float.class).getMethod(TypeId.FLOAT, "floatValue"))
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 118 public void write(float value, String name, float defVal)
122 writeAlias(name, BinaryClassField.FLOAT);
126 public void write(float[] value, String name, float[] defVal)
134 public void write(float[][] value, String name, float[][] defVal)
499 // float primitive
501 protected void write(float value) throws IOException {
505 protected void writeForBuffer(float value) throws IOException
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 35 #include <float.h>
381 SET_FIELD(Float, static_cast<float>(value));
554 // We have found a float value for the double.
    [all...]
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 442 testReturnType(float.class, 5.0f);
567 Method intToFloat = numericCastingMethod(int.class, float.class);
579 Method longToFloat = numericCastingMethod(long.class, float.class);
593 Method floatToInt = numericCastingMethod(float.class, int.class);
598 assertEquals(Integer.MIN_VALUE, floatToInt.invoke(null, Float.NEGATIVE_INFINITY));
599 assertEquals(0, floatToInt.invoke(null, Float.NaN));
601 Method floatToLong = numericCastingMethod(float.class, long.class);
606 assertEquals(Long.MIN_VALUE, floatToLong.invoke(null, Float.NEGATIVE_INFINITY));
607 assertEquals(0L, floatToLong.invoke(null, Float.NaN));
627 Method floatToDouble = numericCastingMethod(float.class, double.class)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.idl 229 const unsigned int FLOAT = 0x1406;
460 [StrictTypeChecking] void blendColor(in float red, in float green, in float blue, in float alpha);
473 [StrictTypeChecking] void clearColor(in float red, in float green, in float blue, in float alpha);
474 [StrictTypeChecking] void clearDepth(in float depth)
    [all...]

Completed in 1856 milliseconds

1 2 3 45 6 7