/external/chromium_org/win8/metro_driver/ |
metro_driver.cc | 2 // 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/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_driver.h | 35 * It is created by the code generator and handed to the pipe driver 109 uint32_t *code; member in struct:nv50_ir_prog_info::__anon24902 191 extern void nv50_ir_relocate_code(void *relocData, uint32_t *code, 196 /* obtain code that will be shared among programs */ 198 const uint32_t **code, uint32_t *size);
|
/external/v8/src/ia32/ |
deoptimizer-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 48 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) { 49 Isolate* isolate = code->GetIsolate(); 52 // Compute the size of relocation information needed for the code 57 DeoptimizationInputData::cast(code->deoptimization_data()); 77 int reloc_length = code->relocation_info()->length(); 94 code->relocation_info()->GetDataStartAddress(), 111 // Replace relocation information on the code object. 112 code->set_relocation_info(*new_reloc) 125 Code* code = function->code(); local [all...] |
/external/v8/src/mips/ |
disasm-mips.cc | 6 // * Redistributions of source code must retain the above copyright 28 // A Disassembler object is used to disassemble a block of code instruction by 32 // The example below will disassemble a block of code and print it to stdout. 45 // of code into a FILE*, meaning that the above functionality could also be 288 int32_t code = instr->Bits(25, 6); local 290 "0x%05x (%d)", code, code); 299 int32_t code = instr->Bits(15, 6); local 301 OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code); 366 case 'c': { // 'code for break or trap instructions [all...] |
/external/v8/test/mjsunit/ |
enumeration-order.js | 6 // * 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/wpa_supplicant_8/src/eap_common/ |
eap_common.c | 117 * @code: Message Code (EAP_CODE_*) 129 u8 code, u8 identifier) 142 hdr->code = code;
|
eap_ikev2_common.c | 51 struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code) 56 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 1, code, id); 64 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 0, code, id);
|
/frameworks/av/media/libmedia/ |
IAudioFlingerClient.cpp | 70 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 72 switch (code) { 96 return BBinder::onTransact(code, data, reply, flags);
|
IEffectClient.cpp | 95 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 97 switch (code) { 138 return BBinder::onTransact(code, data, reply, flags);
|
IRemoteDisplayClient.cpp | 74 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 76 switch (code) { 100 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/base/core/java/android/database/ |
DatabaseUtils.java | 85 int code = 0; local 88 code = 1; 91 code = 2; 93 code = 3; 95 code = 4; 97 code = 5; 99 code = 6; 101 code = 7; 103 code = 8; 105 code = 9 134 int code = reply.readExceptionCode(); local 142 int code = reply.readExceptionCode(); local 154 int code = reply.readExceptionCode(); local [all...] |
/frameworks/base/core/java/android/os/storage/ |
IMountServiceListener.java | 61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) 63 switch (code) { 89 return super.onTransact(code, data, reply, flags);
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalService.java | 32 protected boolean onTransact(int code, Parcel data, Parcel reply, 34 if (code == ServiceTest.SET_REPORTER_CODE) { 39 return super.onTransact(code, data, reply, flags);
|
/frameworks/native/libs/gui/ |
ISurfaceComposerClient.cpp | 83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 85 switch(code) { 108 return BBinder::onTransact(code, data, reply, flags);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMImplementationCreateDocument.java | 101 success = (ex.code == DOMException.NAMESPACE_ERR); 122 success = (ex.code == DOMException.NAMESPACE_ERR); 142 success = (ex.code == DOMException.NAMESPACE_ERR);
|
DocumentCreateElementNS.java | 92 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 110 success = (ex.code == DOMException.NAMESPACE_ERR); 134 success = (ex.code == DOMException.NAMESPACE_ERR);
|
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha1-mips.pl | 14 # vectorized Xupdate on MIPSIII/IV, but the goal was to code MIPS32- 21 # one picks the latter, it's possible to arrange code in ABI neutral 34 # old code]; 97 $code.=<<___ if (!$big_endian); 108 $code.=<<___; 131 $code.=<<___ if (!$big_endian && $i==15); 142 $code.=<<___; 168 $code.=<<___ if ($i<79); 188 $code.=<<___ if ($i==79); 212 $code.=<<___ if ($i<79) [all...] |
/external/chromium_org/v8/src/arm/ |
deoptimizer-arm.cc | 6 // * Redistributions of source code must retain the above copyright 47 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) { 48 Address code_start_address = code->instruction_start(); 50 // code patching below, and is not needed any more. 51 code->InvalidateRelocation(); 56 DeoptimizationInputData::cast(code->deoptimization_data()); 64 // We need calls to have a predictable size in the unoptimized code, but 65 // this is optimized code, so we don't have to have a predictable size. 76 ASSERT(call_address + patch_size() <= code->instruction_end()) [all...] |
/external/openssl/crypto/sha/asm/ |
sha1-mips.pl | 14 # vectorized Xupdate on MIPSIII/IV, but the goal was to code MIPS32- 21 # one picks the latter, it's possible to arrange code in ABI neutral 34 # old code]; 97 $code.=<<___ if (!$big_endian); 108 $code.=<<___; 131 $code.=<<___ if (!$big_endian && $i==15); 142 $code.=<<___; 168 $code.=<<___ if ($i<79); 188 $code.=<<___ if ($i==79); 212 $code.=<<___ if ($i<79) [all...] |
/system/core/toolbox/ |
getevent.c | 193 static void print_event(int type, int code, int value, int print_flags) 204 code_label = get_label(syn_labels, code); 207 code_label = get_label(key_labels, code); 211 code_label = get_label(rel_labels, code); 214 code_label = get_label(abs_labels, code); 215 switch(code) { 221 code_label = get_label(msc_labels, code); 224 code_label = get_label(led_labels, code); 227 code_label = get_label(snd_labels, code); 230 code_label = get_label(sw_labels, code); [all...] |
/art/runtime/arch/arm/ |
jni_entrypoints_arm.S | 35 cbz r0, 1f @ is method code null? 38 bx r12 @ if non-null, tail call to method's code
|
/bionic/libc/kernel/common/linux/ |
icmp.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * 71 __u8 code; member in struct:icmphdr [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * 71 u_int8_t type, code; member in struct:ip_conntrack_tuple::__anon470::__anon471::__anon474 [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
yui-3.3.0-reset-min.css | 3 Code licensed under the BSD License: 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-ali (…)
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
OutputCollector.java | 17 package com.android.dexgen.dex.code; 31 * {@code non-null;} the associated finisher (which holds the instruction 37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 45 * @param initialCapacity {@code >= 0;} initial capacity of the output list 46 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output 48 * @param regCount {@code >= 0;} register count for the method 59 * @param insn {@code non-null;} the instruction to add 71 * {@code 0} is the most recently added instruction, 72 * {@code 1} is the instruction before that, etc [all...] |