| /external/v8/src/ |
| assembler.cc | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 390 RelocIterator::RelocIterator(Code* code, int mode_mask) { 391 rinfo_.pc_ = code->instruction_start(); 394 pos_ = code->relocation_start() + code->relocation_size(); 395 end_ = code->relocation_start(); 430 return "code target (js construct call)"; 432 return "code target (context)" 476 Code* code = Code::GetCodeFromTargetAddress(target_address()); local 505 Code* code = Code::GetCodeFromTargetAddress(addr); local [all...] |
| factory.cc | 6 // * Redistributions of source code must retain the above copyright 470 Handle<Code> code, 474 function->set_code(*code); 495 Handle<Code> code) { 497 function->set_code(*code); 527 Handle<Code> code, 532 function->set_code(*code); 773 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::HandleApiCall)); local [all...] |
| /external/v8/src/mips/ |
| assembler-mips.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 52 // compatible with int, which has caused code-generation bugs. 64 // code generated for some assembly instructions (because they boil down 65 // to a few constants). If this is a problem, we could change the code 68 // and best performance in optimized code. 78 int code() const { function in struct:v8::internal::Register 134 int code() const { function in struct:v8::internal::FPURegister 282 // for code generation and assumes its size to be buffer_size. If the buffer 288 // GetCode emits any pending (non-emitted) code and fills the descripto [all...] |
| /external/bluetooth/bluez/audio/ |
| control.c | 121 uint8_t code:4; member in struct:avrcp_header 142 uint8_t code:4; member in struct:avrcp_header 326 static int send_event(int fd, uint16_t type, uint16_t code, int32_t value) 332 event.code = code; 499 avrcp->code, avrcp->subunit_type, avrcp->subunit_id, 504 avrcp->code = CTYPE_NOT_IMPLEMENTED; 508 avrcp->code = CTYPE_REJECTED; 510 avrcp->code == CTYPE_CONTROL && 515 avrcp->code = CTYPE_ACCEPTED [all...] |
| /external/v8/test/mjsunit/tools/ |
| codemap.js | 6 // * Redistributions of source code must retain the above copyright 143 // Code entries with same names but different addresses. 144 codeMap.addCode(0x1500, newCodeEntry(0x200, 'code')); 145 codeMap.addCode(0x1700, newCodeEntry(0x100, 'code')); 146 assertEntry(codeMap, 'code', 0x1500); 147 assertEntry(codeMap, 'code {1}', 0x1700); 149 assertEntry(codeMap, 'code', 0x1500); 150 assertEntry(codeMap, 'code {1}', 0x1700);
|
| /frameworks/base/core/java/android/os/ |
| Parcel.java | 181 private int mObject; // used by native code 183 private int mOwnObject; // used by native code 1189 int code = 0; local 1232 int code = readInt(); local [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| OutputFinisher.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.LocalItem; 20 import com.android.dx.rop.code.RegisterSpec; 21 import com.android.dx.rop.code.RegisterSpecList; 22 import com.android.dx.rop.code.RegisterSpecSet; 23 import com.android.dx.rop.code.SourcePosition; 40 * {@code >= 0;} register count for the method, not including any extra 45 /** {@code non-null;} the list of instructions, per se */ 55 * {@code >= 0;} the count of reserved registers (low-numbered 65 * @param regCount {@code >= 0;} register count for the metho [all...] |
| /dalvik/dx/src/com/android/dx/ssa/ |
| SCCP.java | 19 import com.android.dx.rop.code.CstInsn; 20 import com.android.dx.rop.code.Insn; 21 import com.android.dx.rop.code.RegOps; 22 import com.android.dx.rop.code.RegisterSpecList; 23 import com.android.dx.rop.code.Rop; 24 import com.android.dx.rop.code.RegisterSpec;
|
| LocalVariableExtractor.java | 19 import com.android.dx.rop.code.RegisterSpecSet; 20 import com.android.dx.rop.code.RegisterSpec; 28 * Code to figure out which local variables are active at which points in 30 * com.android.dx.rop.code.LocalVariableExtractor 36 /** {@code non-null;} method being extracted from */ 39 /** {@code non-null;} block list for the method */ 42 /** {@code non-null;} result in-progress */ 45 /** {@code non-null;} work set indicating blocks needing to be processed */ 51 * @param method {@code non-null;} the method to extract from 52 * @return {@code non-null;} the extracted informatio [all...] |
| Optimizer.java | 19 import com.android.dx.rop.code.RopMethod; 20 import com.android.dx.rop.code.TranslationAdvice; 44 * at code size/register size cost 51 * @return {@code non-null;} translation advice 67 * @param inAdvice {@code non-null;} translation advice 88 * @param inAdvice {@code non-null;} translation advice 176 // dead code remover must be run before phi type resolver
|
| /external/v8/test/mjsunit/ |
| codegen-coverage.js | 6 // * Redistributions of source code must retain the above copyright 30 // Test paths in the code generator where values in specific registers 98 // "unsafe smi" code that spills a register.
|
| debug-clearbreakpoint.js | 6 // * Redistributions of source code must retain the above copyright 38 function safeEval(code) { 40 return eval('(' + code + ')');
|
| debug-suspend.js | 6 // * Redistributions of source code must retain the above copyright 39 function safeEval(code) { 41 return eval('(' + code + ')');
|
| debug-version.js | 6 // * Redistributions of source code must retain the above copyright 38 function safeEval(code) { 40 return eval('(' + code + ')');
|
| /external/webkit/WebCore/websockets/ |
| WebSocketHandshake.cpp | 8 * * Redistributions of source code must retain the above copyright 223 const String& code = extractResponseCode(header, len); local 224 if (code.isNull()) { 228 if (code.isEmpty()) { 230 m_context->addMessage(ConsoleDestination, JSMessageSource, LogMessageType, ErrorMessageLevel, "No response code found: " + String(header, len), 0, clientOrigin()); 233 LOG(Network, "response code: %s", code.utf8().data()); 234 if (code == "401") { 240 m_context->addMessage(ConsoleDestination, JSMessageSource, LogMessageType, ErrorMessageLevel, "Unexpected response code:" + code, 0, clientOrigin()) [all...] |
| /frameworks/base/libs/binder/ |
| IMemory.cpp | 210 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 212 switch(code) { 223 return BBinder::onTransact(code, data, reply, flags); 357 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 359 switch(code) { 368 return BBinder::onTransact(code, data, reply, flags);
|
| /frameworks/base/services/java/com/android/server/ |
| KeyInputQueue.java | 361 public int getScancodeState(int code) { 365 if (vk.scancode == code) { 369 return nativeGetScancodeState(code); 373 public int getScancodeState(int deviceId, int code) { 377 if (vk.scancode == code) { 381 return nativeGetScancodeState(deviceId, code); 385 public int getTrackballScancodeState(int code) { 391 int res = nativeGetScancodeState(dev.id, code); 402 public int getDPadScancodeState(int code) { 408 int res = nativeGetScancodeState(dev.id, code); [all...] |
| /frameworks/base/services/java/com/android/server/status/ |
| StatusBarService.java | 83 * separately throughout the code, although they both use the same key, which is assigned 106 int code; field in class:StatusBarService.PendingOp 162 // thread will not work, there are places in the code that unlock and reaquire between 443 private void addPendingOp(int code, IBinder key, IconData data, NotificationData n, int i) { 447 op.code = code; 458 private void addPendingOp(int code, IBinder key, boolean visible) { 462 op.code = code; 471 private void addPendingOp(int code, int integer) [all...] |
| /system/core/debuggerd/ |
| unwind-arm.c | 470 _Unwind_Reason_Code code = _URC_OK; local 492 * to the usual unwinding code as the EXIDX mapping will fail. 509 /* Uncomment the code below to study why the unwinder failed */ 520 code = _URC_FAILURE; 534 code = _URC_FAILURE; 540 code = ((personality_routine_with_ptrace) UCB_PR_ADDR (ucbp))( 545 * reached or there is no unwinding information for the code address. 549 } while (code != _URC_END_OF_STACK && code != _URC_FAILURE && 600 * The original code here seems to deal with exceptions that are no [all...] |
| /external/v8/tools/ |
| profile.js | 6 // * Redistributions of source code must retain the above copyright 65 * code entries. 83 * @param {number} addr Address of the unknown code. 96 * @param {string} name Code entry name. 110 * Registers statically compiled code entry. 112 * @param {string} name Code entry name. 126 * Registers dynamic (JIT-compiled) code entry. 128 * @param {string} type Code entry type. 129 * @param {string} name Code entry name. 131 * @param {number} size Code entry size [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 1142 ResXMLTree::event_code_t code; local 1426 int32_t code = sym.typeCode == AaptSymbolEntry::TYPE_INT32 local 1903 ResXMLTree::event_code_t code; local 1998 ResXMLTree::event_code_t code; local [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...] |
| /dalvik/dx/src/com/android/dx/cf/code/ |
| LocalVariableList.java | 17 package com.android.dx.cf.code; 21 import com.android.dx.rop.code.LocalItem; 26 * {@code LocalVariableTable} and {@code LocalVariableTypeTable} 30 /** {@code non-null;} zero-size instance */ 37 * @param list1 {@code non-null;} first instance 38 * @param list2 {@code non-null;} second instance 39 * @return {@code non-null;} combined instance 73 * @param descriptorList {@code non-null;} list with descriptors 74 * @param signatureList {@code non-null;} list with signature [all...] |
| OneLocalsArray.java | 17 package com.android.dx.cf.code; 19 import com.android.dx.rop.code.RegisterSpec; 34 /** {@code non-null;} actual array */ 39 * all-uninitialized values (represented as {@code null}s). 41 * @param maxLocals {@code >= 0;} the maximum number of locals this instance 240 * @param msg {@code non-null;} useful message
|
| /dalvik/dx/src/com/android/dx/command/dump/ |
| BaseDumper.java | 19 import com.android.dx.cf.code.ConcreteMethod; 22 import com.android.dx.rop.code.AccessFlags; 37 /** {@code non-null;} array of data being dumped */ 43 /** {@code non-null;} where to dump to */ 50 * {@code non-null;} the file path for the class, excluding any base 64 /** {@code non-null;} the current column separator string */ 76 * @param bytes {@code non-null;} bytes of the (alleged) class file 78 * @param out {@code non-null;} where to dump to 161 * @return {@code >= 0;} the dump cursor 170 * @param arr {@code non-null;} array in questio [all...] |