HomeSort by relevance Sort by last modified time
    Searched full:fromtype (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/webrtc/talk/session/media/
typewrapping.h.pump 102 #define SMART_WRAPPER_(wrapper, toType, fromType, from) \
103 (wrapper<toType, fromType>::Wrap(from))
105 #define SMART_UNWRAPPER_(unwrapper, fromType, from) \
106 (unwrapper<fromType>::Unwrap(from))
108 #define SMART_UNWRAPPER_TYPE_(unwrapper, fromType) \
109 typename unwrapper<fromType>::ToType
122 template <typename ToType, typename FromType> class Wrapper,
123 template <typename FromType> class Unwrapper,
158 template <typename ToType, typename FromType> class Wrapper,
159 template <typename FromType> class Unwrapper$for j [[
    [all...]
  /external/v8/src/crankshaft/
hydrogen-types.cc 16 HType HType::FromType(typename T::TypeHandle type) {
33 HType HType::FromType<Type>(Type* type);
38 HType HType::FromType<HeapType>(Handle<HeapType> type);
hydrogen-types.h 66 static HType FromType(typename T::TypeHandle type) WARN_UNUSED_RESULT;
  /external/clang/lib/AST/
ASTDiagnostic.cpp 315 static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
339 QualType FromType =
340 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
344 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
359 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
476 /// FromType - When single type printing is selected, this is the type to be
479 QualType FromType;
481 /// ToType - The type that FromType is compared to. Only in tree printing
527 /// FromType, ToType - The type arguments.
528 QualType FromType, ToType
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 214 // Note that FromType has not necessarily been transformed by the
216 // check for their presence as well as checking whether FromType is
236 QualType FromType = getFromType();
239 // Note that FromType has not necessarily been transformed by the
243 FromType = Context.getArrayDecayedType(FromType);
245 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
293 QualType FromType = getToType(0);
298 if (FromType->isRealFloatingType())
300 if (FromType->isIntegralOrUnscopedEnumerationType()
    [all...]
SemaExprObjC.cpp     [all...]
SemaExprCXX.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 370 const TypeDescriptor *FromType, *ToType;
377 FromType = &Data->FromType;
385 FromType = &Data->FromType;
393 << Value(*FromType, From) << *FromType << *ToType;
ubsan_handlers.h 103 const TypeDescriptor &FromType;
109 const TypeDescriptor &FromType;
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 277 int fromType = hasFrom ? tvFrom.type : 0;
284 if ((hasFrom && isColorType(fromType)) || (hasTo && isColorType(toType))) {
334 if (fromType == TypedValue.TYPE_DIMENSION) {
362 if (fromType == TypedValue.TYPE_DIMENSION) {
364 } else if (isColorType(fromType)) {
562 * @param fromType The type of "valueFrom".
567 boolean getFloats, boolean hasFrom, int fromType, boolean hasTo, int toType) {
574 if (fromType == TypedValue.TYPE_DIMENSION) {
601 if (fromType == TypedValue.TYPE_DIMENSION) {
603 } else if (isColorType(fromType)) {
    [all...]
  /external/selinux/libselinux/src/
get_context_list.c 168 const char *fromrole, *fromtype; local
182 fromtype = context_type_get(con);
183 if (!fromrole || !fromtype) {
219 if (!strcmp(fromrole, linerole) && !strcmp(fromtype, linetype)) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 982 #define CONST_CAST2(TOTYPE,FROMTYPE,X) (const_cast<TOTYPE> (X))
987 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq)
1000 #define CONST_CAST2(TOTYPE,FROMTYPE,X) \
1001 ((TOTYPE) helper_const_non_const_cast ((const char *) (FROMTYPE) (X)))
1003 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)(FROMTYPE)(X))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 109 enum FromType {
NVPTXISelDAGToDAG.cpp 701 // Type Setting: fromType + fromTypeWidth
710 unsigned int fromType;
712 fromType = NVPTX::PTXLdStInstCode::Signed;
714 fromType = NVPTX::PTXLdStInstCode::Float;
716 fromType = NVPTX::PTXLdStInstCode::Unsigned;
750 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
778 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
831 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
883 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
929 // Type Setting: fromType + fromTypeWidt
    [all...]
  /external/mesa3d/src/mesa/main/
es_generator.py 68 def ConvertValue(value, fromType, toType):
72 if not Converters.has_key(fromType):
73 print >> sys.stderr, "No base converter for type '%s' found. Ignoring." % fromType
76 if not Converters[fromType].has_key(toType):
77 print >> sys.stderr, "No converter found for type '%s' to type '%s'. Ignoring." % (fromType, toType)
81 conversionString = Converters[fromType][toType]
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
resolve.cc 361 elfcpp::STT fromtype = (object->pluginobj() != NULL local
367 fromtype);
372 if (Symbol_table::should_override(to, frombits, fromtype, OBJECT,
441 elfcpp::STT fromtype, Defined defined,
466 if ((to->type() == elfcpp::STT_TLS) ^ (fromtype == elfcpp::STT_TLS)
908 elfcpp::STT fromtype,
914 bool ret = Symbol_table::should_override(to, frombits, fromtype, defined,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-default.h 33 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 33 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq)
  /external/clang/include/clang/Sema/
Overload.h 186 /// FromType - The type that this conversion is converting
508 QualType FromType, QualType ToType) {
510 Bad.init(Failure, FromType, ToType);
Sema.h     [all...]
  /external/gmock/test/
gmock-actions_test.cc 519 class FromType {
521 explicit FromType(bool* is_converted) : converted_(is_converted) {}
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 519 class FromType {
521 explicit FromType(bool* is_converted) : converted_(is_converted) {}
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
SetterStore.java 379 String fromType = getQualifiedName(parameters.get(0).asType());
382 HashMap<String, MethodDescription> convertTo = mStore.conversionMethods.get(fromType);
385 mStore.conversionMethods.put(fromType, convertTo);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 
  /external/clang/lib/Basic/
Diagnostic.cpp 865 TDT.FromType = getRawArg(ArgNo);
910 TDT.FromType));
    [all...]

Completed in 2677 milliseconds

1 2 3