Searched defs:code (Results 151 - 175 of 1304) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/public/web/
H A DWebSocketClient.h8 * * Redistributions of source code must retain the above copyright
55 virtual void didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { } argument
/external/chromium_org/third_party/icu/source/common/
H A Duscript.c33 UScriptCode code = USCRIPT_INVALID_CODE; local
47 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
50 if(code==(UScriptCode)UCHAR_INVALID_CODE){
63 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, cName);
64 /* got the script code now fill in the buffer */
66 *(fillIn)++=code;
80 code = USCRIPT_INVALID_CODE;
82 if(code==(UScriptCode)UCHAR_INVALID_CODE){
84 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
86 if(code!
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Durlencode.cc8 * 1. Redistributions of source code must retain the above copyright notice,
33 static int HexPairValue(const char * code) { argument
35 const char * pch = code;
50 if (pch == code + 2)
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser_unittest.cc8 * 1. Redistributions of source code must retain the above copyright notice,
63 virtual void Error(XmlParseContext * pctx, XML_Error code) { argument
65 ss_ << "ERROR (" << static_cast<int>(code) << ") ";
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
H A Dglapi_entrypoint.c28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
[all...]
/external/chromium_org/ui/events/keycodes/dom4/
H A Dkeycode_converter.cc2 // Use of this source code is governed by a BSD-style license that can be
12 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, win, code}
14 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, xkb, code}
16 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, mac, code}
18 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, 0, code}
52 if (usb_keycode_map[i].code !
60 CodeToNativeKeycode(const char* code) argument
115 CodeToUsbKeycode(const char* code) argument
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-x64.cc6 // * Redistributions of source code must retain the above copyright
416 Object* code = CcTest::heap()->CreateCode( local
420 CHECK(code->IsCode());
422 Code::cast(code)->Print();
423 byte* begin = Code::cast(code)->instruction_start();
424 byte* end = begin + Code::cast(code)->instruction_size();
H A Dtest-macro-assembler-mips.cc6 // * Redistributions of source code must retain the above copyright
94 Object* code = isolate->heap()->CreateCode( local
98 CHECK(code->IsCode());
100 ::F f = FUNCTION_CAST< ::F>(Code::cast(code)->entry());
/external/chromium_org/win8/metro_driver/
H A Dmetro_driver.cc2 // Use of this source code is governed by a BSD-style license that can be
30 DWORD code = ex_info->ExceptionRecord->ExceptionCode; local
32 if (code == EXCEPTION_RO_ORIGINATEERROR) {
35 } else if (code == EXCEPTION_RO_TRANSFORMERROR) {
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java17 package com.android.dx.dex.code;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
33 * {@code non-null;} address representing the instruction that uses this
38 /** {@code non-null;} initial values to be filled into an array */
52 * unknown ({@code -1}).
54 * @param position {@code non-null;} source position
55 * @param user {@code non-null;} address representing the instruction that
57 * @param values {@code non-null;} initial values to be filled into an array
H A DDop.java17 package com.android.dx.dex.code;
26 /** {@code Opcodes.isValid();} the opcode value itself */
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
35 * {@code Opcodes.NO_NEXT} to indicate that this is the last
40 /** {@code non-null;} the instruction format */
49 * @param opcode {@code Opcodes.isValid();} the opcode value
51 * @param family {@code Opcodes.isValid();} the opcode family
52 * @param nextOpcode {@code Opcodes.isValid();} what opcode (by
54 * particular arguments; {@code Opcode
[all...]
H A DHighRegisterPrefix.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.SourcePosition;
27 * {@code move*} instructions to move a set of registers into
28 * registers starting at {@code 0} sequentially. This is used
33 /** {@code null-ok;} cached instructions, if constructed */
38 * unknown ({@code -1}).
40 * @param position {@code non-null;} source position
41 * @param registers {@code no
[all...]
H A DLocalStart.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.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 no
[all...]
H A DOutputCollector.java17 package com.android.dx.dex.code;
33 * {@code non-null;} the associated finisher (which holds the instruction
39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
47 * @param dexOptions {@code non-null;} options for dex output
48 * @param initialCapacity {@code >= 0;} initial capacity of the output list
49 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output
51 * @param regCount {@code >= 0;} register count for the method
62 * @param insn {@code non-null;} the instruction to add
74 * {@code
[all...]
H A DStdCatchBuilder.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.RopMethod;
35 /** the maximum range of a single catch handler, in code units */
38 /** {@code non-null;} method to build the list for */
41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
51 * @param method {@code non-null;} method to build the list for
52 * @param order {@code no
[all...]
H A DTargetInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.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 l
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10t.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.TargetInsn;
25 * Instruction format {@code 10t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
H A DForm11n.java17 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 11n}. See the instruction format spec
34 /** {@code non-null;} unique instance of this class */
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 */
H A DForm12x.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.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
29 * Instruction format {@code 12x}. See the instruction format spec
33 /** {@code non-null;} unique instance of this class */
51 * The (sz - 2) and (sz - 1) below makes this code work for
129 * The (sz - 2) and (sz - 1) below makes this code wor
[all...]
H A DForm20t.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.TargetInsn;
25 * Instruction format {@code 20t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
H A DForm21c.java17 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.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
33 * Instruction format {@code 21c}. See the instruction format spec
37 /** {@code non-null;} unique instance of this class */
H A DForm21h.java17 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 21h}. See the instruction format spec
34 /** {@code non-null;} unique instance of this class */
H A DForm21s.java17 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 21s}. See the instruction format spec
34 /** {@code non-null;} unique instance of this class */
H A DForm21t.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.TargetInsn;
22 import com.android.dx.rop.code.RegisterSpecList;
28 * Instruction format {@code 21t}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */

Completed in 452 milliseconds

1234567891011>>