Searched defs:code (Results 101 - 125 of 1408) sorted by relevance

1234567891011>>

/external/chromium_org/ui/base/ime/chromeos/
H A Dime_keymap.cc2 // Use of this source code is governed by a BSD-style license that can be
189 KeyboardCode DomKeycodeToKeyboardCode(const std::string& code) { argument
190 return g_keycode_map.Get().GetKeyboardCode(code);
193 std::string KeyboardCodeToDomKeycode(KeyboardCode code) { argument
194 return g_keycode_map.Get().GetDomKeycode(code);
/external/chromium_org/v8/src/
H A Dcode-factory.h2 // Use of this source code is governed by a BSD-style license that can be
17 // Associates a body of code with an interface descriptor.
20 Callable(Handle<Code> code, CallInterfaceDescriptor descriptor) argument
21 : code_(code), descriptor_(descriptor) {}
23 Handle<Code> code() const { return code_; } function in class:v8::internal::BASE_EMBEDDED
46 // code-stubs.h.
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.h8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
49 // compatible with int, which has caused code-generation bugs.
61 // code generated for some assembly instructions (because they boil down
62 // to a few constants). If this is a problem, we could change the code
65 // and best performance in optimized code.
80 static Register from_code(int code) { argument
81 DCHECK(code >= 0);
82 DCHECK(code < kNumRegisters);
83 Register r = { code };
[all...]
/external/chromium_org/v8/src/ic/
H A Daccess-compiler.cc2 // Use of this source code is governed by a BSD-style license that can be
16 // Create code object in the heap.
19 Handle<Code> code = factory()->NewCode(desc, flags, masm()->CodeObject()); local
20 if (code->IsCodeStubOrIC()) code->set_stub_key(CodeStub::NoCacheKey());
24 code->Disassemble(name, os);
27 return code;
42 Handle<Code> code(masm->isolate()->builtins()->builtin(name));
43 GenerateTailCall(masm, code);
H A Dic-compiler.h2 // Use of this source code is governed by a BSD-style license that can be
99 Logger::LogEventsAndTags log_kind(Handle<Code> code) { argument
101 return code->ic_state() == MONOMORPHIC ? Logger::LOAD_IC_TAG
104 return code->ic_state() == MONOMORPHIC
108 return code->ic_state() == MONOMORPHIC ? Logger::STORE_IC_TAG
112 return code->ic_state() == MONOMORPHIC
/external/chromium_org/v8/src/ic/arm/
H A Daccess-compiler-arm.cc2 // Use of this source code is governed by a BSD-style license that can be
18 Handle<Code> code) {
19 __ Jump(code, RelocInfo::CODE_TARGET);
17 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/arm64/
H A Daccess-compiler-arm64.cc2 // Use of this source code is governed by a BSD-style license that can be
18 Handle<Code> code) {
19 __ Jump(code, RelocInfo::CODE_TARGET);
17 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/ia32/
H A Daccess-compiler-ia32.cc2 // Use of this source code is governed by a BSD-style license that can be
17 Handle<Code> code) {
18 __ jmp(code, RelocInfo::CODE_TARGET);
16 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/mips/
H A Daccess-compiler-mips.cc2 // Use of this source code is governed by a BSD-style license that can be
18 Handle<Code> code) {
19 __ Jump(code, RelocInfo::CODE_TARGET);
17 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/mips64/
H A Daccess-compiler-mips64.cc2 // Use of this source code is governed by a BSD-style license that can be
18 Handle<Code> code) {
19 __ Jump(code, RelocInfo::CODE_TARGET);
17 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/x64/
H A Daccess-compiler-x64.cc2 // Use of this source code is governed by a BSD-style license that can be
18 Handle<Code> code) {
19 __ jmp(code, RelocInfo::CODE_TARGET);
17 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/ic/x87/
H A Daccess-compiler-x87.cc2 // Use of this source code is governed by a BSD-style license that can be
17 Handle<Code> code) {
18 __ jmp(code, RelocInfo::CODE_TARGET);
16 GenerateTailCall(MacroAssembler* masm, Handle<Code> code) argument
/external/chromium_org/v8/src/x87/
H A Dassembler-x87.h8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
49 // compatible with int, which has caused code-generation bugs.
61 // code generated for some assembly instructions (because they boil down
62 // to a few constants). If this is a problem, we could change the code
65 // and best performance in optimized code.
80 static Register from_code(int code) { argument
81 DCHECK(code >= 0);
82 DCHECK(code < kNumRegisters);
83 Register r = { code };
[all...]
/external/chromium_org/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)
/external/compiler-rt/lib/asan/
H A Dasan_posix.cc37 int code = (int)((siginfo_t*)siginfo)->si_code; local
50 (code == si_SEGV_MAPERR || code == si_SEGV_ACCERR))
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
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...]
H A DCodeAddress.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.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";
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 DLocalEnd.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 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 no
[all...]
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 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 DSimpleInsn.java17 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
H A DVariableSizeInsn.java17 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
H A DZeroSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Pseudo-instruction base class for zero-size (no code emitted)
26 * about the code they are adjacent to.
31 * unknown ({@code -1}).
33 * @param position {@code non-null;} source position
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10x.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;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */

Completed in 473 milliseconds

1234567891011>>