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

1 2

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
define_empty_macros.h 8 #define METHOD1(Class, ReturnType, MethodName, Type0)
9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1)
10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2)
11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3)
12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 22 #define METHOD1(Class, ReturnType, MethodName, Type0) \
23 MOCK_METHOD1(MethodName, ReturnType(Type0));
24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
25 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1));
26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2));
28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3));
30 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
32 MOCK_METHOD5(MethodName, ReturnType(Type0, Type1, Type2, Type3, Type4))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 26 #define METHOD1(Class, ReturnType, MethodName, Type0) \
27 virtual ReturnType MethodName(Type0);
28 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
29 virtual ReturnType MethodName(Type0, Type1);
30 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
31 virtual ReturnType MethodName(Type0, Type1, Type2);
32 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
33 virtual ReturnType MethodName(Type0, Type1, Type2, Type3);
34 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
36 virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4)
    [all...]
pepper_interface.h 119 #define METHOD1(Class, ReturnType, MethodName, Type0) \
120 virtual ReturnType MethodName(Type0) = 0;
121 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
122 virtual ReturnType MethodName(Type0, Type1) = 0;
123 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
124 virtual ReturnType MethodName(Type0, Type1, Type2) = 0;
125 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
126 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0;
127 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
129 virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4) = 0
    [all...]
  /external/eigen/Eigen/src/Core/util/
StaticAssert.h 151 #define EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(TYPE0,TYPE1) \
153 (int(TYPE0::SizeAtCompileTime)==Eigen::Dynamic \
155 || int(TYPE0::SizeAtCompileTime)==int(TYPE1::SizeAtCompileTime)),\
158 #define EIGEN_PREDICATE_SAME_MATRIX_SIZE(TYPE0,TYPE1) \
160 (int(TYPE0::SizeAtCompileTime)==0 && int(TYPE1::SizeAtCompileTime)==0) \
162 (int(TYPE0::RowsAtCompileTime)==Eigen::Dynamic \
164 || int(TYPE0::RowsAtCompileTime)==int(TYPE1::RowsAtCompileTime)) \
165 && (int(TYPE0::ColsAtCompileTime)==Eigen::Dynamic \
167 || int(TYPE0::ColsAtCompileTime)==int(TYPE1::ColsAtCompileTime))\
181 #define EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(TYPE0,TYPE1)
    [all...]
  /external/deqp/modules/gles3/performance/
es3pStateChangeCallTests.cpp 49 #define ADD_ARG_CASE1(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0)\
60 const TYPE0 args0[] = ARGS0;\
64 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
72 #define ADD_ARG_CASE2(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1)\
83 const TYPE0 args0[] = ARGS0;\
88 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
97 #define ADD_ARG_CASE3(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2)\
108 const TYPE0 args0[] = ARGS0;\
114 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
124 #define ADD_ARG_CASE4(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3, ARGS3)
    [all...]
  /external/deqp/modules/gles2/performance/
es2pStateChangeCallTests.cpp 49 #define ADD_ARG_CASE1(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0)\
60 const TYPE0 args0[] = ARGS0;\
64 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
72 #define ADD_ARG_CASE2(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1)\
83 const TYPE0 args0[] = ARGS0;\
88 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
97 #define ADD_ARG_CASE3(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2)\
108 const TYPE0 args0[] = ARGS0;\
114 const TYPE0 arg0 = args0[baseNdx%DE_LENGTH_OF_ARRAY(args0)];\
124 #define ADD_ARG_CASE4(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3, ARGS3)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 179 * @param type0 {@code non-null;} the first element
183 public static StdTypeList make(Type type0, Type type1) {
185 result.set(0, type0);
193 * @param type0 {@code non-null;} the first element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
200 result.set(0, type0);
209 * @param type0 {@code non-null;} the first element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
218 result.set(0, type0);
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 179 * @param type0 {@code non-null;} the first element
183 public static StdTypeList make(Type type0, Type type1) {
185 result.set(0, type0);
193 * @param type0 {@code non-null;} the first element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
200 result.set(0, type0);
209 * @param type0 {@code non-null;} the first element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
218 result.set(0, type0);
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 179 * @param type0 {@code non-null;} the first element
183 public static StdTypeList make(Type type0, Type type1) {
185 result.set(0, type0);
193 * @param type0 {@code non-null;} the first element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
200 result.set(0, type0);
209 * @param type0 {@code non-null;} the first element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
218 result.set(0, type0);
  /external/clang/test/CodeGenObjC/
objc-fixed-enum.m 54 // CHECK: ![[ENUM0]] = metadata !{{{.*}}!"e0", metadata !{{[0-9]+}}, i32 {{[0-9]+}}, metadata ![[TYPE0:[0-9]+]]
55 // CHECK: ![[TYPE0]] = metadata !{{{.*}}!"Enum0", {{.*}} metadata ![[ENUMERATOR0]]} ; [ DW_TAG_typedef ] [Enum0]
  /external/eigen/doc/
TopicAssertions.dox 91 - \b EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(TYPE0,TYPE1) - fails if the two vector expression types must have different sizes.
92 - \b EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(TYPE0,TYPE1) - fails if the two matrix expression types must have different sizes.
  /frameworks/rs/
rsAllocation.cpp 545 const Type *type0 = this->getType(), local
548 return (type0->getCellCount() == type1->getCellCount()) &&
549 (type0->getDimLOD() == type1->getDimLOD()) &&
550 (type0->getDimFaces() == type1->getDimFaces()) &&
551 (type0->getDimYuv() == type1->getDimYuv()) &&
552 (type0->getDimX() == type1->getDimX()) &&
553 (type0->getDimY() == type1->getDimY()) &&
554 (type0->getDimZ() == type1->getDimZ());
  /external/chromium_org/ui/events/gesture_detection/
touch_disposition_gesture_filter_unittest.cc 74 GestureList Gestures(EventType type0, EventType type1) {
76 gestures[0] = type0;
81 GestureList Gestures(EventType type0,
85 gestures[0] = type0;
91 GestureList Gestures(EventType type0,
96 gestures[0] = type0;
    [all...]
  /external/chromium_org/chrome/browser/web_applications/
web_app_mac_unittest.mm 308 handler_0.types.insert("type0");
339 EXPECT_TRUE([file_handler_0_types containsObject:@"type0"]);
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.h 93 /** Returns the font type represented in this font. For Type0 fonts,
  /external/clang/test/CodeGenCXX/
type_visibility.cpp 107 namespace type0 { namespace
  /external/skia/src/pdf/
SkPDFFont.h 93 /** Returns the font type represented in this font. For Type0 fonts,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_insn.c 355 SVGA3dShaderRegType type0, type1; local
359 type0 = SVGA3dShaderGetRegType( src0.base.value );
362 if (type0 == SVGA3DREG_CONST &&
367 if (type0 == SVGA3DREG_INPUT &&
404 SVGA3dShaderRegType type0, type1, type2; local
408 type0 = SVGA3dShaderGetRegType( src0.base.value );
413 if (type0 == SVGA3DREG_CONST &&
423 if (type0 == SVGA3DREG_INPUT &&
475 SVGA3dShaderRegType type0, type1, type2, type3; local
479 type0 = SVGA3dShaderGetRegType( src0.base.value )
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_insn.c 355 SVGA3dShaderRegType type0, type1; local
359 type0 = SVGA3dShaderGetRegType( src0.base.value );
362 if (type0 == SVGA3DREG_CONST &&
367 if (type0 == SVGA3DREG_INPUT &&
404 SVGA3dShaderRegType type0, type1, type2; local
408 type0 = SVGA3dShaderGetRegType( src0.base.value );
413 if (type0 == SVGA3DREG_CONST &&
423 if (type0 == SVGA3DREG_INPUT &&
475 SVGA3dShaderRegType type0, type1, type2, type3; local
479 type0 = SVGA3dShaderGetRegType( src0.base.value )
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 616 #define MAKE_MAT_SCALAR_VEC_CASES(OP, TYPE0, TYPE1) \
617 OP(INPUTTYPE_CONST, TYPE0, INPUTTYPE_CONST, TYPE1); \
618 OP(INPUTTYPE_DYNAMIC, TYPE0, INPUTTYPE_CONST, TYPE1); \
619 OP(INPUTTYPE_CONST, TYPE0, INPUTTYPE_DYNAMIC, TYPE1); \
620 OP(INPUTTYPE_DYNAMIC, TYPE0, INPUTTYPE_DYNAMIC, TYPE1)
    [all...]
es2fUniformApiTests.cpp 345 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
348 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
352 structType->addMember("m0", glu::VarType(type0, prec0));
356 structType->addMember("m2", glu::VarType(glu::VarType(type0, prec0), 3));
366 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
368 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
373 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "")
376 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
382 subSubStructType->addMember("mss0", glu::VarType(type0, prec0));
386 subStructType->addMember("ms1", glu::VarType(glu::VarType(type0, prec0), 2))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp 411 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
414 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
418 structType->addMember("m0", glu::VarType(type0, prec0));
422 structType->addMember("m2", glu::VarType(glu::VarType(type0, prec0), 3));
432 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
434 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
439 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "")
442 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
448 subSubStructType->addMember("mss0", glu::VarType(type0, prec0));
452 subStructType->addMember("ms1", glu::VarType(glu::VarType(type0, prec0), 2))
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramUniformTests.cpp 391 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
394 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
398 structType->addMember("m0", glu::VarType(type0, prec0));
402 structType->addMember("m2", glu::VarType(glu::VarType(type0, prec0), 3));
412 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
414 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
419 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "")
422 const glu::Precision prec0 = glu::isDataTypeBoolOrBVec(type0) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
428 subSubStructType->addMember("mss0", glu::VarType(type0, prec0));
432 subStructType->addMember("ms1", glu::VarType(glu::VarType(type0, prec0), 2))
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramEffects.cpp 162 SkMatrix::TypeMask type0 = coordTransform.getMatrix().getType(); local
176 int combinedTypes = type0 | type1;

Completed in 1501 milliseconds

1 2