HomeSort by relevance Sort by last modified time
    Searched refs:error2 (Results 1 - 25 of 47) sorted by null

1 2

  /external/libweave/src/
error_unittest.cc 53 const Error* error2 = clone.get(); local
54 while (error1 && error2) {
55 EXPECT_NE(error1, error2);
56 EXPECT_EQ(error1->GetCode(), error2->GetCode());
57 EXPECT_EQ(error1->GetMessage(), error2->GetMessage());
59 error2->GetLocation().function_name);
60 EXPECT_EQ(error1->GetLocation().file_name, error2->GetLocation().file_name);
62 error2->GetLocation().line_number);
64 error2 = error2->GetInnerError()
    [all...]
  /external/libbrillo/brillo/errors/
error_unittest.cc 68 const brillo::Error* error2 = clone.get(); local
69 while (error1 && error2) {
70 EXPECT_NE(error1, error2);
71 EXPECT_EQ(error1->GetDomain(), error2->GetDomain());
72 EXPECT_EQ(error1->GetCode(), error2->GetCode());
73 EXPECT_EQ(error1->GetMessage(), error2->GetMessage());
75 error2->GetLocation().function_name);
76 EXPECT_EQ(error1->GetLocation().file_name, error2->GetLocation().file_name);
78 error2->GetLocation().line_number);
80 error2 = error2->GetInnerError()
    [all...]
  /external/clang/test/Sema/
atomic-type.c 19 _Atomic(struct ErrorS) error2; // expected-error {{_Atomic cannot be applied to incomplete type}} expected-note {{forward declaration}}
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 80 goto error2;
88 goto error2;
99 goto error2;
115 error2:
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 80 goto error2;
88 goto error2;
99 goto error2;
115 error2:
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 80 goto error2;
88 goto error2;
99 goto error2;
115 error2:
  /hardware/qcom/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 85 goto error2;
93 goto error2;
104 goto error2;
120 error2:
  /hardware/qcom/camera/msmcobalt/QCamera2/HAL/
QCameraThermalAdapter.cpp 85 goto error2;
93 goto error2;
104 goto error2;
120 error2:
  /external/v8/test/mjsunit/
error-accessors.js 44 var error2; variable
45 try { x.x } catch (e) { error2 = e; }
47 o.__proto__ = error2;
50 Object.getOwnPropertyDescriptor(error2, "message").value);
53 assertEquals("x is not defined", error2.message);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince853Integrator.java 252 double error2 = 0; local
271 error2 += ratio2 * ratio2;
274 double den = error1 + 0.01 * error2;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_buffer.c 189 goto error2;
199 error2:
  /external/v8/test/webkit/fast/js/
Promise-chained-then.js 52 throw 'error2';
59 shouldBeEqualToString('result', 'error2');
  /external/libopus/celt/tests/
test_unit_mathops.c 214 float error2 = fabs(exp(0.6931471805599453094*x/1024.0)-celt_exp2(x)/65536.0); local
215 if (error1>0.0002&&error2>0.00004)
217 fprintf (stderr, "celt_exp2 failed: x = "WORD", error1 = %f, error2 = %f\n", x,error1,error2);
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.c 356 goto error2;
361 goto error2;
369 error2:
  /external/freetype/src/cff/
cf2ft.c 343 FT_Error error2 = FT_Err_Ok; local
390 error2 = cf2_checkTransform( &transform, font->unitsPerEm );
391 if ( error2 )
392 return error2;
395 error2 = cf2_getGlyphOutline( font, &buf, &transform, &glyphWidth );
396 if ( error2 )
cf2intrp.c 1297 FT_Error error2; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cf2ft.c 343 FT_Error error2 = FT_Err_Ok; local
390 error2 = cf2_checkTransform( &transform, font->unitsPerEm );
391 if ( error2 )
392 return error2;
395 error2 = cf2_getGlyphOutline( font, &buf, &transform, &glyphWidth );
396 if ( error2 )
cf2intrp.c 1102 FT_Error error2; local
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2ft.c 343 FT_Error error2 = FT_Err_Ok; local
390 error2 = cf2_checkTransform( &transform, font->unitsPerEm );
391 if ( error2 )
392 return error2;
395 error2 = cf2_getGlyphOutline( font, &buf, &transform, &glyphWidth );
396 if ( error2 )
cf2intrp.c 1102 FT_Error error2; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pcf/
pcfdrivr.c 285 FT_Error error2; local
289 error2 = FT_Stream_OpenGzip( &face->comp_stream, stream );
290 if ( FT_ERR_EQ( error2, Unimplemented_Feature ) )
293 error = error2;
  /system/extras/alloc-stress/
alloc-stress.cpp 96 int error2 = pipe(b); local
98 ASSERT_TRUE(error2 >= 0);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_exceptions.py 617 error2 = _testcapi.make_exception_with_doc("_testcapi.error2", doc2)
618 self.assertEqual(error2.__doc__, doc2)
622 base=error2)
623 self.assertTrue(issubclass(error3, error2))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_exceptions.py 617 error2 = _testcapi.make_exception_with_doc("_testcapi.error2", doc2)
618 self.assertEqual(error2.__doc__, doc2)
622 base=error2)
623 self.assertTrue(issubclass(error3, error2))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 617 error2 = _testcapi.make_exception_with_doc("_testcapi.error2", doc2)
618 self.assertEqual(error2.__doc__, doc2)
622 base=error2)
623 self.assertTrue(issubclass(error3, error2))

Completed in 1294 milliseconds

1 2