HomeSort by relevance Sort by last modified time
    Searched refs:error (Results 101 - 125 of 8794) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/freetype/include/
ftxf86.h 26 #error "freetype.h of FreeType 1 has been loaded!"
27 #error "Please fix the directory search order for header files"
28 #error "so that freetype.h of FreeType 2 is found first."
74 /* Font format string. NULL in case of error. */
  /external/chromium_org/base/threading/
thread_local_posix.cc 18 int error = pthread_key_create(slot, NULL); local
19 CHECK_EQ(error, 0);
24 int error = pthread_key_delete(slot); local
25 DCHECK_EQ(0, error);
35 int error = pthread_setspecific(slot, value); local
36 DCHECK_EQ(error, 0);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorHandlerImpl.java 44 * adds copy of error to list for later retrieval.
47 public boolean handleError(DOMError error) {
50 if (error.getSeverity() == DOMError.SEVERITY_WARNING) {
53 } else if (error.getSeverity() == DOMError.SEVERITY_ERROR) {
54 severity = "[Error]";
55 } else if (error.getSeverity() == DOMError.SEVERITY_FATAL_ERROR) {
56 severity = "[Fatal Error]";
59 System.err.println(severity + ": " + error.getMessage() + "\t");
60 System.err.println("Type : " + error.getType() + "\t" + "Related Data: "
61 + error.getRelatedData() + "\t" + "Related Exception: "
    [all...]
  /external/chromium_org/base/memory/
memory_pressure_level_list.h 9 #error "DEFINE_MEMORY_PRESSURE_LEVEL should be defined."
  /external/chromium_org/chrome/test/chromedriver/chrome/
status_unittest.cc 16 TEST(StatusTest, Error) {
17 Status error(kUnknownCommand);
18 ASSERT_FALSE(error.IsOk());
19 ASSERT_TRUE(error.IsError());
20 ASSERT_EQ(kUnknownCommand, error.code());
21 ASSERT_STREQ("unknown command", error.message().c_str());
25 Status error(kUnknownError, "something happened");
26 ASSERT_FALSE(error.IsOk());
27 ASSERT_TRUE(error.IsError());
28 ASSERT_EQ(kUnknownError, error.code())
    [all...]
  /external/chromium_org/components/bookmarks/common/android/
bookmark_type_list.h 9 #error "DEFINE_BOOKMARK_TYPE should be defined before including this file"
  /external/chromium_org/content/common/android/
gin_java_bridge_errors.cc 11 const char* GinJavaBridgeErrorToString(GinJavaBridgeError error) {
12 switch (error) {
14 return "No error";
32 return "Unknown error";
  /external/chromium_org/sandbox/linux/services/
android_ucontext.h 21 #error "No support for your architecture in Android header"
25 #error "Android header file included on non Android."
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
SdpObserver.java 38 /** Called on error of Create{Offer,Answer}(). */
39 public void onCreateFailure(String error);
41 /** Called on error of Set{Local,Remote}Description(). */
42 public void onSetFailure(String error);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/
boolhuff_arm.c 38 struct vpx_internal_error_info *error)
40 return validate_buffer(start, len, end, error);
  /external/chromium_org/tools/gyp/test/make_global_settings/full-toolchain/
bar.cc 0 #error Not a real source file
foo.c 0 #error Not a real source file
  /external/clang/test/Frontend/
exceptions.c 5 #error __EXCEPTIONS should not be defined.
  /external/clang/test/PCH/
pth.c 4 #error This is the only diagnostic
7 // CHECK: 1 error generated.
  /external/clang/test/Preprocessor/
_Pragma.c 12 #error #define invalid
  /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/libvpx/libvpx/vp8/encoder/arm/
boolhuff_arm.c 38 struct vpx_internal_error_info *error)
40 return validate_buffer(start, len, end, error);
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_error.c 43 xError error; local
50 error.type = X_Error;
53 error.errorCode = errorCode;
56 error.errorCode = glx_dpy->codes->first_error + errorCode;
59 error.sequenceNumber = dpy->request;
60 error.resourceID = resourceID;
61 error.minorCode = minorCode;
62 error.majorCode = gc ? gc->majorOpcode : 0;
64 _XError(dpy, &error);
72 xError error; local
    [all...]
  /external/mesa3d/src/glx/
glx_error.c 43 xError error; local
50 error.type = X_Error;
53 error.errorCode = errorCode;
56 error.errorCode = glx_dpy->codes->first_error + errorCode;
59 error.sequenceNumber = dpy->request;
60 error.resourceID = resourceID;
61 error.minorCode = minorCode;
62 error.majorCode = gc ? gc->majorOpcode : 0;
64 _XError(dpy, &error);
72 xError error; local
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslErrorTest.java 37 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
38 assertTrue(error.hasError(SslError.SSL_EXPIRED));
39 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
43 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
44 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
45 error.addError(SslError.SSL_UNTRUSTED);
46 assertTrue(error.hasError(SslError.SSL_UNTRUSTED));
50 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
51 error.addError(42);
52 assertFalse(error.hasError(42))
56 SslError error = new SslError(42, mCertificate); local
61 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
67 SslError error = new SslError(42, mCertificate); local
72 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate, "foo"); local
77 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
    [all...]
  /external/elfutils/0.153/libdwfl/
dwfl_error.c 0 /* Error handling in libdwfl.
64 /* The error number. */
106 canonicalize (Dwfl_Error error)
110 switch (error)
113 value = error;
139 __libdwfl_canon_error (Dwfl_Error error)
141 return canonicalize (error);
146 __libdwfl_seterrno (Dwfl_Error error)
148 global_error = canonicalize (error);
153 dwfl_errmsg (error)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
floatio.h 53 #error "floating point buffers too small"
  /development/ndk/platforms/android-3/include/linux/
spinlock_types_up.h 16 #error "please don't include this file directly"
  /external/chromium_org/extensions/browser/
management_policy_unittest.cc 66 base::string16 error; local
69 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
70 EXPECT_TRUE(error.empty());
74 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
75 EXPECT_TRUE(error.empty());
79 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
80 EXPECT_TRUE(error.empty());
84 EXPECT_FALSE(policy_.UserMayLoad(NULL, &error));
85 EXPECT_FALSE(error.empty());
89 error.clear()
95 base::string16 error; local
123 base::string16 error; local
151 base::string16 error; local
184 base::string16 error = original_error16; local
    [all...]
  /external/chromium_org/sql/
error_delegate_util.h 13 // |error|.
14 SQL_EXPORT bool IsErrorCatastrophic(int error);

Completed in 1235 milliseconds

1 2 3 45 6 7 8 91011>>