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

1 2 3

  /cts/tools/signature-tools/src/signature/model/impl/
SigParameterizedType.java 31 private IClassReference rawType;
35 IClassReference rawType, List<ITypeReference> typeArguments) {
37 this.rawType = rawType;
44 if (rawType.getClassDefinition().getDeclaringClass() != null) {
45 returnValue = new SigClassReference(rawType
53 return rawType;
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterizedTypeProjection.java 48 private IClassReference rawType = null;
56 if (rawType == null) {
57 rawType = (IClassReference) ViewpointAdapter
62 return rawType;
  /libcore/luni/src/main/java/libcore/reflect/
ParameterizedTypeImpl.java 26 private Class rawType; // Already resolved.
56 if (rawType == null) {
61 rawType = Class.forName(rawTypeName, false, loader);
66 return rawType;
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsDeepStubs.java 51 Class<?> rawType = returnTypeGenericMetadata.rawType();
52 if (!mockitoCore.isTypeMockable(rawType)) {
53 return delegate.returnValueFor(rawType);
86 returnTypeGenericMetadata.rawType(),
  /external/chromium_org/third_party/skia/src/utils/
SkFloatUtils.h 34 template <typename RawType>
54 template <typename RawType, unsigned int ULPs>
58 typedef typename SkTypeWithSize<sizeof(RawType) * CHAR_BIT>::UInt Bits;
61 static const size_t kBitCount = CHAR_BIT * sizeof(RawType);
64 static const size_t kFractionBitCount = SkNumericLimits<RawType>::digits - 1;
90 explicit SkFloatingPoint(const RawType& x) { fU.value = x; }
127 RawType value;
  /external/skia/src/utils/
SkFloatUtils.h 34 template <typename RawType>
54 template <typename RawType, unsigned int ULPs>
58 typedef typename SkTypeWithSize<sizeof(RawType) * CHAR_BIT>::UInt Bits;
61 static const size_t kBitCount = CHAR_BIT * sizeof(RawType);
64 static const size_t kFractionBitCount = SkNumericLimits<RawType>::digits - 1;
90 explicit SkFloatingPoint(const RawType& x) { fU.value = x; }
127 RawType value;
  /cts/tools/signature-tools/test/signature/converter/
ConvertWildcardTest.java 57 IClassDefinition rawType = parametrizedType.getRawType().getClassDefinition();
58 assertEquals("Set", rawType.getName());
86 IClassDefinition rawType = parametrizedType.getRawType().getClassDefinition();
87 assertEquals("Set", rawType.getName());
  /external/mockito/src/org/mockito/internal/util/reflection/
GenericMetadataSupport.java 132 public abstract Class<?> rawType();
156 TypeVariable[] typeParameters = rawType().getTypeParameters();
164 // logger.log("For '" + rawType().getCanonicalName() + "' returning explicit TypeVariable : { '" + typeParameter + "(" + System.identityHashCode(typeParameter) + ")" + "' : '" + actualType +"' }");
257 public Class<?> rawType() {
288 public Class<?> rawType() {
319 public Class<?> rawType() {
332 private Class<?> rawType;
357 public Class<?> rawType() {
358 if (rawType == null) {
359 rawType = extractRawTypeOf(typeVariable);
    [all...]
  /cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java 58 * @param rawType
65 IClassReference rawType, List<ITypeReference> typeArguments);
TypePool.java 76 IClassReference rawType, List<ITypeReference> typeArguments) {
77 assert rawType != null;
79 return new SigParameterizedType(ownerType, rawType, typeArguments);
  /external/javassist/src/main/javassist/bytecode/annotation/
MemberValue.java 66 String rawType = classname.substring(0, index);
67 StringBuffer sb = new StringBuffer(Descriptor.of(rawType));
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc     [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 318 // RawType: the raw floating-point type (either float or double)
319 template <typename RawType>
324 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
329 static const size_t kBitCount = 8*sizeof(RawType);
333 std::numeric_limits<RawType>::digits - 1;
368 explicit FloatingPoint(const RawType& x) : value_(x) {}
375 static RawType ReinterpretBits(const Bits bits) {
382 static RawType Infinity() {
457 RawType value_; // The raw floating-point number.
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-internal.h 333 // RawType: the raw floating-point type (either float or double)
334 template <typename RawType>
339 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
344 static const size_t kBitCount = 8*sizeof(RawType);
348 std::numeric_limits<RawType>::digits - 1;
383 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
390 static RawType ReinterpretBits(const Bits bits) {
397 static RawType Infinity() {
440 RawType value_; // The raw floating-point number.
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 331 // RawType: the raw floating-point type (either float or double)
332 template <typename RawType>
337 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
342 static const size_t kBitCount = 8*sizeof(RawType);
346 std::numeric_limits<RawType>::digits - 1;
381 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
388 static RawType ReinterpretBits(const Bits bits) {
395 static RawType Infinity() {
438 RawType value_; // The raw floating-point number.
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.cc 81 if (kSupportedFourCCs[i].webrtc_type == cap.rawType) {
114 cap->rawType = webrtc_type;
187 << cap.rawType;
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 400 IClassReference rawType = factory.getClassReference(packageName,
403 .getParameterizedType(null, rawType, typeArgs);
425 IClassReference rawType = factory.getClassReference(
428 .getParameterizedType(parentType, rawType, typeArgs);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 78 Type rawType = parameterizedType.getRawType();
81 sb.append(getFullyQualifiedName(rawType, runtime));
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 309 // RawType: the raw floating-point type (either float or double)
310 template <typename RawType>
315 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
320 static const size_t kBitCount = 8*sizeof(RawType);
324 std::numeric_limits<RawType>::digits - 1;
359 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
366 static RawType ReinterpretBits(const Bits bits) {
373 static RawType Infinity() {
416 RawType value_; // The raw floating-point number.
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 254 // RawType: the raw floating-point type (either float or double)
255 template <typename RawType>
260 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
265 static const size_t kBitCount = 8*sizeof(RawType);
269 std::numeric_limits<RawType>::digits - 1;
304 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
311 static RawType ReinterpretBits(const Bits bits) {
318 static RawType Infinity() {
361 RawType value_; // The raw floating-point number.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h 315 // RawType: the raw floating-point type (either float or double)
316 template <typename RawType>
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
326 static const size_t kBitCount = 8*sizeof(RawType);
330 std::numeric_limits<RawType>::digits - 1;
365 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
372 static RawType ReinterpretBits(const Bits bits) {
379 static RawType Infinity() {
422 RawType value_; // The raw floating-point number.
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 315 // RawType: the raw floating-point type (either float or double)
316 template <typename RawType>
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
326 static const size_t kBitCount = 8*sizeof(RawType);
330 std::numeric_limits<RawType>::digits - 1;
365 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
372 static RawType ReinterpretBits(const Bits bits) {
379 static RawType Infinity() {
422 RawType value_; // The raw floating-point number.
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 343 // RawType: the raw floating-point type (either float or double)
344 template <typename RawType>
349 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
354 static const size_t kBitCount = 8*sizeof(RawType);
358 std::numeric_limits<RawType>::digits - 1;
393 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
400 static RawType ReinterpretBits(const Bits bits) {
407 static RawType Infinity() {
450 RawType value_; // The raw floating-point number.
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 315 // RawType: the raw floating-point type (either float or double)
316 template <typename RawType>
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
326 static const size_t kBitCount = 8*sizeof(RawType);
330 std::numeric_limits<RawType>::digits - 1;
365 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
372 static RawType ReinterpretBits(const Bits bits) {
379 static RawType Infinity() {
422 RawType value_; // The raw floating-point number.
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 229 // RawType: the raw floating-point type (either float or double)
230 template <typename RawType>
235 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
240 static const size_t kBitCount = 8*sizeof(RawType);
244 std::numeric_limits<RawType>::digits - 1;
279 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
286 static RawType ReinterpretBits(const Bits bits) {
293 static RawType Infinity() {
336 RawType value_; // The raw floating-point number.
    [all...]

Completed in 1068 milliseconds

1 2 3