HomeSort by relevance Sort by last modified time
    Searched refs:input1 (Results 1 - 22 of 22) sorted by null

  /external/stlport/test/unit/
plusminus_test.cpp 33 int input1 [4] = { 1, 6, 11, 8 }; local
36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>());
42 int input1 [4] = { 1, 5, 7, 8 }; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
logic_test.cpp 35 bool input1 [4] = { true, true, false, true }; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
55 bool input1 [4] = { true, true, false, true }; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
modulus_test.cpp 30 int input1 [4] = { 6, 8, 10, 2 }; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
neq_test.cpp 44 int input1 [4] = { 1, 7, 2, 2 }; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
ptr2_test.cpp 45 int input1 [4] = { 7, 2, 3, 5 }; local
49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum));
58 int input1 [4] = { 7, 2, 3, 5 }; local
62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
equal_test.cpp 164 int input1 [4] = { 1, 7, 2, 2 }; local
168 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, equal_to<int>());
  /external/sqlite/android/
PhoneNumberUtilsTest.cpp 32 #define EXPECT(function, input1, input2, expected, total, error) \
34 const char *i1_cache = input1; \
49 #define EXPECT_EQ(input1, input2) \
50 EXPECT(phone_number_compare_strict, (input1), (input2), true, \
54 #define EXPECT_NE(input1, input2) \
55 EXPECT(phone_number_compare_strict, (input1), (input2), false, \
  /external/webkit/WebCore/svg/
SVGFETileElement.cpp 61 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
63 if (!input1)
66 RefPtr<FilterEffect> effect = FETile::create(input1);
SVGFEBlendElement.cpp 84 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
87 if (!input1 || !input2)
90 RefPtr<FilterEffect> effect = FEBlend::create(input1, input2, static_cast<BlendModeType>(mode()));
SVGFEComponentTransferElement.cpp 66 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
68 if (!input1)
87 RefPtr<FilterEffect> effect = FEComponentTransfer::create(input1, red, green, blue, alpha);
SVGFEGaussianBlurElement.cpp 85 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
87 if (!input1)
90 RefPtr<FilterEffect> effect = FEGaussianBlur::create(input1, stdDeviationX(), stdDeviationY());
SVGFEMorphologyElement.cpp 94 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
96 if (!input1)
99 RefPtr<FilterEffect> effect = FEMorphology::create(input1, static_cast<MorphologyOperatorType>(_operator()), radiusX(), radiusY());
SVGFEOffsetElement.cpp 75 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
77 if (!input1)
80 RefPtr<FilterEffect> effect = FEOffset::create(input1, dx(), dy());
SVGFEColorMatrixElement.cpp 86 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
88 if (!input1)
99 RefPtr<FilterEffect> effect = FEColorMatrix::create(input1, static_cast<ColorMatrixType>(type()), _values);
SVGFEDiffuseLightingElement.cpp 98 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
100 if (!input1)
106 RefPtr<FilterEffect> effect = FEDiffuseLighting::create(input1, color, surfaceScale(), diffuseConstant(),
SVGFEDisplacementMapElement.cpp 99 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
102 if (!input1 || !input2)
106 RefPtr<FilterEffect> effect = FEDisplacementMap::create(input1, input2, static_cast<ChannelSelectorType>(xChannelSelector()),
SVGFECompositeElement.cpp 107 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
110 if (!input1 || !input2)
113 RefPtr<FilterEffect> effect = FEComposite::create(input1, input2, static_cast<CompositeOperationType>(_operator()),
SVGFESpecularLightingElement.cpp 114 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
116 if (!input1)
123 RefPtr<FilterEffect> effect = FESpecularLighting::create(input1, color, surfaceScale(), specularConstant(),
  /packages/apps/Email/src/org/apache/commons/io/
IOUtils.java     [all...]
FileUtils.java 441 InputStream input1 = null; local
444 input1 = new FileInputStream(file1);
446 return IOUtils.contentEquals(input1, input2);
449 IOUtils.closeQuietly(input1);
    [all...]
  /external/webkit/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 921 "<input type='text' id='input1'/>" \
927 QWebElement input1 = inputs.at(0); local
928 input1.setFocus();
929 QVERIFY(input1.hasFocus());
933 QVERIFY(!input1.hasFocus());
  /external/icu4c/test/cintltst/
ncnvtst.c 672 static const char input1[INPUT_SIZE]={ 0x70 }; local
    [all...]

Completed in 6962 milliseconds