| /external/apache-xml/src/main/java/org/apache/xml/serializer/ |
| CharInfo.java | 203 int code = Integer.parseInt(value); local 204 boolean extra = defineEntity(name, (char) code); 289 int code = Integer.parseInt(value); local 291 boolean extra = defineEntity(name, (char) code);
|
| /external/chromium/chrome/browser/diagnostics/ |
| diagnostics_main.cc | 2 // Use of this source code is governed by a BSD-style license that can be 167 const char* code = "\033[m"; local 170 code = "\033[1;31m"; 173 code = "\033[1;32m"; 180 printf("%s", code);
|
| /external/chromium/net/base/ |
| gzip_filter_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 84 int code = CompressAll(ENCODE_DEFLATE , source_buffer(), source_len(), local 86 ASSERT_TRUE(code == Z_STREAM_END); 95 code = CompressAll(ENCODE_GZIP, source_buffer(), source_len(), 97 ASSERT_TRUE(code == Z_STREAM_END); 114 // other zlib error code if fail. 121 int code; local 125 code = deflateInit2(&zlib_stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 130 code = deflateInit(&zlib_stream, Z_DEFAULT_COMPRESSION); 133 if (code != Z_OK 182 int code = Filter::FILTER_OK; local 347 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 370 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local 390 int code = DecodeAllWithFilter(filter_.get(), corrupt_data, corrupt_data_len, local [all...] |
| sdch_filter_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 183 // Response code needs to be 200 to allow a pass through. 221 // Response code needs to be 200 to allow a pass through. 262 // Response code needs to be 200 to allow a pass through. 299 // Response code needs to be 200 to allow a pass through. 767 int code; local 770 code = deflateInit2(&zlib_stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 775 CHECK_EQ(Z_OK, code); 808 code = deflate(&zlib_stream, Z_FINISH); [all...] |
| /external/chromium/net/socket/ |
| socks_client_socket.cc | 2 // Use of this source code is governed by a BSD-style license that can be 50 uint8 code; member in struct:net::SOCKS4ServerResponse 399 switch (response->code) {
|
| /external/chromium/third_party/libjingle/source/talk/base/ |
| opensslstreamadapter.cc | 8 * 1. Redistributions of source code must retain the above copyright notice, 240 int code = SSL_write(ssl_, data, data_len); local 241 switch (SSL_get_error(ssl_, code)) { 244 ASSERT(0 < code && static_cast<unsigned>(code) <= data_len); 246 *written = code; 258 Error("SSL_write", (code ? code : -1), false); 300 int code = SSL_read(ssl_, data, data_len); local 301 switch (SSL_get_error(ssl_, code)) { 461 int code = (role_ == SSL_CLIENT) ? SSL_connect(ssl_) : SSL_accept(ssl_); local [all...] |
| socketadapters.cc | 8 * 1. Redistributions of source code must retain the above copyright notice, 201 SignalCloseEvent(this, 0); // TODO: error code? 433 unsigned int code; local 434 if (sscanf(data, "HTTP/%*u.%*u %u", &code) != 1) { 438 switch (code) { 444 #error Wrong code for HTTP_STATUS_PROXY_AUTH_REQ
|
| /external/chromium/third_party/libjingle/source/talk/xmpp/ |
| xmppclient.cc | 8 * 1. Redistributions of source code must retain the above copyright notice, 39 talk_base::TaskParent* XmppClient::GetParent(int code) { 40 if (code == XMPP_CLIENT_TASK_CODE) 43 return talk_base::Task::GetParent(code); 348 int code = socket_->GetError(); local 349 engine_->ConnectionClosed(code);
|
| /external/doclava/src/com/google/doclava/apicheck/ |
| ApiCheck.java | 70 System.exit(report.code); 192 private int code; field in class:ApiCheck.Report 195 private Report(int code, Set<ErrorMessage> errors) { 196 this.code = code; 200 public int code() { method in class:ApiCheck.Report 201 return code;
|
| /external/elfutils/libdw/ |
| libdw.h | 72 /* Source code line information for CU. */ 75 /* One source code line information. */ 93 unsigned int code; member in struct:__anon5387 228 /* Return attribute code of given attribute. */ 231 /* Return form code of given attribute. */ 301 /* Get abbreviation code. */ 421 /* Return error code of last failing function call. This value is kept 438 /* Return attribute code of given attribute. */ 442 return attr == NULL ? 0 : attr->code; 445 /* Return attribute code of given attribute. * [all...] |
| /external/expat/xmlwf/ |
| xmlwin32url.cxx | 127 int code = XML_GetErrorCode(parser); local 128 const XML_Char *message = XML_ErrorString(code); 137 XML_GetBase(parser), code);
|
| /external/freetype/src/cff/ |
| cffparse.c | 40 FT_UInt code, 47 parser->object_code = code; 596 #define CFF_FIELD_NUM( code, name ) \ 597 CFF_FIELD( code, name, cff_kind_num ) 598 #define CFF_FIELD_FIXED( code, name ) \ 599 CFF_FIELD( code, name, cff_kind_fixed ) 600 #define CFF_FIELD_FIXED_1000( code, name ) \ 601 CFF_FIELD( code, name, cff_kind_fixed_thousand ) 602 #define CFF_FIELD_STRING( code, name ) \ 603 CFF_FIELD( code, name, cff_kind_string 799 FT_UInt code; local [all...] |
| /external/freetype/src/sfnt/ |
| sfobjs.c | 54 FT_UInt len, code, n; local 66 code = FT_NEXT_USHORT( read ); 67 if ( code < 32 || code > 127 ) 68 code = '?'; 70 string[n] = (char)code; 85 FT_UInt len, code, n; local 97 code = *read++; 98 if ( code < 32 || code > 127 [all...] |
| /external/icu4c/i18n/ |
| anytrans.cpp | 73 * The code of the current run, valid after next() returns. May 308 * Return the script code for a given name, or -1 if not found. 312 UScriptCode code; local 321 if (!isInvariant || uscript_getCode(buf, &code, 1, &ec) != 1 || U_FAILURE(ec)) 323 code = USCRIPT_INVALID_CODE; 325 return code; 356 // Get the script code for the target. If not a script, ignore.
|
| /external/icu4c/test/intltest/ |
| testidn.cpp | 146 uint32_t code; local 182 /* get the character code, field 0 */ 183 code=(uint32_t)uprv_strtoul(s, &end, 16); 189 compareMapping(code,mapping, length,USPREP_MAP); 209 //fprintf(stdout,"Number of code points that have mappings with length >1 : %i\n",len); 315 test.logln("Number of Unassinged code points : %i \n",unassigned); 316 test.logln("Number of Prohibited code points : %i \n",prohibited); 317 test.logln("Number of Mapped code points : %i \n",mapped); 318 test.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm); 319 test.logln("Number of code points that have no value in Trie: %i \n",noValueInTrie) [all...] |
| /external/icu4c/tools/gensprep/ |
| gensprep.c | 278 uint32_t code; local 283 /* get the character code, field 0 */ 284 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16); 304 (long)code, u_errorName(*pErrorCode)); 312 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); 327 /* fprintf(stdout,"Number of code points that have NormalizationCorrections mapping with length >1 : %i\n",len); */ 341 uint32_t code; local 376 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode)); 387 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode)); 396 /* get the character code, field 0 * [all...] |
| /external/javassist/src/main/javassist/ |
| CtMethod.java | 21 * An instance of <code>CtMethod</code> represents a method. 23 * <p>See the super class <code>CtBehavior</code> since 24 * a number of useful methods are in <code>CtBehavior</code>. 25 * A number of useful factory methods are in <code>CtNewMethod</code>. 43 * added to a class with <code>CtClass.addMethod()</code> 285 Bytecode code = CtNewWrappedMethod.makeBody(clazz, local [all...] |
| /external/kernel-headers/original/linux/ |
| icmp.h | 70 __u8 code; member in struct:icmphdr
|
| uinput.h | 49 int code; /* UI_FF_UPLOAD, UI_FF_ERASE */ member in struct:uinput_request 118 * these callbacks are invoked. The userspace code then uses 119 * ioctls to retrieve additional parameters and send the return code. 120 * The callback blocks until this return code is sent. 126 * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_UPLOAD. 133 * 4. Perform the effect upload, and place a return code back into 140 * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_ERASE. 147 * 4. Perform the effect erasure, and place a return code back 156 * 'code' is UI_FF_UPLOAD or UI_FF_ERASE, and 'value'
|
| /external/libffi/src/ |
| closures.c | 5 Code to allocate and deallocate memory for closures. 38 with both write and execute permission. Code compiled when this 71 /* We have no use for this, so save some code and data. */ 75 lose track of the corresponding code address. */ 460 void *code; local 466 if (seg && (code = add_segment_exec_offset (start, seg)) != start) 468 int ret = munmap (code, length); 477 /* Return segment holding given code address. */ 493 to the writable address, and sets *CODE to the executable 496 ffi_closure_alloc (size_t size, void **code) [all...] |
| /external/libxml2/ |
| error.c | 248 int code = -1; local 265 code = err->code; 270 if (code == XML_ERR_OK) 424 * @code: the code for the error 443 void *nod, int domain, int code, xmlErrorLevel level, 484 if (code == XML_ERR_OK) 536 to->code = code; [all...] |
| /external/opencv/otherlibs/highgui/ |
| grfmt_bmp.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 258 int code = m_strm.GetWord(); local 259 int len = code & 255; 260 code >>= 8; 267 clr[0] = m_palette[code >> 4]; 268 clr[1] = m_palette[code & 15]; 269 gray_clr[0] = gray_palette[code >> 4]; 270 gray_clr[1] = gray_palette[code & 15]; 284 else if( code > 2 ) // absolute mode 286 if( data + code*nch > line_end ) goto decode_rle4_bad 347 int code = m_strm.GetWord(); local [all...] |
| grfmt_pxm.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 85 int code; local 89 code = strm.GetByte(); 91 if( !isdigit(code)) 95 if( code == '#' ) 99 code = strm.GetByte(); 101 while( code != '\n' && code != '\r' ); 104 code = strm.GetByte(); 106 while( isspace(code)) 150 int code = m_strm.GetByte(); local 275 int code = ReadNumber( m_strm, INT_MAX ); local [all...] |
| utils.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 622 int code = src_cn*10 + dst_cn; local 632 switch( code )
|
| /external/openssl/crypto/ |
| o_time.c | 15 * 1. Redistributions of source code must retain the above copyright 107 short code; member in struct:__anon8841 156 following code was used to get this number: 329 /* Time checking test code. Check times are identical for a wide range of
|