| /external/webkit/Tools/DumpRenderTree/qt/ |
| EventSenderQt.cpp | 9 * 1. Redistributions of source code must retain the above copyright 239 int code = 0; local 241 code = string.unicode()->unicode(); 242 //qDebug() << ">>>>>>>>> keyDown" << code << (char)code; 244 if (code == '\r') { 245 code = Qt::Key_Return; 246 } else if (code == '\t') { 247 code = Qt::Key_Tab; 249 code = Qt::Key_Backtab [all...] |
| /external/webkit/Tools/DumpRenderTree/win/ |
| ResourceLoadDelegate.cpp | 8 * 1. Redistributions of source code must retain the above copyright 118 return L"<NSURLResponse " + url + L", http status code " + wstringFromInt(statusCode) + L">"; 132 int code; local 133 if (FAILED(error->code(&code))) 140 if (code == -998) 141 code = -1; 145 // Convert the winsock error code to an NSURLError code. 146 if (code == WSAEADDRNOTAVAIL [all...] |
| /external/wpa_supplicant/ |
| eap_pax_common.h | 23 u8 code; member in struct:eap_pax_hdr 25 u16 length; /* including code, identifier, and length */
|
| eap_sake_common.h | 54 u8 code; member in struct:eap_sake_hdr
|
| /external/wpa_supplicant_8/src/eap_common/ |
| eap_defs.h | 25 u8 code; member in struct:eap_hdr 27 be16 length; /* including code and identifier; network byte order */ 76 /* SMI Network Management Private Enterprise Code for vendor specific types */
|
| /external/zlib/contrib/blast/ |
| blast.c | 31 #define MAXBITS 13 /* maximum code length */ 91 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of 92 * each length, which for a canonical code are stepped through in order. 103 * Decode a code from the stream s using huffman table h. Return the symbol or 105 * an empty code, or if the code is incomplete and an invalid code is received, 113 * build the code value reversed from what is in the stream in order to 116 * - The first code for the shortest length is all ones. Subsequent codes of 117 * the same length are simply integer decrements of the previous code. Whe 126 int code; \/* len bits being decoded *\/ local [all...] |
| /external/zlib/examples/ |
| gun.c | 206 int bits; /* current bits per code */ 207 unsigned code; /* code, table traversal index */ local 209 int max; /* maximum bits per code for this stream */ 212 unsigned temp; /* current code */ 213 unsigned prev; /* previous code */ 214 unsigned final; /* last character written for previous code */ 246 /* set up: get first 9-bit code, which is the first decompressed byte, but 247 don't create a table entry until the next code */ 250 final = prev = (unsigned)last; /* low 8 bits of code */ [all...] |
| /frameworks/base/core/java/android/util/ |
| EventLog.java | 42 * event-log-tags file defines the payload contents for each type code. 98 /** @return the type tag code of the entry */ 156 * @param tag The event type tag code 164 * @param tag The event type tag code 172 * @param tag The event type tag code 180 * @param tag The event type tag code 196 * Get the name associated with an event type tag code. 197 * @param tag code to look up 206 * Get the event type tag code associated with an event name. 208 * @return the tag code, or -1 if no tag has that nam 212 Integer code = sTagCodes.get(name); local [all...] |
| TimeUtils.java | 72 String code = parser.getAttributeValue(null, "code"); local 74 if (country.equals(code)) {
|
| /frameworks/base/core/java/com/android/internal/app/ |
| LocalePicker.java | 170 String code = l.toString(); local 173 if (specialLocaleCodes[i].equals(code)) {
|
| /frameworks/base/media/java/android/media/ |
| AsyncPlayer.java | 39 int code; field in class:AsyncPlayer.Command 47 return "{ code=" + code + " looping=" + looping + " stream=" + stream 94 switch (cmd.code) { 168 cmd.code = PLAY; 190 cmd.code = STOP;
|
| /frameworks/base/media/java/android/mtp/ |
| MtpPropertyGroup.java | 37 // MTP property code 38 int code; field in class:MtpPropertyGroup.Property 44 Property(int code, int type, int column) { 45 this.code = code; 90 private Property createProperty(int code, ArrayList<String> columns) { 94 switch (code) { 176 Log.e(TAG, "unsupported property " + code); 182 return new Property(code, type, columns.size() - 1); 184 return new Property(code, type, -1) [all...] |
| /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
| cod_amr.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 190 PSEUDO-CODE 245 When the code is written for a specific target processor the 364 PSEUDO-CODE 443 When the code is written for a specific target processor the 580 PSEUDO-CODE 611 When the code is written for a specific target processor the 704 PSEUDO-CODE 718 When the code is written for a specific target processor the 810 PSEUDO-CODE 1233 Word16 code[L_SUBFR]; \/* Fixed codebook excitation *\/ local [all...] |
| /frameworks/base/media/libstagefright/codecs/amrwb/src/ |
| pvamrwbdecoder.cpp | 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec 70 PSEUDO-CODE 139 ; FUNCTION CODE 171 ; FUNCTION CODE 266 ; FUNCTION CODE 276 ; FUNCTION CODE 308 int16 *code = &isf_tmp[M]; /* algebraic codevector */ local 309 int16 *excp = &code[L_SUBFR]; 557 * - decode algebraic code 559 * - find voicing factor and tilt of code for next subframe [all...] |
| /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
| bitstream.cpp | 175 PV_STATUS BitstreamShowBits32HC(BitstreamDecVideo *stream, uint32 *code) 184 *code = stream->curr_word; 193 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code) 202 *code = stream->curr_word >> (32 - nbits); 215 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code) 226 *code = stream->curr_word >> (32 - nbits); 238 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code) 247 *code = stream->curr_word >> 17; 257 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code) 266 *code = stream->curr_word >> 19 272 uint code; local 289 uint code; local 313 uint code; local 335 uint code; local 384 uint32 code; local 398 uint32 code; local [all...] |
| combined_decode.cpp | 32 /* 03/30/2000 : Cleaned up and optimized the code. */ 36 /* Resilience." Now the code resembles the */ 55 uint code; local 137 BitstreamShowBits16(stream, stuffing_length, &code); 138 while (code == 1) 141 BitstreamShowBits16(stream, stuffing_length, &code); 188 BitstreamShowBits16(stream, stuffing_length, &code); 189 while (code == 1) 192 BitstreamShowBits16(stream, stuffing_length, &code); 342 /* 3/29/00 : Changed the returned value and optimized the code. * [all...] |
| datapart_decode.cpp | 136 /* 04/01/2001 fixed MB_stuffing, removed unnecessary code */ 148 uint code; local 159 BitstreamShowBits16(stream, 9, &code); 160 while (code == 1) 163 BitstreamShowBits16(stream, 9, &code); 191 BitstreamShowBits16(stream, 9, &code); 192 while (code == 1) 195 BitstreamShowBits16(stream, 9, &code); 315 uint code; local 324 BitstreamShowBits16(stream, 10, &code); [all...] |
| /frameworks/base/tools/aapt/ |
| XMLNode.cpp | 193 ResXMLTree::event_code_t code; local 194 while ((code=inXml->next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) { 196 if (code == ResXMLTree::TEXT) { 216 } else if (code == ResXMLTree::START_TAG) { 276 } else if (code == ResXMLTree::END_TAG) { 343 } else if (code == ResXMLTree::START_NAMESPACE) { 348 if (code == ResXMLTree::BAD_DOCUMENT) { 414 ResXMLTree::event_code_t code; local 416 while ((code=block->next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) [all...] |
| /hardware/qcom/media/mm-video/vidc/vdec/test/ |
| decoder_driver_test.c | 2 Copyright (c) 2010, Code Aurora Forum. All rights reserved. 6 * Redistributions of source code must retain the above copyright 11 * Neither the name of Code Aurora nor 1061 unsigned int code = 0; local 1085 code <<= 8; 1086 code |= (0x000000FF & dataptr[readOffset]); 1087 //VOP start code comparision 1092 if( VOP_START_CODE == code) 1094 DEBUG_PRINT ("\n Found VOP Code"); 1097 else if ( (0xFFFFFC00 & code) == SHORT_HEADER_START_CODE [all...] |
| /hardware/qcom/media/mm-video/vidc/venc/test/ |
| video_encoder_test.c | 2 Copyright (c) 2010, Code Aurora Forum. All rights reserved. 6 * Redistributions of source code must retain the above copyright 11 * Neither the name of Code Aurora nor 1049 unsigned int code = 0; local
|
| /libcore/luni/src/test/java/libcore/java/nio/charset/ |
| Charset_TestGenerator.java | 105 abstract void consume (int code); 107 boolean isAccepted (int code) 109 return Character.isLetterOrDigit(code); 115 void consume (int code) { 116 System.out.print(code); 127 boolean isAccepted (int code) 129 return Character.isLetterOrDigit(code) || Character.isWhitespace(code); 135 void consume (int code) { 136 // System.out.print(code); 175 int code = 0; local [all...] |
| OldCharset_AbstractTest.java | 82 int code = 0; local 83 while (code < 256) { 84 while (!encoder.canEncode((char) code)) code ++; 85 if (code < 65536) { 86 out.consume(code); 87 code += 1; 90 while (code < 65536) { 91 while (!encoder.canEncode((char) code)) code ++ [all...] |
| /ndk/sources/cxx-stl/gabi++/include/ |
| cxxabi.h | 7 // 1. Redistributions of source code must retain the above copyright 84 code() const { return CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__class_type_info 96 code() const { return SI_CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__si_class_type_info 149 code() const { return VMI_CLASS_TYPE_INFO_CODE; } function in class:__cxxabiv1::__vmi_class_type_info
|
| /ndk/sources/host-tools/sed-4.2.1/testsuite/ |
| tst-rxspencer.c | 227 static struct { reg_errcode_t code; const char *name; } codes [] member in struct:__anon16819 236 if (n == codes[i].code)
|
| /packages/apps/Contacts/src/com/android/contacts/list/ |
| ContactListFilter.java | 152 int code = filterType; local 154 code = code * 31 + accountType.hashCode(); 155 code = code * 31 + accountName.hashCode(); 158 code = code * 31 + dataSet.hashCode(); 161 code = code * 31 + groupSourceId.hashCode(); 163 code = code * 31 + (int) groupId [all...] |