HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 26 - 50 of 1048) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/
errorcode.cpp 25 UErrorCode code = errorCode; local
27 return code;
  /external/icu/icu4c/source/extra/scrptrun/
srtest.cpp 34 UScriptCode code = scriptRun.getScriptCode(); local
36 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 61 Bytecode code = new Bytecode(cp); local
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDesc<code> must be identical to <code>desc</code>.
121 Bytecode code = new Bytecode(cp); local
173 Bytecode code = new Bytecode(cp); local
224 Bytecode code = new Bytecode(cp); local
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) {
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type)
    [all...]
  /external/javassist/src/main/javassist/
CtNewMethod.java 24 * A collection of static methods for creating a <code>CtMethod</code>.
32 * Compiles the given source code and creates a method.
33 * The source code must include not only the method body
48 * Compiles the given source code and creates a method.
49 * The source code must include not only the method body
54 * <p>If the source code includes <code>$proceed()</code>, then
60 * that is called on by <code>$proceed()</code>
231 Bytecode code = new Bytecode(cp, 2, 1); local
272 Bytecode code = new Bytecode(cp, 3, 3); local
342 Bytecode code = new Bytecode(cp, 0, 0); local
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 20 import com.google.dexmaker.Code;
40 Code code = dexMaker.declare(fib, Modifier.PUBLIC | Modifier.STATIC); local
42 Local<Integer> i = code.getParameter(0, TypeId.INT);
43 Local<Integer> constant1 = code.newLocal(TypeId.INT);
44 Local<Integer> constant2 = code.newLocal(TypeId.INT);
45 Local<Integer> a = code.newLocal(TypeId.INT);
46 Local<Integer> b = code.newLocal(TypeId.INT);
47 Local<Integer> c = code.newLocal(TypeId.INT);
48 Local<Integer> d = code.newLocal(TypeId.INT)
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9); local
112 /* 0 */ code.addAload(0);
113 /* 1 */ code.addLdc("start");
114 /* 3 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
115 /* 6 */ code.addAload(0);
116 /* 7 */ code.addLdc("try");
117 /* 9 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
119 /* 14 */ code.addAstore(2);
120 /* 16 */ code.addAload(2)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchBuilder.java 17 package com.android.dexgen.dex.code;
30 * @return {@code non-null;} the constructed table
45 * @return {@code non-null;} the set of catch types
CodeAddress.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
23 * Pseudo-instruction which is used to track an address within a code
25 * exception handler ranges. Its code size is zero, and so instances
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
55 return "code-address";
SimpleInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
29 * unknown ({@code -1}).
32 * @param position {@code non-null;} source position
33 * @param registers {@code non-null;} register list, including a
VariableSizeInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
28 * unknown ({@code -1}).
30 * @param position {@code non-null;} source position
31 * @param registers {@code non-null;} source registers
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ConservativeTranslationAdvice.java 17 package com.android.dexgen.rop.code;
21 * {@code false} to all methods.
25 /** {@code non-null;} standard instance of this class */
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/dex/code/
CatchBuilder.java 17 package com.android.dx.dex.code;
29 * @return {@code non-null;} the constructed table
44 * @return {@code non-null;} the set of catch types
SimpleInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
29 * unknown ({@code -1}).
32 * @param position {@code non-null;} source position
33 * @param registers {@code non-null;} register list, including a
VariableSizeInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
28 * unknown ({@code -1}).
30 * @param position {@code non-null;} source position
31 * @param registers {@code non-null;} source registers
  /dalvik/dx/src/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 17 package com.android.dx.rop.code;
21 * {@code false} to all methods.
25 /** {@code non-null;} standard instance of this class */
TranslationAdvice.java 17 package com.android.dx.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
  /external/chromium_org/chrome/test/chromedriver/chrome/
status.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 const char* DefaultMessageForStatusCode(StatusCode code) {
13 switch (code) {
69 Status::Status(StatusCode code)
70 : code_(code), msg_(DefaultMessageForStatusCode(code)) {}
72 Status::Status(StatusCode code, const std::string& details)
73 : code_(code),
74 msg_(DefaultMessageForStatusCode(code) + std::string(": ") + details) {
77 Status::Status(StatusCode code, const Status& cause
104 StatusCode Status::code() const { function in class:Status
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
keycode_text_conversion_win.cc 2 // Use of this source code is governed by a BSD-style license that can be
27 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0); local
30 if (code <= 0 || (code == 1 && iswcntrl(chars[0])))
33 base::WideToUTF8(chars, code, text);
  /external/chromium_org/chrome/test/remoting/
key_code_map.h 2 // Use of this source code is governed by a BSD-style license that can be
24 // The UIEvents (aka: DOM4Events) |code| value as defined in:
26 const char* code; member in struct:remoting::__anon10617
28 // The (Windows) virtual keyboard code.
36 //lower UPPER Code KeyboardCode
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database_error.h 2 // Use of this source code is governed by a BSD-style license that can be
16 explicit IndexedDBDatabaseError(uint16 code) : code_(code) {}
17 IndexedDBDatabaseError(uint16 code, const char* message)
18 : code_(code), message_(base::ASCIIToUTF16(message)) {}
19 IndexedDBDatabaseError(uint16 code, const base::string16& message)
20 : code_(code), message_(message) {}
23 uint16 code() const { return code_; } function in class:content::IndexedDBDatabaseError
  /external/chromium_org/sandbox/linux/seccomp-bpf/
instruction.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // code -- Opcode of the instruction. This is typically a bitwise
30 : code(c), next(n), k(parm) {}
34 : code(c), jt_ptr(jt), jf_ptr(jf), k(parm) {}
36 uint16_t code; member in struct:sandbox::Instruction
38 // When code generation is complete, we will have computed relative
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
PrivateScriptRunner.js 2 // Use of this source code is governed by a BSD-style license that can be
19 function throwException(code, message)
26 exception.code = code;
106 var code = 1; variable
108 global.PrivateScriptDOMException[exception] = code;
109 ++code;
112 var code = 1000; variable
114 global.PrivateScriptJSError[exception] = code;
115 ++code;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
LockOrientationCallback.cpp 2 // Use of this source code is governed by a BSD-style license that can be
31 ExceptionCode code = 0; local
36 code = NotSupportedError;
40 code = SecurityError;
44 code = AbortError;
49 m_resolver->reject(DOMException::create(code, msg));

Completed in 707 milliseconds

12 3 4 5 6 7 8 91011>>