| /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
| 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...] |
| /packages/apps/IM/src/com/android/im/imps/ |
| PtsPrimitiveSerializer.java | 76 String code = PtsCodes.getTxCode(p.getType()); local 77 if (code == null) { 81 writer.write(code); 143 private void writeMultiValue(Writer writer, String code, ArrayList<String> values) 150 writer.write(code); 369 String code = PtsCodes.getPresenceAttributeCode(tagname); local 370 if (code == null) { 374 return code; 452 String code = PtsCodes.getServiceTreeCode(elem.getTagName()); local 453 if (code == null) 469 String code = elem.getChildContents(ImpsTags.Code); local [all...] |
| /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
| SyncService.java | 81 /** Result code for transfer success. */ 83 /** Result code for canceled transfer */ 85 /** Result code for unknown error */ 87 /** Result code for network connection error */ 89 /** Result code for unknown remote object during a pull */ 91 /** Result code when attempting to pull multiple files into a file */ 93 /** Result code when attempting to pull multiple into a directory that does not exist. */ 95 /** Result code for wrong encoding on the remote path. */ 97 /** Result code for remote path that is too long. */ 99 /** Result code for error while writing local file. * [all...] |
| /dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
| Runtime.java | 125 * this method is equivalent to calling {@code exec(progArray, null, null)}. 130 * @return the new {@code Process} object that represents the native 135 * if the current {@code SecurityManager} disallows program 146 * process. The new process uses the environment provided in {@code envp}. 148 * {@code exec(progArray, envp, null)}. 156 * @return the new {@code Process} object that represents the native 161 * if the current {@code SecurityManager} disallows program 172 * process. The new process uses the environment provided in {@code envp} 173 * and the working directory specified by {@code directory}. 182 * the directory in which to execute the program. If {@code null} [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/webkit/WebCore/bridge/ |
| testbindings.cpp | 343 static char code[BufferSize]; variable 353 int num = fread(code, 1, BufferSize, f); 354 code[num] = '\0'; 360 return code; 386 const char *code = readJavaScriptFromFile(argv[i]); local 388 if (code) { 390 Completion comp(interp.evaluate(code));
|
| /packages/apps/Phone/src/com/android/phone/ |
| IccPinUnlockPanel.java | 310 String code = mEntry.getText().toString(); 312 if (TextUtils.isEmpty(code)) { 324 if (DBG) log("unlock attempt: PIN code entered = " + 325 code); 327 iccCardInterface.supplyPin(code, callBack); 331 if (DBG) log("puk code entered, request for new pin"); 332 mPUKCode = code; 338 if (DBG) log("new pin code entered, verify pin"); 339 mNewPinCode = code; 345 if (DBG) log("new pin code re-entered") [all...] |
| /external/v8/src/ |
| frames.h | 6 // * Redistributions of source code must retain the above copyright 39 // Return the code of the n-th saved register available to JavaScript. 78 void Cook(Code* code); 79 void Uncook(Code* code); 146 // Get the code associated with this frame. 147 virtual Code* code() const = 0; 212 virtual Code* code() const [all...] |
| log.h | 6 // * Redistributions of source code must retain the above copyright 43 // Minimal logging (no API, code, or GC sample events), default is off. 47 // --log-api, --log-code, --log-gc, and --log-regexp. 52 // --log-code 53 // Log code (create, move, and delete) events to the logfile, default is off. 54 // --log-code implies --log. 69 // tick profiler requires code events, so --prof implies --log-code. 116 V(CODE_CREATION_EVENT, "code-creation", "cc") \ 117 V(CODE_MOVE_EVENT, "code-move", "cm") [all...] |
| /external/zlib/contrib/infback9/ |
| infback9.c | 48 Build and output length and distance decoding tables for fixed code 57 code *next, *lenfix, *distfix; 59 code fixed[544]; 90 printf(" static const code lenfix[%u] = {", size); 101 printf("\n static const code distfix[%u] = {", size); 241 code const FAR *lencode; /* starting table for length/literal codes */ 242 code const FAR *distcode; /* starting table for distance codes */ 245 code this; /* current decoding table entry */ 246 code last; /* parent table entry */ 248 int ret; /* return code */ [all...] |
| /frameworks/base/tests/CoreTests/android/core/ |
| TestEventHandler.java | 155 * @param code The status code 159 int code, String reason_phrase) { 163 " code: " + code + 175 responseCode = code; 199 if (expectCode == code) { 202 expectDetails.append("Status code expected:"+expectCode+ 203 " got:"+code); 213 " CODE = "+expectCode) [all...] |
| /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
| ElementSetAttributeNS.java | 173 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 181 notes = "Verifies DOMException with NAMESPACE_ERR code.", 199 success = (ex.code == DOMException.NAMESPACE_ERR); 206 notes = "Verifies DOMException with NAMESPACE_ERR code.", 223 success = (ex.code == DOMException.NAMESPACE_ERR); 234 success = (ex.code == DOMException.NAMESPACE_ERR); 241 notes = "Verifies DOMException with NAMESPACE_ERR code.", 261 success = (ex.code == DOMException.NAMESPACE_ERR);
|
| /external/icu4c/common/unicode/ |
| utypes.h | 19 * code. Cleaned up header. 100 * It is enough to determine the code point values of "invariant characters", 109 * \code 120 * \code 150 * - some ICU code will use fast functions like u_strFromUTF8() 308 * \code 324 * \code 508 * c) Verify that delete is only imported from object code for interface/mixin classes. 580 * Error code to replace exception handling, so that the code is compatible with all C++ compilers [all...] |
| /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
| c2_11pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 73 * The code length is 40, containing 2 nonzero pulses: i0...i1. 159 code[], Innovative codebook, array of type Word16 179 The code length is 40, containing 2 nonzero pulses: i0...i1. 202 PSEUDO-CODE 208 When the code is written for a specific target processor the 233 Word16 code[], /* o : Innovative codebook */ 303 code, 311 * Include fixed-gain pitch contribution into code[]. 320 code[i - T0] [all...] |
| c2_9pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 47 optimizing C code. 51 Description: Added setting of Overflow flag in inlined code. 146 0, 1, 0, 1, -1, /* subframe 1; track to code; 147 * -1 do not code this position 175 code = buffer containing the innovative codebook (Word16) 180 code buffer contains the new innovation vector gains 183 index = code index (Word16) 197 The code length is 40, containing 2 nonzero pulses: i0...i1. All pulses can 237 PSEUDO-CODE [all...] |
| /external/ppp/pppd/ |
| ipxcp.c | 10 * 1. Redistributions of source code must retain the above copyright 79 * Callbacks for fsm code. (CI = Configuration Information) 1000 int rc = CONFACK; /* Final packet return code */ 1001 int orc; /* Individual option return code */ 1283 return (rc); /* Return final code */ 1479 int code, id, len, olen; local [all...] |
| /external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
| SDL_dx5yuv.c | 110 static char *PrintFOURCC(Uint32 code) 114 buf[3] = code >> 24; 115 buf[2] = (code >> 16) & 0xFF; 116 buf[1] = (code >> 8) & 0xFF; 117 buf[0] = (code & 0xFF); 139 fprintf(stderr, "Code %d: 0x%x\n", i, PrintFOURCC(codes[i]));
|
| /external/webkit/JavaScriptCore/icu/unicode/ |
| utypes.h | 19 * code. Cleaned up header. 85 * It is enough to determine the code point values of "invariant characters", 94 * \code 105 * \code 266 * \code 282 * \code 443 * c) Verify that delete is only imported from object code for interface/mixin classes. 509 * Error code to replace exception handling, so that the code is compatible with all C++ compilers, 515 * so that in a chain of such functions the first one that sets an error code [all...] |
| /external/webkit/JavaScriptGlue/icu/unicode/ |
| utypes.h | 19 * code. Cleaned up header. 85 * It is enough to determine the code point values of "invariant characters", 94 * \code 105 * \code 266 * \code 282 * \code 443 * c) Verify that delete is only imported from object code for interface/mixin classes. 509 * Error code to replace exception handling, so that the code is compatible with all C++ compilers, 515 * so that in a chain of such functions the first one that sets an error code [all...] |
| /external/webkit/WebCore/icu/unicode/ |
| utypes.h | 19 * code. Cleaned up header. 85 * It is enough to determine the code point values of "invariant characters", 94 * \code 105 * \code 266 * \code 282 * \code 443 * c) Verify that delete is only imported from object code for interface/mixin classes. 509 * Error code to replace exception handling, so that the code is compatible with all C++ compilers, 515 * so that in a chain of such functions the first one that sets an error code [all...] |
| /external/webkit/WebKit/mac/icu/unicode/ |
| utypes.h | 19 * code. Cleaned up header. 85 * It is enough to determine the code point values of "invariant characters", 94 * \code 105 * \code 266 * \code 282 * \code 443 * c) Verify that delete is only imported from object code for interface/mixin classes. 509 * Error code to replace exception handling, so that the code is compatible with all C++ compilers, 515 * so that in a chain of such functions the first one that sets an error code [all...] |
| /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
| c2_11pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 73 * The code length is 40, containing 2 nonzero pulses: i0...i1. 159 code[], Innovative codebook, array of type Word16 179 The code length is 40, containing 2 nonzero pulses: i0...i1. 202 PSEUDO-CODE 208 When the code is written for a specific target processor the 233 Word16 code[], /* o : Innovative codebook */ 303 code, 311 * Include fixed-gain pitch contribution into code[]. 320 code[i - T0] [all...] |
| c2_9pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 47 optimizing C code. 51 Description: Added setting of Overflow flag in inlined code. 146 0, 1, 0, 1, -1, /* subframe 1; track to code; 147 * -1 do not code this position 175 code = buffer containing the innovative codebook (Word16) 180 code buffer contains the new innovation vector gains 183 index = code index (Word16) 197 The code length is 40, containing 2 nonzero pulses: i0...i1. All pulses can 237 PSEUDO-CODE [all...] |
| /frameworks/base/services/java/com/android/server/ |
| NotificationPlayer.java | 49 int code; field in class:NotificationPlayer.Command 57 return "{ code=" + code + " looping=" + looping + " stream=" + stream 167 switch (cmd.code) { 267 cmd.code = PLAY; 289 cmd.code = STOP;
|
| /dalvik/dx/src/com/android/dx/dex/code/ |
| Dops.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.dex.code.form.Form10t; 20 import com.android.dx.dex.code.form.Form10x; 21 import com.android.dx.dex.code.form.Form11n; 22 import com.android.dx.dex.code.form.Form11x; 23 import com.android.dx.dex.code.form.Form12x; 24 import com.android.dx.dex.code.form.Form20t; 25 import com.android.dx.dex.code.form.Form21c; 26 import com.android.dx.dex.code.form.Form21h; 27 import com.android.dx.dex.code.form.Form21s [all...] |