| /external/v8/src/arm/ |
| eh-frame-arm.cc | 2 // Use of this source code is governed by a BSD-style license that can be 29 switch (name.code()) { 47 const char* EhFrameDisassembler::DwarfRegisterCodeToString(int code) { 48 switch (code) {
|
| /external/v8/src/arm64/ |
| eh-frame-arm64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 30 switch (name.code()) { 50 const char* EhFrameDisassembler::DwarfRegisterCodeToString(int code) { 51 switch (code) {
|
| /external/v8/src/x64/ |
| eh-frame-x64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 31 switch (name.code()) { 47 const char* EhFrameDisassembler::DwarfRegisterCodeToString(int code) { 48 switch (code) {
|
| /prebuilts/misc/common/swig/include/2.0.11/modula3/ |
| modula3head.swg | 4 * Modula3 support code 29 SWIG_JavaExceptionCodes code; 34 void SWIG_JavaThrowException(JNIEnv *jenv, SWIG_JavaExceptionCodes code, const char *msg); 38 void SWIG_JavaThrowException(JNIEnv *jenv, SWIG_JavaExceptionCodes code, const char *msg) { 52 while (except_ptr->code != code && except_ptr->code)
|
| /tools/acloud/public/ |
| errors.py | 43 def __init__(self, code, message): 44 self.code = code 51 Parse the error code from apiclient.errors.HttpError 53 that has the error code.
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
| sre_compile.py | 60 # Maps the lowercase code to lowercase codes which have the same uppercase.
64 def _compile(code, pattern, flags):
66 emit = code.append
84 skip = _len(code); emit(0)
91 code[skip] = _len(code) - skip
106 skip = _len(code); emit(0)
107 _compile_charset(av, flags, code, fixup, fixes)
108 code[skip] = _len(code) - skip [all...] |
| /external/python/cpython2/Lib/ |
| sre_compile.py | 60 # Maps the lowercase code to lowercase codes which have the same uppercase. 64 def _compile(code, pattern, flags): 66 emit = code.append 84 skip = _len(code); emit(0) 91 code[skip] = _len(code) - skip 106 skip = _len(code); emit(0) 107 _compile_charset(av, flags, code, fixup, fixes) 108 code[skip] = _len(code) - ski [all...] |
| /external/javassist/src/main/javassist/bytecode/ |
| CodeIterator.java | 21 * An iterator for editing a code attribute. 23 * <p>If there are multiple <code>CodeIterator</code>s referring to the 24 * same <code>Code_attribute</code>, then inserting a gap by one 25 * <code>CodeIterator</code> will break the other 26 * <code>CodeIterator</code>. 28 * <p>This iterator does not provide <code>remove()</code> [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| CodeItem.java | 19 import com.android.dexgen.dex.code.CatchTable; 20 import com.android.dexgen.dex.code.CstInsn; 21 import com.android.dexgen.dex.code.DalvCode; 22 import com.android.dexgen.dex.code.DalvInsn; 23 import com.android.dexgen.dex.code.DalvInsnList; 24 import com.android.dexgen.dex.code.LocalList; 25 import com.android.dexgen.dex.code.PositionList; 42 * {@code dex} file. 51 /** {@code non-null;} method that this code implements * 55 private final DalvCode code; field in class:CodeItem [all...] |
| /external/javassist/src/main/javassist/bytecode/stackmap/ |
| Tracer.java | 90 protected int doOpcode(int pos, byte[] code) throws BadBytecode { 92 int op = code[pos] & 0xff; 95 return doOpcode0_53(pos, code, op); 97 return doOpcode54_95(pos, code, op); 100 return doOpcode96_147(pos, code, op); 102 return doOpcode148_201(pos, code, op); 109 protected void visitBranch(int pos, byte[] code, int offset) throws BadBytecode {} 110 protected void visitGoto(int pos, byte[] code, int offset) throws BadBytecode {} 111 protected void visitReturn(int pos, byte[] code) throws BadBytecode {} 112 protected void visitThrow(int pos, byte[] code) throws BadBytecode { [all...] |
| /external/v8/src/ |
| code-events.h | 2 // Use of this source code is governed by a BSD-style license that can be 22 V(CODE_CREATION_EVENT, "code-creation") \ 23 V(CODE_DISABLE_OPT_EVENT, "code-disable-optimization") \ 24 V(CODE_MOVE_EVENT, "code-move") \ 25 V(CODE_DELETE_EVENT, "code-delete") \ 26 V(CODE_MOVING_GC, "code-moving-gc") \ 28 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ 88 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, 90 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, 92 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, [all...] |
| /prebuilts/misc/common/swig/include/2.0.11/ |
| exception.i | 18 #define SWIG_exception(code, msg) { zend_throw_exception(NULL, (char*)msg, code TSRMLS_CC); } 24 SWIGINTERN void SWIG_exception_ (int code, const char *msg, 34 switch (code) { 59 SWIGINTERN void SWIG_exception_ (int code, const char *msg) { 66 switch (code) { 90 SWIGINTERN void SWIG_JavaException(JNIEnv *jenv, int code, const char *msg) { 92 switch(code) { 124 #define SWIG_exception(code, msg)\ 125 { SWIG_JavaException(jenv, code, msg); return $null; [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| sre_compile.py | 32 def _compile(code, pattern, flags):
34 emit = code.append
56 skip = _len(code); emit(0)
57 _compile_charset(av, flags, code, fixup)
58 code[skip] = _len(code) - skip
68 skip = _len(code); emit(0)
71 _compile(code, av[2], flags)
73 code[skip] = _len(code) - skip [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| sre_compile.py | 33 def _compile(code, pattern, flags): 35 emit = code.append 57 skip = _len(code); emit(0) 58 _compile_charset(av, flags, code, fixup) 59 code[skip] = _len(code) - skip 69 skip = _len(code); emit(0) 72 _compile(code, av[2], flags) 74 code[skip] = _len(code) - ski [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| sre_compile.py | 33 def _compile(code, pattern, flags): 35 emit = code.append 57 skip = _len(code); emit(0) 58 _compile_charset(av, flags, code, fixup) 59 code[skip] = _len(code) - skip 69 skip = _len(code); emit(0) 72 _compile(code, av[2], flags) 74 code[skip] = _len(code) - ski [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| sre_compile.py | 33 def _compile(code, pattern, flags): 35 emit = code.append 57 skip = _len(code); emit(0) 58 _compile_charset(av, flags, code, fixup) 59 code[skip] = _len(code) - skip 69 skip = _len(code); emit(0) 72 _compile(code, av[2], flags) 74 code[skip] = _len(code) - ski [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| sre_compile.py | 33 def _compile(code, pattern, flags): 35 emit = code.append 57 skip = _len(code); emit(0) 58 _compile_charset(av, flags, code, fixup) 59 code[skip] = _len(code) - skip 69 skip = _len(code); emit(0) 72 _compile(code, av[2], flags) 74 code[skip] = _len(code) - ski [all...] |
| /libcore/luni/src/test/java/libcore/java/nio/charset/ |
| OldCharset_AbstractTest.java | 87 int code = 0; local 88 while (code < 256) { 89 while (!encoder.canEncode((char) code)) code ++; 90 if (code < 65536) { 91 out.consume(code); 92 code += 1; 95 while (code < 65536) { 96 while (!encoder.canEncode((char) code)) code ++ [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| LocalEnd.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.SourcePosition; 31 * {@code non-null;} register spec representing the local variable ended 34 * is implicit in the ambient local variable state, but other code 41 * unknown ({@code -1}). 43 * @param position {@code non-null;} source position 44 * @param local {@code non-null;} register spec representing the local 73 * @return {@code non-null;} the register spe [all...] |
| LocalStart.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.SourcePosition; 31 * {@code non-null;} register spec representing the local variable introduced 39 * @param spec {@code non-null;} the spec to convert 40 * @return {@code non-null;} the string form 49 * unknown ({@code -1}). 51 * @param position {@code non-null;} source position 52 * @param local {@code non-null;} register spec representing the loca [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form10x.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.SimpleInsn; 25 * Instruction format {@code 10x}. See the instruction format spec 29 /** {@code non-null;} unique instance of this class */
|
| SpecialFormat.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.DalvOps; 21 import com.android.dexgen.dex.code.InsnFormat; 28 * exceptions, as code should know (implicitly or explicitly) to avoid 30 * always returns {@code true}. 33 /** {@code non-null;} unique instance of this class */
|
| /dalvik/dexgen/src/com/android/dexgen/rop/code/ |
| TranslationAdvice.java | 17 package com.android.dexgen.rop.code; 23 * the early stage code be explicitly tied to the target. 33 * @param opcode {@code non-null;} the opcode 34 * @param sourceA {@code non-null;} the first source 35 * @param sourceB {@code non-null;} the second source 36 * @return {@code true} iff the target can represent the operation 46 * @param opcode {@code non-null;} opcode 47 * @param sources {@code non-null;} source list 48 * @return {@code true} iff the target requires the sources to be
|
| /dalvik/dx/src/com/android/dx/cf/attrib/ |
| AttLocalVariableTable.java | 19 import com.android.dx.cf.code.LocalVariableList; 22 * Attribute class for standard {@code LocalVariableTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */ 31 * @param localVariables {@code non-null;} list of local variable entries
|
| AttLocalVariableTypeTable.java | 19 import com.android.dx.cf.code.LocalVariableList; 22 * Attribute class for standard {@code LocalVariableTypeTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */ 31 * @param localVariables {@code non-null;} list of local variable entries
|