HomeSort by relevance Sort by last modified time
    Searched defs:cast (Results 76 - 100 of 768) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/io/netty/netty-resolver/4.1.0.CR3/
netty-resolver-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-resolver/4.1.3.Final/
netty-resolver-4.1.3.Final.jar 
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
BaseActivity.java 116 if (viewType.isAssignableFrom(v.getClass())) list.add(viewType.cast(v));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
llimits.h 93 #define cast(t, exp) ((t)(exp)) macro
95 #define cast_byte(i) cast(lu_byte, (i))
96 #define cast_num(i) cast(lua_Number, (i))
97 #define cast_int(i) cast(int, (i))
98 #define cast_uchar(i) cast(unsigned char, (i))
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
Criteria.java 295 if (c.getKind() == Criterion.Kind.CAST) {
487 public final static Criterion cast(String methodName, RelativeLocation loc) { method in class:Criteria
  /external/deqp/framework/common/
tcuVector.hpp 149 Vector<float, Size> asFloat (void) const { return cast<float>(); }
150 Vector<int, Size> asInt (void) const { return cast<int>(); }
151 Vector<deUint32, Size> asUint (void) const { return cast<deUint32>(); }
152 Vector<bool, Size> asBool (void) const { return cast<bool>(); }
166 Vector<NewT, Size> cast (void) const;
227 // VecAccess to Vector cast.
237 // Type cast.
240 inline Vector<NewT, Size> Vector<T, Size>::cast (void) const function in class:tcu::Vector
248 // Size cast.
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 284 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const function in class:Eigen::AlignedBox
294 m_min = (other.min)().template cast<Scalar>();
295 m_max = (other.max)().template cast<Scalar>();
  /external/junit/src/main/java/org/junit/runners/model/
TestClass.java 232 results.add(valueClass.cast(fieldValue));
257 results.add(valueClass.cast(fieldValue));
  /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 nullptr; } function in namespace:llvm
51 return cast<foo>(this);
110 TEST(CastingTest, cast) {
111 foo &F1 = cast<foo>(B1);
113 const foo *F3 = cast<foo>(B2);
115 const foo *F4 = cast<foo>(B2);
117 const foo &F5 = cast<foo>(B3);
119 const foo *F6 = cast<foo>(B4)
    [all...]
  /external/python/cpython2/Lib/sqlite3/test/
types.py 315 def cast(obj): member in class:ObjectAdaptationTests
317 cast = staticmethod(cast) variable in class:ObjectAdaptationTests
325 sqlite.register_adapter(int, ObjectAdaptationTests.cast)
  /external/python/cpython3/Lib/sqlite3/test/
types.py 317 def cast(obj): member in class:ObjectAdaptationTests
319 cast = staticmethod(cast) variable in class:ObjectAdaptationTests
327 sqlite.register_adapter(int, ObjectAdaptationTests.cast)
  /external/skia/src/gpu/ops/
GrOp.h 116 template <typename T> const T& cast() const { function in class:GrOp
121 template <typename T> T* cast() { function in class:GrOp
  /external/skqp/src/gpu/ops/
GrOp.h 116 template <typename T> const T& cast() const { function in class:GrOp
121 template <typename T> T* cast() { function in class:GrOp
  /external/syslinux/com32/lua/src/
llimits.h 93 #define cast(t, exp) ((t)(exp)) macro
95 #define cast_byte(i) cast(lu_byte, (i))
96 #define cast_num(i) cast(lua_Number, (i))
97 #define cast_int(i) cast(int, (i))
98 #define cast_uchar(i) cast(unsigned char, (i))
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/examples/
LabelImage.java 98 b.cast(b.decodeJpeg(input, 3), Float.class),
182 <T, U> Output<U> cast(Output<T> value, Class<U> type) { method in class:LabelImage.GraphBuilder
184 return g.opBuilder("Cast", "Cast")
  /external/tensorflow/tensorflow/tools/graph_transforms/
fold_constants_test.cc 126 Output cast = Cast(root.WithOpName("cast_expect_removed"), shape, DT_FLOAT); local
128 Mul(root.WithOpName("output_expect_remains"), cast, placeholder);
155 Output cast = Cast(root.WithOpName("cast_expect_removed"), shape, DT_FLOAT); local
157 Mul(root.WithOpName("output_expect_remains"), cast, placeholder);
  /external/v8/src/crankshaft/
unique.h 106 template <class S> static Unique<T> cast(Unique<S> that) { function in class:v8::internal::final
107 // Allow fetching location() to unsafe-cast the handle. This is necessary
108 // since we can't concurrently safe-cast. Safe-casting requires looking at
  /external/v8/src/debug/
liveedit.h 195 static S cast(Object* object) { function in class:v8::internal::JSArrayBasedStruct
196 JSArray* array = JSArray::cast(object);
229 return Handle<Smi>::cast(res)->value();
294 return Handle<JSValue>::cast(element)->value()->IsSharedFunctionInfo();
  /external/v8/src/
feedback-vector-inl.h 27 FeedbackMetadata* FeedbackMetadata::cast(Object* obj) { function in class:v8::internal::FeedbackMetadata
40 return Smi::cast(get(kSlotsCountIndex))->value();
44 FeedbackVector* FeedbackVector::cast(Object* obj) { function in class:v8::internal::FeedbackVector
93 return SharedFunctionInfo::cast(get(kSharedFunctionInfoIndex));
97 return Smi::cast(get(kInvocationCountIndex))->value();
205 int const feedback = Smi::cast(obj)->value();
222 int const feedback = Smi::cast(obj)->value();
handles.h 130 static const Handle<T> cast(Handle<S> that) { function in class:v8::internal::final
131 T::cast(*reinterpret_cast<T**>(that.location_));
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
BracketExpr.java 54 "expression. Cast the value to List, Map, " +
121 String cast = argCastsInteger() ? "(Integer) " : ""; local
127 app(cast, getArg().toCode()).app(")");
137 app(cast, getArg().toCode()).
143 app(cast, getArg().toCode()).
  /libcore/luni/src/main/native/
libcore_io_Memory.cpp 47 template <typename T> static T cast(jlong address) { function
108 return *cast<const jbyte*>(srcAddress);
112 env->SetByteArrayRegion(dst, dstOffset, byteCount, cast<const jbyte*>(srcAddress));
128 const SWAP_TYPE* src = cast<const SWAP_TYPE*>(srcAddress); \
131 const SCALAR_TYPE* src = cast<const SCALAR_TYPE*>(srcAddress); \
161 *cast<jbyte*>(dstAddress) = value;
165 env->GetByteArrayRegion(src, offset, length, cast<jbyte*>(dstAddress));
182 SWAP_FN(cast<SWAP_TYPE*>(dstAddress), src, count); /*NOLINT*/ \
184 env->Get ## JNI_NAME ## ArrayRegion(src, srcOffset, count, cast<SCALAR_TYPE*>(dstAddress)); /*NOLINT*/ \
213 return get_unaligned<jshort>(cast<const jshort*>(srcAddress))
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)

Completed in 519 milliseconds

1 2 34 5 6 7 8 91011>>