/external/v8/src/ |
bootstrapper.cc | 6 // * Redistributions of source code must retain the above copyright 45 // (AsciiString*, JSFunction*), mapping names of native code files 125 // Old snapshot code can't cope with external strings at all. 257 Handle<Code> code); 337 Handle<Code> call_code = Handle<Code>(Builtins::builtin(call)); 453 Handle<Code> code = local 454 Handle<Code>(Builtins::builtin(Builtins::EmptyFunction)) 528 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 558 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 754 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 802 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 818 Handle<Code> code = local 829 Handle<Code> code = local 961 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local [all...] |
debug.h | 6 // * Redistributions of source code must retain the above copyright 32 #include "code-stubs.h" 106 return static_cast<int>(pc() - debug_info_->code()->entry()); 112 inline Code* code() { return debug_info_->code(); } function in class:v8::internal::BreakLocationIterator 210 // setting break points in the code. 251 // Check whether a code stub with the specified major key is a possible break 253 static bool IsSourceBreakStub(Code* code); [all...] |
mark-compact.cc | 6 // * Redistributions of source code must retain the above copyright 275 Code* code = Code::GetCodeFromTargetAddress(rinfo->target_address()); local 276 if (FLAG_cleanup_ics_at_gc && code->is_inline_cache_stub()) { 281 MarkCompactCollector::MarkObject(code); 288 HeapObject* code = Code::GetCodeFromTargetAddress(rinfo->call_address()); local 289 MarkCompactCollector::MarkObject(code); 889 // strings are promoted to the code space, large objects to large object space [all...] |
runtime.cc | 6 // * Redistributions of source code must retain the above copyright 858 // re-declarations: This is similar to the code in parser.cc in 1320 Code* code = fun->code(); local 1387 Handle<Object> code = args.at<Object>(1); local 1455 uint32_t code; local 1481 Object* code = CharCodeAt(subject, index); local [all...] |
spaces.cc | 6 // * Redistributions of source code must retain the above copyright 222 // Code range is full or too fragmented. 312 // space, and one for code space. 2077 Code* code = Code::cast(obj); local 2844 Code* code = Code::cast(obj); local [all...] |
/external/v8/src/ia32/ |
assembler-ia32.cc | 8 // - Redistributions of source code must retain the above copyright notice, 33 // The original source code covered by the above license above has been modified 121 Object* code = Heap::CreateCode(desc, local 123 Code::ComputeFlags(Code::STUB), 124 Handle<Code>::null()); 125 if (!code->IsCode()) return; 127 Code::cast(code), "CpuFeatures::Probe")); 129 F0 probe = FUNCTION_CAST<F0>(Code::cast(code)->entry()) [all...] |
/external/v8/src/x64/ |
assembler-x64.cc | 6 // * Redistributions of source code must retain the above copyright 119 Object* code = local 120 Heap::CreateCode(desc, NULL, Code::ComputeFlags(Code::STUB), NULL); 121 if (!code->IsCode()) return; 123 Code::cast(code), "CpuFeatures::Probe")); 125 F0 probe = FUNCTION_CAST<F0>(Code::cast(code)->entry()); 142 // Patch the code at the current PC with a call to the target address [all...] |
assembler-x64.h | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 71 // compatible with int, which has caused code-generation bugs. 83 // code generated for some assembly instructions (because they boil down 84 // to a few constants). If this is a problem, we could change the code 87 // and best performance in optimized code. 91 static Register toRegister(int code) { 92 Register r = { code }; 97 int code() const { function in struct:v8::internal::Register 105 // Return the high bit of the register code as a 0 or 1. Used ofte 142 int code() const { function in struct:v8::internal::XMMRegister [all...] |
/external/webkit/WebCore/bindings/objc/ |
PublicDOMInterfaces.h | 7 // 1. Redistributions of source code must retain the above copyright 356 @property(copy) NSString *code; variable 699 @property(copy) NSString *code; variable [all...] |
/external/webkit/WebKit/chromium/src/js/ |
ProfilerProcessor.js | 8 * * Redistributions of source code must retain the above copyright 163 "code-creation": { 164 parsers: [null, this.createAddressParser("code"), parseInt, null], 167 "code-move": { parsers: [this.createAddressParser("code"), 168 this.createAddressParser("code-move-to")], 171 "code-delete": { parsers: [this.createAddressParser("code")], 174 "function-creation": { parsers: [this.createAddressParser("code"), 177 "function-move": { parsers: [this.createAddressParser("code"), [all...] |
/frameworks/base/core/java/android/os/ |
Parcel.java | 182 private int mObject; // used by native code 184 private int mOwnObject; // used by native code 1205 int code = 0; local 1273 int code = readExceptionCode(); local 1294 int code = readInt(); local [all...] |
/frameworks/base/core/java/android/view/ |
KeyEvent.java | 37 * Key events are generally accompanied by a key code ({@link #getKeyCode()}), 38 * scan code ({@link #getScanCode()}) and meta state ({@link #getMetaState()}). 39 * Key code constants are defined in this class. Scan code constants are raw 47 * that single repeated key code or a sequence of characters to insert. 61 /** Key code constant: Unknown key code. */ 63 /** Key code constant: Soft Left key. 68 /** Key code constant: Soft Right key. 73 /** Key code constant: Home key 1283 final int code = mKeyCode; local [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
SipPhone.java | 515 int code = c - '0'; local 516 if ((code < 0) || (code > 9)) { 529 return code; [all...] |
/frameworks/base/tools/aapt/ |
Resource.cpp | 191 ResXMLTree::event_code_t code; local 192 while ((code=block.next()) != ResXMLTree::START_TAG 193 && code != ResXMLTree::END_DOCUMENT 194 && code != ResXMLTree::BAD_DOCUMENT) { 198 if (code != ResXMLTree::START_TAG) { 220 while ((code=block.next()) != ResXMLTree::END_DOCUMENT 221 && code != ResXMLTree::BAD_DOCUMENT) { 222 if (code == ResXMLTree::START_TAG) { 485 ResXMLTree::event_code_t code; local 486 while ((code=parser.next()) != ResXMLTree::END_DOCUMEN 1151 ResXMLTree::event_code_t code; local 1435 int32_t code = sym.typeCode == AaptSymbolEntry::TYPE_INT32 local 1912 ResXMLTree::event_code_t code; local 2015 ResXMLTree::event_code_t code; local [all...] |
ResourceTable.cpp | 131 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n" 132 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."}, 136 "an integer value, such as \"<code>100</code>\"." }, 138 "a boolean value, either \"<code>true</code>\" or \"<code>false</code>\"." } 312 ResXMLTree::event_code_t code; local 797 ResXMLTree::event_code_t code; local [all...] |
/hardware/qcom/media/mm-video/vidc/vdec/test/ |
omx_vdec_test.cpp | 2 Copyright (c) 2010, Code Aurora Forum. All rights reserved. 6 * Redistributions of source code must retain the above copyright 11 * Neither the name of Code Aurora nor 740 printf(" 3--> MP4 VOP or H263 P0 SHORT HEADER START CODE CLIP (.m4v or .263)\n"); 767 printf("Error: Unknown code %d\n", codec_format_option); 849 printf(" Enter 0 if it is a start code based clip\n"); 1945 unsigned int code = 0; local 2177 unsigned int code = 0; local [all...] |
/libcore/luni/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 479 short code = fFilter.acceptNode(node);
local 480 switch (code) {
820 short code = fFilter.acceptNode(attr);
local 821 switch (code) {
[all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
LatinKeyboard.java | 674 final int code = key.codes[0]; local 675 if (code == KEYCODE_SHIFT || 676 code == KEYCODE_DELETE) { 678 if (code == KEYCODE_SHIFT) x += key.width / 6; 679 if (code == KEYCODE_DELETE) x -= key.width / 6; 680 } else if (code == LatinIME.KEYCODE_SPACE) { 710 if (mPrefLetter == code && !key.isInsideSuper(x, y)) { 714 return mPrefLetter == code; 721 if (inPrefList(code, pref)) { 723 mPrefLetter = code; [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
gimple.h | 63 #define GIMPLE_CHECK(GS, CODE) \ 66 if (gimple_code (__gs) != (CODE)) \ 68 (CODE), 0); \ 71 #define GIMPLE_CHECK(GS, CODE) (void)0 93 statement code can hold up to 16 bitflags). 264 Main identifying code for a tuple. */ 265 ENUM_BITFIELD(gimple_code) code : 8; 583 /* Condition code. */ 1026 /* Return the code for GIMPLE statement G. */ 1031 return g->gsbase.code; 1407 enum gimple_code code = gimple_code (stmt); local [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
gimple.h | 63 #define GIMPLE_CHECK(GS, CODE) \ 66 if (gimple_code (__gs) != (CODE)) \ 68 (CODE), 0); \ 71 #define GIMPLE_CHECK(GS, CODE) (void)0 93 statement code can hold up to 16 bitflags). 264 Main identifying code for a tuple. */ 265 ENUM_BITFIELD(gimple_code) code : 8; 583 /* Condition code. */ 1026 /* Return the code for GIMPLE statement G. */ 1031 return g->gsbase.code; 1407 enum gimple_code code = gimple_code (stmt); local [all...] |
/bionic/libc/kernel/common/linux/ |
rtnetlink.h | 334 __u8 code; member in struct:rta_session::__anon386::__anon388
|
/cts/tools/host/src/com/android/cts/ |
TestDevice.java | 78 /** Max time [ms] to wait for <code>adb shell getprop</code> to return a result. */ 1336 String code = line.substring(line.indexOf(EQ_MARK) + 1); local [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteOps.java | 17 package com.android.dx.cf.code; 245 /** "-": {@code op} */ 248 /** "0": {@code op}; implies {@code max_locals >= 1} */ 251 /** "1": {@code op}; implies {@code max_locals >= 2} */ 254 /** "2": {@code op}; implies {@code max_locals >= 3} */ 257 /** "3": {@code op}; implies {@code max_locals >= 4} * [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
DalvOps.java | 17 package com.android.dx.dex.code;
|
/dalvik/dx/src/com/android/dx/rop/code/ |
Rops.java | 17 package com.android.dx.rop.code; 33 /** {@code nop()} */ 37 /** {@code r,x: int :: r = x;} */ 41 /** {@code r,x: long :: r = x;} */ 45 /** {@code r,x: float :: r = x;} */ 49 /** {@code r,x: double :: r = x;} */ 53 /** {@code r,x: Object :: r = x;} */ 58 * {@code r,x: ReturnAddress :: r = x;} 67 /** {@code r,param(x): int :: r = param(x);} */ 72 /** {@code r,param(x): long :: r = param(x);} * [all...] |