| /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
| Form23x.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.InsnFormat; 21 import com.android.dx.dex.code.SimpleInsn; 22 import com.android.dx.rop.code.RegisterSpecList; 28 * Instruction format {@code 23x}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form31i.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 30 * Instruction format {@code 31i}. See the instruction format spec 34 /** {@code non-null;} unique instance of this class */
|
| Form31t.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.InsnFormat; 21 import com.android.dx.dex.code.TargetInsn; 22 import com.android.dx.rop.code.RegisterSpecList; 28 * Instruction format {@code 31t}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form32x.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.InsnFormat; 21 import com.android.dx.dex.code.SimpleInsn; 22 import com.android.dx.rop.code.RegisterSpecList; 28 * Instruction format {@code 32x}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form33x.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.InsnFormat; 21 import com.android.dx.dex.code.SimpleInsn; 22 import com.android.dx.rop.code.RegisterSpecList; 28 * Instruction format {@code 33x}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| Form51l.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 31 * Instruction format {@code 51l}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|
| Form52c.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 31 * Instruction format {@code 52c}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|
| /external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
| DexTranslationAdvice.java | 17 package com.android.dx.rop.code; 28 /** {@code non-null;} standard instance of this class */ 112 * @param sources {@code non-null;} list of SSA registers 113 * @return {@code >= 0;} rop-form width in register units
|
| FillArrayDataInsn.java | 17 package com.android.dx.rop.code; 45 * @param opcode {@code non-null;} the opcode 46 * @param position {@code non-null;} source position 47 * @param sources {@code non-null;} specs for all the sources 48 * @param initValues {@code non-null;} list of initial values to fill the array 49 * @param cst {@code non-null;} type of the new array 74 * @return {@code non-null;} list of init values 82 * @return {@code non-null;} array type
|
| InsnList.java | 17 package com.android.dx.rop.code; 27 * Constructs an instance. All indices initially contain {@code null}. 38 * do that, this will throw {@code NullPointerException}. 40 * @param n {@code >= 0, < size();} which index 41 * @return {@code non-null;} element at that index 50 * @param n {@code >= 0, < size();} which index 51 * @param insn {@code non-null;} the instruction to set at {@code n} 59 * {@code get(size() - 1)}. 61 * @return {@code non-null;} the last instructio [all...] |
| LocalItem.java | 17 package com.android.dx.rop.code; 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 38 * @return {@code non-null;} appropriate instance. 51 * @param name {@code null-ok;} local variable name 52 * @param signature {@code null-ok;} local variable signature 129 * @return {@code null-ok;} name 138 * @return {@code null-ok;} signatur [all...] |
| SwitchInsn.java | 17 package com.android.dx.rop.code; 29 /** {@code non-null;} list of switch cases */ 35 * @param opcode {@code non-null;} the opcode 36 * @param position {@code non-null;} source position 37 * @param result {@code null-ok;} spec for the result, if any 38 * @param sources {@code non-null;} specs for all the sources 39 * @param cases {@code non-null;} list of switch cases 93 * never encounters {@code SwitchInsn}s 114 * @return {@code non-null;} the case list
|
| ThrowingCstInsn.java | 17 package com.android.dx.rop.code; 30 /** {@code non-null;} list of exceptions caught */ 36 * @param opcode {@code non-null;} the opcode 37 * @param position {@code non-null;} source position 38 * @param sources {@code non-null;} specs for all the sources 39 * @param catches {@code non-null;} list of exceptions caught 40 * @param cst {@code non-null;} the constant
|
| ThrowingInsn.java | 17 package com.android.dx.rop.code; 23 * Instruction which possibly throws. The {@code successors} list in the 30 /** {@code non-null;} list of exceptions caught */ 37 * @param catches {@code non-null;} the catches list 38 * @return {@code non-null;} the string form 57 * @param opcode {@code non-null;} the opcode 58 * @param position {@code non-null;} source position 59 * @param sources {@code non-null;} specs for all the sources 60 * @param catches {@code non-null;} list of exceptions caught
|
| /external/e2fsprogs/lib/ss/ |
| help.c | 42 int code; local 47 request_name = ss_current_request(sci_idx, &code); 48 if (code != 0) { 49 ss_perror(sci_idx, code, "");
|
| test_ss.c | 85 int c, code; local 107 (char *)NULL, &test_cmds, &code); 108 if (code) { 109 ss_perror(sci_idx, code, "creating invocation"); 113 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &code); 114 if (code) { 115 ss_perror (sci_idx, code, "adding standard requests"); 123 code = ss_execute_line(sci_idx, request); 124 if (code) { 125 ss_perror(sci_idx, code, request) [all...] |
| /external/eigen/blas/ |
| level2_cplx_impl.h | 6 // This Source Code Form is subject to the terms of the Mozilla 66 int code = UPLO(*uplo); local 67 if(code>=2 || func[code]==0) 70 func[code](*n, a, *lda, actual_x, 1, actual_y, alpha); 144 int code = UPLO(*uplo); local 145 if(code>=2 || func[code]==0) 148 func[code](*n, ap, x_cpy, alpha); 198 int code = UPLO(*uplo) local 251 int code = UPLO(*uplo); local 308 int code = UPLO(*uplo); local [all...] |
| level2_real_impl.h | 6 // This Source Code Form is subject to the terms of the Mozilla 58 int code = UPLO(*uplo); local 59 if(code>=2 || func[code]==0) 62 func[code](*n, a, *lda, actual_x, 1, actual_y, alpha); 120 int code = UPLO(*uplo); local 121 if(code>=2 || func[code]==0) 124 func[code](*n, c, *ldc, x_cpy, x_cpy, alpha); 183 int code = UPLO(*uplo) local 267 int code = UPLO(*uplo); local 321 int code = UPLO(*uplo); local [all...] |
| level3_impl.h | 6 // This Source Code Form is subject to the terms of the Mozilla 61 int code = OP(*opa) | (OP(*opb) << 2); local 62 func[code](*m, *n, *k, a, *lda, b, *ldb, c, *ldc, alpha, blocking, 0); 130 int code = OP(*opa) | (SIDE(*side) << 2) | (UPLO(*uplo) << 3) | (DIAG(*diag) << 4); local 135 func[code](*m, *n, a, *lda, b, *ldb, blocking); 140 func[code](*n, *m, a, *lda, b, *ldb, blocking); 214 int code = OP(*opa) | (SIDE(*side) << 2) | (UPLO(*uplo) << 3) | (DIAG(*diag) << 4); local 226 func[code](*m, *n, *m, a, *lda, tmp.data(), tmp.outerStride(), b, *ldb, alpha, blocking); 231 func[code](*m, *n, *n, tmp.data(), tmp.outerStride(), a, *lda, b, *ldb, alpha, blocking); 372 int code = OP(*op) | (UPLO(*uplo) << 2) local 538 int code = OP(*op) | (UPLO(*uplo) << 2); local [all...] |
| /external/elfutils/tests/ |
| show-abbrev.c | 73 unsigned code = dwarf_getabbrevcode (abbrev); local 74 if (code == 0) 91 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n", 92 (unsigned long long int) offset, code, tag, children); 113 printf ("abbrev[%llu]: attr[%zu]: code = %u, form = %u, offset = %" PRIu64 "\n",
|
| /external/freetype/src/psaux/ |
| t1cmap.c | 71 FT_UInt code, n; local 75 /* convert character code to Adobe SID string */ 76 code = cmap->code_to_sid[char_code]; 77 glyph_name = cmap->sid_to_string( code );
|
| /external/guava/guava/src/com/google/common/collect/ |
| SingletonImmutableSet.java | 51 // Guaranteed to be non-null by the presence of the pre-computed hash code. 96 int code = cachedHashCode; local 97 if (code == 0) { 98 cachedHashCode = code = element.hashCode(); 100 return code;
|
| /external/icu/icu4c/source/common/ |
| uscript.c | 79 // Explicit script code. 115 UScriptCode code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale); local 116 if(code!=USCRIPT_INVALID_CODE) { 117 return setOneCode(code, fillIn, capacity, err); 136 UScriptCode code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale); local 137 if(code!=USCRIPT_INVALID_CODE) { 138 return setOneCode(code, fillIn, capacity, err);
|
| /external/javassist/src/main/javassist/ |
| CtNewConstructor.java | 24 * A collection of static methods for creating a <code>CtConstructor</code>. 28 * methods in this class. Call <code>makeClassInitializer()</code> in 29 * <code>CtClass</code> and append code snippet to the body of the class 30 * initializer obtained by <code>makeClassInitializer()</code>. 44 * <code>Object</code> and passed to a super-class 141 Bytecode code = new Bytecode(cp, 1, 1); local [all...] |
| /external/libbrillo/brillo/errors/ |
| error_codes.cc | 2 // Use of this source code is governed by a BSD-style license that can be 90 ERROR_ENTRY(EBADRQC), // Invalid request code 193 // Gets the error code string from system error code. If unknown system error 212 std::string code = ErrorCodeFromSystemError(errnum); local 216 if (code.empty()) 217 code = "error_" + std::to_string(errnum); 219 Error::AddTo(error, location, kDomain, code, message);
|