HomeSort by relevance Sort by last modified time
    Searched defs:cast (Results 51 - 75 of 148) sorted by null

1 23 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 312 def cast(obj): member in class:ObjectAdaptationTests
314 cast = staticmethod(cast) variable in class:ObjectAdaptationTests
322 sqlite.register_adapter(int, ObjectAdaptationTests.cast)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 312 def cast(obj): member in class:ObjectAdaptationTests
314 cast = staticmethod(cast) variable in class:ObjectAdaptationTests
322 sqlite.register_adapter(int, ObjectAdaptationTests.cast)
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 341 java.startIfBlock(JavaExpression.infix(Type.BOOLEAN, "!=", value.cast(Type.DATA), literal(
344 // Cast to string so we support numeric or boolean values as well.
345 value = value.cast(Type.STRING);
443 loopVariable).cast(Type.STRING), infix(Type.BOOLEAN, "==", symbol(loopVariable), startVar),
489 java.startIfBlock(reference.cast(Type.BOOLEAN));
513 java.writeStatement(callOn(CONTEXT, "writeUnescaped", result.cast(Type.STRING)));
515 java.writeStatement(callOn(CONTEXT, "writeEscaped", result.cast(Type.STRING)));
520 java.writeStatement(callOn(CONTEXT, "writeUnescaped", result.cast(Type.STRING)));
522 java.writeStatement(callOn(CONTEXT, "writeEscaped", result.cast(Type.STRING)));
683 java.startIfBlock(doRuntimeAutoEscaping.cast(Type.BOOLEAN))
    [all...]
ExpressionTranslator.java 84 return translateUntyped(csExpression).cast(Type.STRING);
91 return translateUntyped(csExpression).cast(Type.BOOLEAN);
98 return translateUntyped(csExpression).cast(Type.INT);
105 return translateUntyped(csExpression).cast(Type.DATA);
112 return translateUntyped(csExpression).cast(Type.VAR_NAME);
119 return translateUntyped(csExpression).cast(Type.VALUE);
197 setResult(cast(Type.INT, node.getExpression())); method
226 JavaExpression left = cast(Type.STRING, node.getLeft());
227 JavaExpression right = cast(Type.STRING, node.getRight());
238 JavaExpression left = cast(Type.STRING, node.getLeft())
367 private JavaExpression cast(Type type, PExpression node) { method in class:ExpressionTranslator
    [all...]
  /external/eigen/Eigen/src/Core/
MathFunctions.h 387 * Implementation of cast *
399 // here, for once, we're plainly returning NewType: we don't want cast to do weird things.
402 inline NewType cast(const OldType& x) function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 187 inline typename internal::cast_return_type<Quaternion,Quaternion<NewScalarType> >::type cast() const function in class:Eigen::Quaternion
193 { m_coeffs = other.coeffs().template cast<Scalar>(); }
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JHdf.java 56 static JHdf cast(HDF hdf) { method in class:JHdf
195 JHdf jHdf = cast(hdf);
232 JHdf srcJHdf = cast(src);
  /external/smack/src/org/apache/harmony/javax/security/auth/
Subject.java 706 s.add(c.cast(o));
  /frameworks/base/tools/aidl/
AST.h 142 Type* cast; member in struct:Assignment
145 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
218 struct Cast : public Expression
223 Cast();
224 Cast(Type* type, Expression* expression);
225 virtual ~Cast();
232 Type* cast; member in struct:VariableDeclaration
236 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 673 s.add(c.cast(o));
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 162 * Use {@link #cast cast()} to perform either a <strong>numeric cast</strong> or
163 * a <strong>type cast</strong>. Interrogate the type of a value in a local
712 * Performs either a numeric cast or a type cast.
730 * cast operations. For example, to go from float to short one would first
731 * cast float to int and then int to short.
740 public void cast(Local<?> target, Local<?> source) { method in class:Code
    [all...]
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 176 inline typename internal::cast_return_type<Derived,Quaternion<NewScalarType> >::type cast() const function in class:Eigen::QuaternionBase
272 { m_coeffs = other.coeffs().template cast<Scalar>(); }
Transform.h 572 inline typename internal::cast_return_type<Transform,Transform<NewScalarType,Dim,Mode,Options> >::type cast() const function in class:Eigen::Transform
580 m_matrix = other.matrix().template cast<Scalar>();
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field.h 258 static inline typename TypeHandler::Type* cast(void* element) { function in class:google::protobuf::internal::RepeatedPtrFieldBase
262 static inline const typename TypeHandler::Type* cast(const void* element) { function in class:google::protobuf::internal::RepeatedPtrFieldBase
622 TypeHandler::Delete(cast<TypeHandler>(elements_[i]));
638 return *cast<TypeHandler>(elements_[index]);
645 return cast<TypeHandler>(elements_[index]);
651 return cast<TypeHandler>(elements_[current_size_++]);
663 TypeHandler::Clear(cast<TypeHandler>(elements_[--current_size_]));
669 TypeHandler::Clear(cast<TypeHandler>(elements_[i]));
718 allocated_bytes += TypeHandler::SpaceUsed(*cast<TypeHandler>(elements_[i]));
726 return cast<TypeHandler>(elements_[current_size_++])
    [all...]
  /external/v8/src/
contexts.h 209 static Context* cast(Object* context) { function in class:v8::internal::Context
305 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); }
395 return type::cast(get(index)); \
full-codegen.h 734 static const TestContext* cast(const ExpressionContext* context) { function in class:v8::internal::FullCodeGenerator::TestContext
lithium.h 189 static LUnallocated* cast(LOperand* op) { function in class:v8::internal::LUnallocated
262 static LConstantOperand* cast(LOperand* op) { function in class:v8::internal::LConstantOperand
282 static LArgument* cast(LOperand* op) { function in class:v8::internal::LArgument
297 static LStackSlot* cast(LOperand* op) { function in class:v8::internal::LStackSlot
321 static LDoubleStackSlot* cast(LOperand* op) { function in class:v8::internal::LDoubleStackSlot
345 static LRegister* cast(LOperand* op) { function in class:v8::internal::LRegister
369 static LDoubleRegister* cast(LOperand* op) { function in class:v8::internal::LDoubleRegister
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 57 static const ConditionEventListener* cast(const EventListener* listener) function in class:WebCore::ConditionEventListener
87 if (const ConditionEventListener* conditionEventListener = ConditionEventListener::cast(&listener))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c 454 static UINTMAX_T cast(LDOUBLE);
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1354 cast(LDOUBLE value) function
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 322 static inline typename TypeHandler::Type* cast(void* element) { function in class:google::protobuf::internal::RepeatedPtrFieldBase
326 static inline const typename TypeHandler::Type* cast(const void* element) { function in class:google::protobuf::internal::RepeatedPtrFieldBase
812 TypeHandler::Delete(cast<TypeHandler>(elements_[i]));
825 return *cast<TypeHandler>(elements_[index]);
833 return cast<TypeHandler>(elements_[index]);
839 return cast<TypeHandler>(elements_[current_size_++]);
851 TypeHandler::Clear(cast<TypeHandler>(elements_[--current_size_]));
857 TypeHandler::Clear(cast<TypeHandler>(elements_[i]));
912 allocated_bytes += TypeHandler::SpaceUsed(*cast<TypeHandler>(elements_[i]));
920 return cast<TypeHandler>(elements_[current_size_++])
    [all...]
  /external/chromium_org/v8/src/
contexts.h 235 static Context* cast(Object* context) { function in class:v8::internal::Context
350 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); }
364 JSModule* module() { return JSModule::cast(get(EXTENSION_INDEX)); }
446 return type::cast(get(index)) == value; \
450 return type::cast(get(index)); \
full-codegen.h 841 static const TestContext* cast(const ExpressionContext* context) { function in class:v8::internal::FullCodeGenerator::TestContext
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 58 static <T> SortedMultiset<T> cast(Multiset<T> iterable) { method in class:MultisetNavigationTester
65 sortedMultiset = cast(getMultiset());
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 454 static UINTMAX_T cast(LDOUBLE);
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1354 cast(LDOUBLE value) function
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
Class.java 700 @SuppressWarnings("unchecked") // we only cast after confirming that this class is an enum
1270 public T cast(Object obj) { method in class:Class
    [all...]

Completed in 1066 milliseconds

1 23 4 5 6