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

12 3 4 5 6

  /external/eigen/Eigen/src/Geometry/
Translation.h 153 inline typename internal::cast_return_type<Translation,Translation<NewScalarType,Dim> >::type cast() const function in class:Eigen::Translation
159 { m_coeffs = other.vector().template cast<Scalar>(); }
AngleAxis.h 123 inline typename internal::cast_return_type<AngleAxis,AngleAxis<NewScalarType> >::type cast() const function in class:Eigen::AngleAxis
130 m_axis = other.axis().template cast<Scalar>();
Hyperplane.h 243 Hyperplane<NewScalarType,AmbientDimAtCompileTime,Options> >::type cast() const function in class:Eigen::Hyperplane
252 { m_coeffs = other.coeffs().template cast<Scalar>(); }
AlignedBox.h 267 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const function in class:Eigen::AlignedBox
277 m_min = (other.min)().template cast<Scalar>();
278 m_max = (other.max)().template cast<Scalar>();
  /external/guava/guava/src/com/google/common/collect/
ImmutableClassToInstanceMap.java 84 mapBuilder.put(type, cast(type, value));
89 private static <B, T extends B> T cast(Class<T> type, B value) { method in class:ImmutableClassToInstanceMap.Builder
90 return Primitives.wrap(type).cast(value);
121 // Eclipse won't compile if we cast to the parameterized type.
122 ImmutableClassToInstanceMap<B> cast = (ImmutableClassToInstanceMap) map; local
123 return cast;
Range.java 228 SortedSet<? extends C> set = cast(values);
499 private static <T> SortedSet<T> cast(Iterable<T> iterable) { method in class:Range
Collections2.java 140 // unsafe cast can result in a CCE from predicate.apply(), which we
181 // unsafe cast can result in a CCE from predicate.apply(), which we
340 static <T> Collection<T> cast(Iterable<T> iterable) { method in class:Collections2
  /external/llvm/bindings/python/llvm/
disassembler.py 21 from ctypes import cast namespace
76 buf = cast(c_char_p(source), POINTER(c_ubyte))
77 out_str = cast((c_byte * 255)(), c_char_p)
98 out_str = cast((c_byte * 255)(), c_char_p)
101 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
106 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
  /external/llvm/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
140 // cast<x> Support Templates
146 // Calculate what type the 'cast' function should return, based on a requested
201 // This _is_ a simple type, just cast it.
214 // cast<X> - Return the argument parameter cast to the specified type. This
219 // cast<Instruction>(myVal)->getParent()
224 cast(const Y &Val) { function in namespace:llvm
225 assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
231 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) function in namespace:llvm
238 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) { function in namespace:llvm
    [all...]
  /external/v8/src/
handles.h 81 template <class S> static Handle<T> cast(Handle<S> that) { function in class:v8::internal::Handle
82 T::cast(*that);
cpu-profiler.h 117 static TickSampleEventRecord* cast(void* value) { function in class:v8::internal::TickSampleEventRecord
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTRefElement.cpp 68 static const SVGTRefTargetEventListener* cast(const EventListener* listener) function in class:WebCore::SVGTRefTargetEventListener
119 if (const SVGTRefTargetEventListener* targetListener = SVGTRefTargetEventListener::cast(&listener))
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_controls.cpp 105 ir_rvalue *cast = local
109 iter = cast->constant_expression_value();
  /external/chromium_org/v8/src/
handles.h 76 template <class S> static Handle<T> cast(Handle<S> that) { function in class:v8::internal::Handle
77 T::cast(*reinterpret_cast<T**>(that.location_));
scopeinfo.h 141 static ModuleInfo* cast(Object* description) { function in class:v8::internal::ModuleInfo
142 return static_cast<ModuleInfo*>(FixedArray::cast(description));
149 int host_index() { return Smi::cast(get(HOST_OFFSET))->value(); }
157 String* name(int i) { return String::cast(get(name_offset(i))); }
159 return static_cast<VariableMode>(Smi::cast(get(mode_offset(i)))->value());
161 int index(int i) { return Smi::cast(get(index_offset(i)))->value(); }
180 return Handle<ModuleInfo>::cast(
cpu-profiler.h 118 static TickSampleEventRecord* cast(void* value) { function in class:v8::internal::TickSampleEventRecord
types.h 202 static Type* cast(v8::internal::Object* object) { function in class:v8::internal::Type
235 int as_bitset() { return Smi::cast(this)->value(); }
236 Handle<Map> as_class() { return Handle<Map>::cast(handle()); }
238 Handle<Box> box = Handle<Box>::cast(handle());
241 Handle<Unioned> as_union() { return Handle<Unioned>::cast(handle()); }
246 return v8::internal::handle(this, HeapObject::cast(type)->GetIsolate());
250 return static_cast<Type*>(Object::cast(Smi::FromInt(bitset)));
253 return static_cast<Type*>(Object::cast(*handle));
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 43 static JniHdf cast(HDF hdf) { method in class:JniHdf
69 return new JniHdf(hdfptr, cast(parent));
313 JniHdf jniHdf = cast(hdf);
384 JniHdf source = cast(src);
  /external/junit/src/org/junit/runners/model/
TestClass.java 147 results.add(valueClass.cast(fieldValue));
  /external/mesa3d/src/glsl/
loop_controls.cpp 105 ir_rvalue *cast = local
109 iter = cast->constant_expression_value();
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageDocument.cpp 58 static const ImageEventListener* cast(const EventListener* listener) function in class:WebCore::ImageEventListener
375 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(&listener))
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 258 inline typename internal::cast_return_type<Transform,Transform<NewScalarType,Dim> >::type cast() const function in class:Eigen::Transform
264 { m_matrix = other.matrix().template cast<Scalar>(); }
  /external/llvm/unittests/Support/
Casting.cpp 18 // Used to test illegal cast. If a cast doesn't match any of the "real" ones,
21 template <typename T> IllegalCast *cast(...) { return 0; } function in namespace:llvm
51 return cast<foo>(this);
106 TEST(CastingTest, cast) {
107 foo &F1 = cast<foo>(B1);
109 const foo *F3 = cast<foo>(B2);
111 const foo *F4 = cast<foo>(B2);
113 const foo &F5 = cast<foo>(B3);
115 const foo *F6 = cast<foo>(B4)
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Stream.cpp 37 Camera3Stream* Camera3Stream::cast(camera3_stream *stream) { function in class:android::camera3::Camera3Stream
41 const Camera3Stream* Camera3Stream::cast(const camera3_stream *stream) { function in class:android::camera3::Camera3Stream
  /libcore/luni/src/main/native/
libcore_io_Memory.cpp 65 template <typename T> static T cast(jlong address) { function
158 return *cast<const jbyte*>(srcAddress);
162 env->SetByteArrayRegion(dst, dstOffset, byteCount, cast<const jbyte*>(srcAddress));
178 const SWAP_TYPE* src = cast<const SWAP_TYPE*>(srcAddress); \
181 const SCALAR_TYPE* src = cast<const SCALAR_TYPE*>(srcAddress); \
211 *cast<jbyte*>(dstAddress) = value;
215 env->GetByteArrayRegion(src, offset, length, cast<jbyte*>(dstAddress));
232 SWAP_FN(cast<SWAP_TYPE*>(dstAddress), src, count); \
234 env->Get ## JNI_NAME ## ArrayRegion(src, srcOffset, count, cast<SCALAR_TYPE*>(dstAddress)); \
263 jshort result = *cast<const jshort*>(srcAddress)
    [all...]

Completed in 829 milliseconds

12 3 4 5 6