| /external/webkit/Source/WebCore/page/ |
| PositionError.h | 7 * 1. Redistributions of source code must retain the above copyright 43 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); } 45 ErrorCode code() const { return m_code; } function in class:WebCore::PositionError 51 PositionError(ErrorCode code, const String& message) 52 : m_code(code)
|
| /external/zlib/contrib/infback9/ |
| inftree9.h | 12 information needed to do the operation requested by the code that 14 table that indexes more bits of the code. op indicates whether 16 distance, an end-of-block, or an invalid code. For a table 19 is the number of extra bits to get after the code. bits is 20 the number of bits in this code or part of the code to drop off 26 unsigned char bits; /* bits in this part of the code */ 27 unsigned short val; /* offset in table or code value */ 28 } code; typedef in typeref:struct:__anon14261 35 01000000 - invalid code [all...] |
| /external/zlib/ |
| inftrees.h | 12 information needed to do the operation requested by the code that 14 table that indexes more bits of the code. op indicates whether 16 distance, an end-of-block, or an invalid code. For a table 19 is the number of extra bits to get after the code. bits is 20 the number of bits in this code or part of the code to drop off 26 unsigned char bits; /* bits in this part of the code */ 27 unsigned short val; /* offset in table or code value */ 28 } code; typedef in typeref:struct:__anon14277 35 01000000 - invalid code [all...] |
| /frameworks/base/media/mtp/ |
| MtpDebug.cpp | 23 uint16_t code; member in struct:android::CodeEntry 370 static const char* getCodeName(uint16_t code, const CodeEntry* table) { 373 if (entry->code == code) 380 const char* MtpDebug::getOperationCodeName(MtpOperationCode code) { 381 return getCodeName(code, sOperationCodes); 384 const char* MtpDebug::getFormatCodeName(MtpObjectFormat code) { 385 if (code == 0) 387 return getCodeName(code, sFormatCodes); 390 const char* MtpDebug::getObjectPropCodeName(MtpPropertyCode code) { [all...] |
| /ndk/sources/host-tools/ndk-stack/regex/ |
| regerror.c | 7 * This code is derived from software contributed to Berkeley by 13 * 1. Redistributions of source code must retain the above copyright 50 int code; member in struct:rerr 70 { 0, "", "*** unknown regexp error code ***" } 90 for (r = rerrs; r->code != 0; r++) 91 if (r->code == target) 95 if (r->code != 0) { 122 for (r = rerrs; r->code != 0; r++) 125 if (r->code == 0) 128 (void)snprintf(localbuf, localbufsize, "%d", r->code); [all...] |
| /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
| KeyboardListPreferenceJAJP.java | 26 * This class notices to {@code OpenWnnJAJP} that the keyboard image is changed. 46 int code = OpenWnnEvent.CHANGE_INPUT_VIEW; local 47 OpenWnnEvent ev = new OpenWnnEvent(code);
|
| /system/core/nexus/ |
| nexctl.c | 123 int code; local 128 code = atoi(tmp); 132 if (code >= 200 && code < 600)
|
| /system/extras/tests/framebuffer/ |
| minui.h | 38 unsigned code; member in struct:event
|
| /system/netd/ |
| ndc.c | 123 int code; local 128 code = atoi(tmp); 132 if (code >= 200 && code < 600)
|
| /system/vold/ |
| vdc.c | 127 int code; local 132 code = atoi(tmp); 136 if (code >= 200 && code < 600)
|
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| EncodedMethod.java | 19 import com.android.dexgen.dex.code.DalvCode; 20 import com.android.dexgen.rop.code.AccessFlags; 35 /** {@code non-null;} constant for the method */ 39 * {@code null-ok;} code for the method, if the method is neither 40 * {@code abstract} nor {@code native} 42 private final CodeItem code; field in class:EncodedMethod 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| EncodedMethod.java | 19 import com.android.dx.dex.code.DalvCode; 20 import com.android.dx.rop.code.AccessFlags; 35 /** {@code non-null;} constant for the method */ 39 * {@code null-ok;} code for the method, if the method is neither 40 * {@code abstract} nor {@code native} 42 private final CodeItem code; field in class:EncodedMethod 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |
| /bionic/libc/string/ |
| strerror_r.c | 12 int code; member in struct:__anon593 18 int code ) 27 if (strings[nn].code == code)
|
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| BlockAddresses.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.BasicBlock; 20 import com.android.dexgen.rop.code.BasicBlockList; 21 import com.android.dexgen.rop.code.Insn; 22 import com.android.dexgen.rop.code.RopMethod; 23 import com.android.dexgen.rop.code.SourcePosition; 31 /** {@code non-null;} array containing addresses for the start of each basic 35 /** {@code non-null;} array containing addresses for the final instruction 39 /** {@code non-null;} array containing addresses for the end (just past the 47 * @param method {@code non-null;} the method to have block addresses fo [all...] |
| Dop.java | 17 package com.android.dexgen.dex.code; 29 /** {@code non-null;} the instruction format */ 35 /** {@code non-null;} the name */ 41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode 43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family 44 * @param format {@code non-null;} the instruction format 47 * @param name {@code non-null;} the name 83 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode value 93 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family 102 * @return {@code non-null;} the instruction forma [all...] |
| LocalSnapshot.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.RegisterSpec; 20 import com.android.dexgen.rop.code.RegisterSpecList; 21 import com.android.dexgen.rop.code.RegisterSpecSet; 22 import com.android.dexgen.rop.code.SourcePosition; 30 /** {@code non-null;} local state associated with this instance */ 35 * unknown ({@code -1}). 37 * @param position {@code non-null;} source position 38 * @param locals {@code non-null;} associated local variable state 65 * @return {@code non-null;} the stat [all...] |
| OutputCollector.java | 17 package com.android.dexgen.dex.code; 31 * {@code non-null;} the associated finisher (which holds the instruction 37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 45 * @param initialCapacity {@code >= 0;} initial capacity of the output list 46 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output 48 * @param regCount {@code >= 0;} register count for the method 59 * @param insn {@code non-null;} the instruction to add 71 * {@code 0} is the most recently added instruction, 72 * {@code 1} is the instruction before that, etc [all...] |
| TargetInsn.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.RegisterSpecList; 20 import com.android.dexgen.rop.code.SourcePosition; 26 /** {@code non-null;} the branch target */ 31 * unknown ({@code -1}), and the target is initially 32 * {@code null}. 35 * @param position {@code non-null;} source position 36 * @param registers {@code non-null;} register list, including a 39 * @param target {@code non-null;} the branch target 67 * {@code lt} test becomes a {@code ge}), and its branc [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form10t.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.TargetInsn; 25 * Instruction format {@code 10t}. See the instruction format spec 29 /** {@code non-null;} unique instance of this class */
|
| Form11n.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.CstInsn; 20 import com.android.dexgen.dex.code.DalvInsn; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.rop.code.RegisterSpecList; 28 * Instruction format {@code 11n}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form12x.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.HighRegisterPrefix; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.dex.code.SimpleInsn; 23 import com.android.dexgen.rop.code.RegisterSpec; 24 import com.android.dexgen.rop.code.RegisterSpecList; 28 * Instruction format {@code 12x}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */ 50 * The (sz - 2) and (sz - 1) below makes this code work fo [all...] |
| Form20t.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.TargetInsn; 25 * Instruction format {@code 20t}. See the instruction format spec 29 /** {@code non-null;} unique instance of this class */
|
| Form21c.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.CstInsn; 20 import com.android.dexgen.dex.code.DalvInsn; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.rop.code.RegisterSpec; 23 import com.android.dexgen.rop.code.RegisterSpecList; 31 * Instruction format {@code 21c}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|
| Form21s.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.CstInsn; 20 import com.android.dexgen.dex.code.DalvInsn; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.rop.code.RegisterSpecList; 28 * Instruction format {@code 21s}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form21t.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.TargetInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 21t}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|