Searched refs:code (Results 151 - 175 of 2311) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java41 * forwarded and then <code>invoke()</code> is called on the method handler
45 * <p>For example, if the following code is executed,
69 * <code>mi</code> and prints a message before executing the originally called method
70 * <code>bar()</code> in <code>Foo</code>.
76 * <p>The last three lines of the code show
1192 addLoadParameters(Bytecode code, Class[] params, int offset) argument
1202 addLoad(Bytecode code, int n, Class type) argument
1223 addReturn(Bytecode code, Class type) argument
1248 makeParameterList(Bytecode code, Class[] params) argument
1268 makeWrapper(Bytecode code, Class type, int regno) argument
1282 callFind2Methods(Bytecode code, String superMethod, String thisMethod, int index, String desc, int arrayVar) argument
1301 addUnwrapper(Bytecode code, Class type) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DTextResourceDecoder.cpp79 static int ISkanji(int code) argument
81 if (code >= 0x100)
83 return sjisMap[code & 0xff] & 1;
85 static int ISkana(int code) argument
87 if (code >= 0x100)
89 return sjisMap[code & 0xff] & 2;
134 enum Type code; local
143 code = ASCII;
150 code = JIS;
154 code
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoItem.java19 import com.android.dx.dex.code.DalvCode;
20 import com.android.dx.dex.code.DalvInsnList;
21 import com.android.dx.dex.code.LocalList;
22 import com.android.dx.dex.code.PositionList;
35 /** {@code non-null;} the code this item represents */
36 private final DalvCode code; field in class:DebugInfoItem
43 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { argument
47 if (code == null) {
48 throw new NullPointerException("code
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalSnapshot.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.RegisterSpecSet;
22 import com.android.dx.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 no
[all...]
H A DFixedSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Base class for instructions which are of a fixed code size and
31 * unknown ({@code -1}).
34 * absolutely no registers (e.g., a {@code nop} or a
40 * @param position {@code non-null;} source position
41 * @param registers {@code non-null;} register list, including a
H A DOddSpacer.java17 package com.android.dx.dex.code;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
25 * Pseudo-instruction which either turns into a {@code nop} or
33 * unknown ({@code -1}).
35 * @param position {@code non-null;} source position
H A DBlockAddresses.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.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 no
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm11x.java17 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 11x}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
/external/e2fsprogs/lib/ss/
H A Derror.c60 void ss_error (int sci_idx, long code, const char * fmt, ...) argument
67 com_err_va (whoami, code, fmt, pvar);
72 void ss_perror (sci_idx, code, msg) /* for compatibility */
74 long code;
77 ss_error (sci_idx, code, "%s", msg);
/external/llvm/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const { argument
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const { argument
41 return *this == code.category() && code.value() == condition;
/external/v8/test/mjsunit/
H A Denumeration-order.js6 // * Redistributions of source code must retain the above copyright
49 var code = "{ ";
50 for (var i = 0; i < size-1; i++) code += " a_" + i + " : " + (i + 1) + ", ";
51 code += "a_" + (size - 1) + " : " + size;
52 code += " }";
53 eval("var a = " + code);
/external/webkit/Tools/DumpRenderTree/qt/
H A DEventSenderQt.cpp9 * 1. Redistributions of source code must retain the above copyright
239 int code = 0; local
241 code = string.unicode()->unicode();
242 //qDebug() << ">>>>>>>>> keyDown" << code << (char)code;
244 if (code == '\r') {
245 code = Qt::Key_Return;
246 } else if (code == '\t') {
247 code = Qt::Key_Tab;
249 code
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocator.h7 * 1. Redistributions of source code must retain the above copyright
239 static void cacheFlush(void* code, size_t size) argument
253 intptr_t start = reinterpret_cast<intptr_t>(code) & (-lineSize);
254 intptr_t end = ((reinterpret_cast<intptr_t>(code) + size - 1) & (-lineSize)) - 1;
257 intptr_t end = reinterpret_cast<intptr_t>(code) + size;
258 __builtin___clear_cache(reinterpret_cast<char*>(code), reinterpret_cast<char*>(end));
261 _flush_cache(reinterpret_cast<char*>(code), size, BCACHE);
265 static void cacheFlush(void* code, size_t size) argument
267 sys_cache_control(kCacheFunctionPrepareForExecution, code, size);
270 static void cacheFlush(void* code, size_ argument
286 cacheFlush(void* code, size_t size) argument
293 cacheFlush(void* code, size_t size) argument
309 cacheFlush(void* code, size_t size) argument
314 cacheFlush(void* code, size_t size) argument
321 cacheFlush(void* code, size_t size) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DISO10126d2Padding.java51 byte code = (byte)(in.length - inOff);
59 in[inOff] = code;
61 return code;
H A DPKCS7Padding.java42 byte code = (byte)(in.length - inOff);
46 in[inOff] = code;
50 return code;
H A DX923Padding.java45 byte code = (byte)(in.length - inOff);
60 in[inOff] = code;
62 return code;
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py26 def __init__(self, code, message, token, position, fix_data):
30 code: The numeric error code.
38 self.code = code
51 """Compare two error objects, by source code order.
/external/e2fsprogs/lib/et/
H A Dcom_err.h34 extern void com_err_va (const char *whoami, errcode_t code, const char *fmt,
52 extern const char *com_right(struct et_list *list, long code);
53 extern const char *com_right_r(struct et_list *list, long code, char *str, size_t len);
/external/v8/tools/
H A Drun-valgrind.py8 # * Redistributions of source code must retain the above copyright
49 code = process.wait(); variable
53 if code != 0:
55 sys.exit(code)
H A Dll_prof.py8 # * Redistributions of source code must retain the above copyright
192 """Group of adjacent code objects."""
214 def Add(self, code):
215 self.code_objects.append(code)
217 def Remove(self, code):
218 self.code_objects.remove(code)
222 for i, code in enumerate(code_objects):
223 if code.start_address <= pc < code.end_address:
224 code_objects[0], code_objects[i] = code, code_object
[all...]
/external/valgrind/main/docs/lib/
H A Dvg_basic.css19 code, tt { color: #761596; }
20 code a, code a:link, code a:visited, code a:active, code a:hover {
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodecomparedocumentposition30.js92 var code;
102 positionList = doc.getElementsByTagName("code");
103 code = positionList.item(0);
104 namePosition = code.compareDocumentPosition(strong);
H A Dnodecomparedocumentposition31.js92 var code;
105 positionList = doc.getElementsByTagName("code");
106 code = positionList.item(1);
108 appendedChild = code.appendChild(newElem);
H A Dnodecomparedocumentposition32.js93 var code;
104 positionList = doc2.getElementsByTagName("code");
105 code = positionList.item(0);
106 documentPosition = strong.compareDocumentPosition(code);
/external/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationError.h8 * 1. Redistributions of source code must retain the above copyright
49 WebGeolocationError(Error code, const WebString& message) { assign(code, message); } argument
53 WEBKIT_API void assign(Error code, const WebString& message);

Completed in 1044 milliseconds

1234567891011>>