HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 326 - 350 of 2948) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
address-of.cpp 15 bar(&var); // expected-error{{invalid use of member 'var' in static member function}}
25 (void)&Enumerator; // expected-error{{cannot take the address of an rvalue of type 'E'}}
30 (void)&N; // expected-error{{cannot take the address of an rvalue of type 'int'}}
44 int (PR11066::*ptr)(int) = & &PR11066::foo; // expected-error{{extra '&' taking address of overloaded function}}
48 // emit no error
52 template<typename T> void S<T>::f() { T::error; } member in class:test3::T
  /external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp 12 T t; // expected-error{{field has incomplete type}}
26 static T f() { T::error; } // expected-error {{has no members}} member in class:X::T
  /external/eigen/bench/btl/actions/
action_lu_solve.hh 110 typename Interface::real_type error= local
113 if (error>1.e-5){
114 INFOS("WRONG CALCULATION...residual=" << error);
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 42 double error = double( (m*inv-MatrixType::Identity()).norm() / epsilon<Scalar>() ); local
43 VERIFY(error == 0.0);
62 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / epsilon<Scalar>() ); local
63 error_sum += error;
64 error_max = std::max(error_max, error);
  /external/eigen/test/
prec_inverse_4x4.cpp 23 double error = double( (m*inv-MatrixType::Identity()).norm() / NumTraits<Scalar>::epsilon() ); local
24 EIGEN_DEBUG_VAR(error)
25 VERIFY(error == 0.0);
44 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / NumTraits<Scalar>::epsilon() ); local
45 error_sum += error;
46 error_max = (std::max)(error_max, error);
  /external/freetype/src/base/
ftinit.c 148 error = FT_Create_Class_ ## x( library, &clazz ); \
149 if ( error ) \
157 FT_Error error; local
171 return error;
183 if ( error )
188 return error;
200 FT_Error error; local
218 error = FT_Add_Module( library, *cur );
220 if ( error )
222 " Cannot install `%s', error = 0x%x\n"
234 FT_Error error; local
    [all...]
  /external/freetype/src/cache/
ftcglyph.c 122 FT_Error error; local
125 error = FTC_Cache_Init( FTC_CACHE( cache ) );
126 if ( !error )
137 return error;
193 FT_Error error; local
198 FTC_MRULIST_LOOKUP( &cache->families, query, query->family, error );
199 if ( !error )
208 error = FTC_Cache_Lookup( FTC_CACHE( cache ), hash, query, anode );
213 return error;
  /external/freetype/src/cff/
cf2arrst.c 49 * CF2_ArrStack uses an error pointer, to enable shared errors.
51 * to continue after detecting errors. Only the first error should be
58 FT_Error* error,
65 arrstack->error = error;
93 /* return false on memory error */
101 FT_Error error = FT_Err_Ok; /* for FT_REALLOC */ local
121 CF2_SET_ERROR( arrstack->error, Stack_Overflow );
131 /* if there's not already an error, store this one */
132 CF2_SET_ERROR( arrstack->error, Out_Of_Memory )
    [all...]
cf2arrst.h 54 FT_Error* error; member in struct:CF2_ArrStackRec_
70 FT_Error* error,
cf2stack.h 64 FT_Error* error; member in struct:CF2_StackRec_
73 FT_Error* error );
  /external/freetype/src/raster/
ftrend1.c 65 FT_Error error = FT_Err_Ok; local
70 error = FT_THROW( Invalid_Argument );
81 return error;
105 FT_Error error; local
118 error = FT_THROW( Invalid_Argument );
183 error = FT_THROW( Invalid_Argument );
232 error = render->raster_render( render->raster, &params );
236 if ( error )
244 return error;
  /external/freetype/src/sfnt/
ttmtx.c 54 /* FreeType error code. 0 means success. */
61 FT_Error error; local
80 error = face->goto_table( face, tag, stream, &table_size );
81 if ( error )
88 return error;
108 /* FreeType error code. 0 means success. */
115 FT_Error error; local
150 error = face->goto_table( face, TTAG_vhea, stream, 0 );
151 if ( error )
158 error = face->goto_table( face, TTAG_hhea, stream, 0 )
208 FT_Error error; local
    [all...]
  /external/harfbuzz/contrib/
harfbuzz-freetype.c 42 const FT_Error error = FT_Load_Glyph(face, glyphs[i], FT_LOAD_DEFAULT); local
43 if (error) {
70 HB_Error error = HB_Err_Ok; local
75 if ((error = (HB_Error) FT_Load_Glyph(face, glyph, load_flags)))
76 return error;
99 const FT_Error error = FT_Load_Glyph(face, glyph, FT_LOAD_DEFAULT); local
100 if (error) {
146 const FT_Error error = FT_Load_Sfnt_Table(face, tag, 0, buffer, &ftlen); local
148 return (HB_Error) error;
  /external/icu4c/i18n/
csrmbcs.h 36 UBool error; member in class:IteratedChar
  /external/icu4c/tools/genrb/
errmsg.c 9 * File error.c
23 U_CFUNC void error(uint32_t linenumber, const char *msg, ...) function
  /external/ipsec-tools/src/racoon/
main.c 146 int error; local
190 errx(1, "something error happened "
210 error = cfparse();
211 if (error != 0)
217 if ((error = isakmp_cfg_resize_pool(ISAKMP_CFG_MAX_CNX)) != 0)
218 return error;
237 errx(1, "something error happened "
  /external/linux-tools-perf/util/
usage.c 29 report(" Error: ", err, params);
63 int error(const char *err, ...) function
  /external/llvm/unittests/Support/
ErrorOrTest.cpp 32 EXPECT_DEBUG_DEATH(*a, "Cannot get value when an error exists");
80 static error_code error() { function in struct:llvm::ErrorOrUserDataTraits
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_core.h 60 uint32_t error; member in struct:rbug_proto_error
73 uint32_t error; member in struct:rbug_proto_error_reply
83 uint32_t error,
92 uint32_t error,
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.h 51 /* If an error occured. */
52 boolean error; member in struct:tgsi_to_rc
  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 117 /* Return true if an error occurred. */
126 CGLError error; local
169 error = apple_cgl.create_context(p->pixel_format_obj, NULL,
172 if (kCGLNoError != error) {
apple_visual.c 74 CGLError error = 0; local
160 error = apple_cgl.choose_pixel_format(attr, pfobj, &vsref);
162 if (error) {
163 fprintf(stderr, "error: %s\n", apple_cgl.error_string(error));
  /external/mockito/src/org/mockito/internal/verification/
VerificationWithTimeoutImpl.java 25 MockitoAssertionError error = null; local
31 error = e;
36 if (error != null) {
37 throw error;
  /external/openssh/openbsd-compat/
bindresvport.c 55 int error, af; local
95 error = -1;
100 error = bind(sd, sa, salen);
103 if (error == 0)
107 if ((error < 0) && !((errno == EADDRINUSE) || (errno == EINVAL)))
115 return (error);
strtonum.c 39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)

Completed in 478 milliseconds

<<11121314151617181920>>