HomeSort by relevance Sort by last modified time
    Searched refs:FloatType (Results 1 - 25 of 32) sorted by null

1 2

  /external/proguard/src/proguard/classfile/attribute/preverification/
VerificationTypeFactory.java 33 static final FloatType FLOAT_TYPE = new FloatType();
57 * Creates a new FloatType.
59 public static FloatType createFloatType()
FloatType.java 32 public class FloatType extends VerificationType
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
numeric_lex.h 48 template<typename FloatType>
49 bool numeric_lex_float(const std::string &str, FloatType *value)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGParserUtilities.cpp 35 template <typename FloatType>
36 static inline bool isValidRange(const FloatType& x)
38 static const FloatType max = std::numeric_limits<FloatType>::max();
45 template <typename CharType, typename FloatType>
46 static bool genericParseNumber(const CharType*& ptr, const CharType* end, FloatType& number, WhitespaceMode mode)
48 FloatType integer, decimal, frac, exponent;
81 FloatType multiplier = 1;
83 integer += multiplier * static_cast<FloatType>(*(ptrScanIntPart--) - '0');
99 decimal += (*(ptr++) - '0') * (frac *= static_cast<FloatType>(0.1))
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
47 public void visitStackFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType);
57 public void visitVariablesFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 18 FloatType = float
pickle.py 478 dispatch[FloatType] = save_float
    [all...]
xmlrpclib.py 690 dispatch[FloatType] = dump_double
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 18 FloatType = float
pickle.py 478 dispatch[FloatType] = save_float
    [all...]
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 31 Type *FloatType;
215 FloatType = Type::getFloatTy(Ctx);
217 V4f32Type = VectorType::get(FloatType, 4);
  /art/runtime/verifier/
reg_type.cc 42 FloatType* FloatType::instance_ = NULL;
121 std::string FloatType::Dump() {
225 FloatType* FloatType::CreateInstance(mirror::Class* klass, const std::string& descriptor,
228 instance_ = new FloatType(klass, descriptor, cache_id);
232 FloatType* FloatType::GetInstance() {
237 void FloatType::Destroy() {
reg_type.h 467 class FloatType : public Cat1Type {
473 static FloatType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
476 static FloatType* GetInstance();
479 FloatType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
483 static FloatType* instance_;
reg_type_cache.cc 57 entries_.push_back(FloatType::GetInstance());
116 return *FloatType::GetInstance();
270 FloatType::Destroy();
306 CreatePrimitiveTypeInstance<FloatType>("F");
reg_type_cache.h 104 return *FloatType::GetInstance();
  /external/chromium_org/mojo/public/python/mojo/bindings/
descriptor.py 136 class FloatType(NumericType):
429 TYPE_FLOAT = FloatType('f')
430 TYPE_DOUBLE = FloatType('d')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 118 FloatType: AtomicObjectTreeItem,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 118 FloatType: AtomicObjectTreeItem,
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 606 public void visitFloatType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType)
608 visitAnyVerificationType(clazz, method, codeAttribute, offset, floatType);
660 public void visitStackFloatType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType)
662 visitFloatType(clazz, method, codeAttribute, offset, floatType);
715 public void visitVariablesFloatType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType)
717 visitFloatType(clazz, method, codeAttribute, offset, floatType);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 100 if isinstance(x, FloatType):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 392 _const_types = types.StringType, types.IntType, types.FloatType
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 392 _const_types = types.StringType, types.IntType, types.FloatType
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java     [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 816 public void visitFloatType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType)
    [all...]

Completed in 4228 milliseconds

1 2