HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 126 - 150 of 3032) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/freetype/src/smooth/
ftspic.c 58 FT_Error error = FT_Err_Ok; local
68 return error;
73 return error;
83 return error;
  /external/hamcrest/library/src/org/hamcrest/number/
IsCloseTo.java 13 * acceptable error?
16 private final double error; field in class:IsCloseTo
19 public IsCloseTo(double value, double error) {
20 this.error = error;
25 return Math.abs((item - value)) <= error;
30 .appendValue(error)
36 public static Matcher<Double> closeTo(double operand, double error) {
37 return new IsCloseTo(operand, error);
  /external/ipsec-tools/src/racoon/
dnssec.c 68 int error; local
84 error = getcertsbyname(name, &res);
85 if (error != 0) {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
ClientStateListener.java 66 public Throwable error; field in class:ClientStateListener.DisconnectInfo
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Parser.java 30 /** Called whenever an error occurs. */
33 * Report an error to the ErrorHandler.
35 * @param line number of the line where error occurred. The value of -1 represents line number
37 * @param lineContent text of the line with error
38 * @param fileName name of the file in which the error occurred
39 * @param errorMessage description of an error
41 void error(int line, String lineContent, String fileName, String errorMessage); method in interface:Parser.ErrorHandler
49 * @param errorHandler Error callback to be called on any error.
52 * handling include loops and error messages
    [all...]
  /external/libcxx/test/libcxx/android/
adb.py 1 import lit.util # pylint: disable=import-error namespace
  /external/libxml2/python/tests/
tstmem.py 6 def error(msg, data): function
18 libxml2mod.xmlSetValidErrors(ctxt._o, error, error)
22 print("error doing DTD validation")
  /external/lldb/source/Core/
UserSettingsController.cpp 16 #include "lldb/Core/Error.h"
31 Error &error) const
35 return properties_sp->GetSubValue(exe_ctx, path, will_modify, error);
39 Error
48 Error error;
49 error.SetErrorString ("no properties");
50 return error;
74 Error
85 Error error; local
    [all...]
  /external/lldb/source/Interpreter/
OptionGroupOutputFile.cpp 50 Error
55 Error error; local
61 error = m_file.SetValueFromCString (option_arg);
69 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
73 return error;
OptionGroupPlatform.cpp 29 Error& error,
36 platform_sp = Platform::Create (m_platform_name.c_str(), error);
41 error.SetErrorStringWithFormat ("platform '%s' doesn't support '%s'",
51 platform_sp = Platform::Create (arch, &platform_arch, error);
111 Error
116 Error error; local
133 error.SetErrorStringWithFormat ("invalid version string '%s'", option_arg);
145 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option)
    [all...]
OptionGroupUUID.cpp 48 Error
53 Error error; local
59 error = m_uuid.SetValueFromCString (option_arg);
60 if (error.Success())
65 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
69 return error;
OptionValueFileSpec.cpp 72 Error
76 Error error; local
96 error.SetErrorString("please supply a single path argument for this file or quote the path if it contains spaces");
101 error.SetErrorString("invalid value string");
110 error = OptionValue::SetValueFromCString (value_cstr, op);
113 return error;
OptionValueString.cpp 53 Error
57 Error error; local
70 error.SetErrorString("mismatched quotes");
71 return error;
88 error = m_validator(value_cstr,m_validator_baton);
89 if (error.Fail())
90 return error;
92 error = OptionValue::SetValueFromCString (value_cstr, op);
111 error = m_validator(new_value.c_str(),m_validator_baton)
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
RegisterContextKDP_i386.cpp 39 Error error; local
40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
42 if (error.Success())
55 Error error; local
56 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, FPURegSet, &fpu, sizeof(fpu), error))
58 if (error.Success())
71 Error error; local
87 Error error; local
103 Error error; local
119 Error error; local
    [all...]
RegisterContextKDP_x86_64.cpp 39 Error error; local
40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
42 if (error.Success())
55 Error error; local
56 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, FPURegSet, &fpu, sizeof(fpu), error))
58 if (error.Success())
71 Error error; local
87 Error error; local
103 Error error; local
119 Error error; local
    [all...]
  /external/lldb/test/api/multithreaded/
listener_test.cpp 41 SBError error; local
47 error);
48 if (!error.Success())
49 throw Exception("Error launching process.");
test_listener_resume.cpp 38 SBError error = process.Continue(); local
39 if (!error.Success())
41 + error.GetCString());
  /external/llvm/include/llvm/Support/
Regex.h 51 std::swap(error, regex.error);
56 error = regex.error;
61 /// isValid - returns the error encountered during regex compilation, or
63 bool isValid(std::string &Error);
86 /// \param Error If non-null, any errors in the substitution (invalid
90 std::string *Error = nullptr);
101 int error; member in class:llvm::Regex
  /external/llvm/utils/llvm-build/llvmbuild/
util.py 10 error = lambda message: _write_message('error', message) variable
11 fatal = lambda message: (_write_message('fatal error', message), sys.exit(1))
13 __all__ = ['note', 'warning', 'error', 'fatal']
  /external/parameter-framework/remote-processor/
Message.h 47 error enumerator in enum:CMessage::Result
55 * @param[out] strError on failure, a string explaining the error,
60 * error if the message could not be read/write for any other reason
  /external/pdfium/third_party/freetype/src/base/
ftadvanc.c 92 FT_Error error; local
95 error = func( face, gindex, 1, flags, padvance );
96 if ( !error )
99 if ( FT_ERR_NEQ( error, Unimplemented_Feature ) )
100 return error;
118 FT_Error error = FT_Err_Ok; local
138 error = func( face, start, count, flags, padvances );
139 if ( !error )
142 if ( FT_ERR_NEQ( error, Unimplemented_Feature ) )
143 return error;
    [all...]
ftcid.c 32 FT_Error error; local
38 error = FT_ERR( Invalid_Argument );
48 error = service->get_ros( face, &r, &o, &s );
60 return error;
68 FT_Error error = FT_ERR( Invalid_Argument ); local
80 error = service->get_is_cid( face, &ic);
86 return error;
95 FT_Error error = FT_ERR( Invalid_Argument ); local
107 error = service->get_cid_from_glyph_index( face, glyph_index, &c);
113 return error;
    [all...]
ftsynth.c 94 FT_Error error; local
128 * about the cause of error.
136 error = FT_GlyphSlot_Own_Bitmap( slot );
137 if ( error )
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
141 if ( error )
  /external/pdfium/third_party/freetype/src/cff/
cf2read.h 48 FT_Error* error; member in struct:CF2_BufferRec_
cf2stack.c 50 /* Note: This function returns NULL on error (does not set */
51 /* `error'). */
56 FT_Error error = FT_Err_Ok; /* for FT_QNEW */ local
65 stack->error = e;
100 CF2_SET_ERROR( stack->error, Stack_Overflow );
116 CF2_SET_ERROR( stack->error, Stack_Overflow );
132 CF2_SET_ERROR( stack->error, Stack_Underflow );
137 CF2_SET_ERROR( stack->error, Syntax_Error );
154 CF2_SET_ERROR( stack->error, Stack_Underflow );
182 CF2_SET_ERROR( stack->error, Stack_Overflow )
    [all...]

Completed in 287 milliseconds

1 2 3 4 56 7 8 91011>>