HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 176 - 200 of 5380) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/graphics/jni/
android_graphics_cts_ANativeWindowTest.cpp 42 int error = ANativeWindow_setBuffersDataSpace(window, dataSpace); local
43 if (error != 0) {
44 return error;
50 return error;
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eleven.cpp 41 GLint error = glGetError(); local
42 Data data = {error, count, -1};
attach_shader_four.cpp 36 GLint error = glGetError(); local
37 Data data = {error, count, -1};
attach_shader_seven.cpp 34 GLint error = glGetError(); local
35 Data data = {error, -9 , -1};
attach_shader_six.cpp 34 GLint error = glGetError(); local
35 Data data = {error, -9 , -1};
attach_shader_ten.cpp 40 GLint error = glGetError(); local
41 Data data = {error, count, -1};
attach_shader_three.cpp 40 GLint error = glGetError(); local
41 Data data = {error, -9, -1};
attach_shader_two.cpp 42 GLint error = glGetError(); local
43 LOGI("Error %d\n", error);
44 Data data = {error, count, -1};
  /development/build/tools/
mk_sdk_repo_xml.sh 19 function error() { function
20 echo "*** ERROR: " $@
40 error "Missing tool: sha1sum (Linux: apt-get install coreutils; Mac: port install md5sha1sum)"
45 [[ -z "$OUT" ]] && error "Missing output.xml name."
50 [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA."
56 [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA."
65 [[ -z "$ROOT" ]] && error "Failed to find root element in $SCHEMA."
332 [[ -z $TYPE ]] && error "Unknown archive type '$1'."
353 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC"
404 error "Failed to find source.properties or manifest.ini in $SRC
    [all...]
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 70 ULONG error = GetLastError(); local
73 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) {
81 error = GetLastError();
83 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) {
  /development/tools/axl/
log.py 50 def error(self, *logstrs): member in class:Log
  /device/generic/goldfish/dhcp/common/
result.h 28 // Construct a result indicating an error.
29 static Result error(std::string message) { function in class:Result
32 static Result error(const char* format, ...) { function in class:Result
  /device/generic/goldfish/wifi/ipv6proxy/
main.cpp 81 loge("ERROR: Unknown argument '%s'\n\n", argv[i]);
86 bool error = false; local
88 loge("ERROR: Missing inner interface\n");
89 error = true;
92 loge("ERROR: Missing outer interface\n");
93 error = true;
97 error = true;
100 if (error) {
result.h 23 // Construct a result indicating an error. NOTE: the data in |message| will
26 static Result error(const char* message) { function in class:Result
  /device/google/marlin/vibrator/
service.cpp 38 int error = errno; local
39 ALOGE("Failed to open %s (%d): %s", ENABLE_PATH, error, strerror(error));
40 return -error;
45 int error = errno; local
46 ALOGE("Failed to open %s (%d): %s", AMPLITUDE_PATH, error, strerror(error));
47 return -error;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
testcapi_long.h 11 TESTNAME(PyObject *error(const char*)) function
18 /* Note: This test lets PyObjects leak if an error is raised. Since
19 an error should never be raised, leaks are impossible <wink>. */
47 return error(
52 return error(
55 return error(
62 return error(
67 return error(
70 return error(
87 return error(
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DFA.js 18 * an exception upon error.
103 this.error(nvae);
108 error: function(nvae) { },
105 }, method in class:org.antlr.runtime.DFA
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DFA.pm 4 use Error qw( try finally );
63 # an exception upon error.
151 $self->error($nvae);
156 sub error { subroutine
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 69 an exception upon error.
163 self.error(nvae)
167 def error(self, nvae): member in class:DFA
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 102 include Error
304 error( except )
308 def error( except ) method in class:ANTLR3
  /external/brotli/python/
brotli.py 46 brotli.error: If arguments are invalid, or compressor fails.
56 error = _brotli.error variable
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp 10 [[noreturn, noreturn]] void b() { throw 0; } // expected-error {{attribute 'noreturn' cannot appear multiple times in an attribute specifier}}
13 [[noreturn()]] void c(); // expected-error {{attribute 'noreturn' cannot have an argument list}}
15 void d() [[noreturn]]; // expected-error {{'noreturn' attribute cannot be applied to types}}
16 int d2 [[noreturn]]; // expected-error {{'noreturn' attribute only applies to functions}}
21 [[noreturn]] int f(); // expected-error {{function declared '[[noreturn]]' after its first declaration}}
30 template<typename T> void test_type(T) { T::error; } // expected-error {{has no members}} member in class:T
  /external/clang/test/SemaCXX/
diagnostic-order.cpp 9 template<typename T, typename> struct Error { typedef typename T::error error; }; typedef in struct:Error
10 struct X { template<typename T> friend typename Error<X, T>::error f(X, T); };
11 struct Y { template<typename T> friend typename Error<Y, T>::error f(T, Y); };
21 // CHECK: no type named 'error' in 'X'
22 // CHECK: no type named 'error' in 'Y'
27 template<typename T, typename U = typename Error<Oper, T>::error> operator T()
    [all...]
vla.cpp 5 int (&f())[n]; // expected-error {{function declaration cannot have variably modified type}}
9 template<typename T> struct error { struct in namespace:PR18581
10 typename T::error e; // expected-error {{cannot be used prior to '::'}}
16 error<int> b[n]; // expected-note {{instantiation}}
17 incomplete c[n]; // expected-error {{incomplete}}
21 void pr23151(int (&)[*]) { // expected-error {{variable length array must be bound in function definition}}
  /external/curl/docs/examples/
multithread.c 55 curl_easy_perform(curl); /* ignores error */
72 int error; local
78 error = pthread_create(&tid[i],
82 if(0 != error)
83 fprintf(stderr, "Couldn't run thread number %d, errno %d\n", i, error);
90 error = pthread_join(tid[i], NULL);

Completed in 368 milliseconds

1 2 3 4 5 6 78 91011>>