| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| CodeAddress.java | 17 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";
|
| SimpleInsn.java | 17 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
|
| VariableSizeInsn.java | 17 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
|
| /external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
| ConservativeTranslationAdvice.java | 17 package com.android.dx.rop.code; 21 * {@code false} to all methods. 25 /** {@code non-null;} standard instance of this class */
|
| TranslationAdvice.java | 17 package com.android.dx.rop.code; 23 * the early stage code be explicitly tied to the target. 33 * @param opcode {@code non-null;} the opcode 34 * @param sourceA {@code non-null;} the first source 35 * @param sourceB {@code non-null;} the second source 36 * @return {@code true} iff the target can represent the operation 46 * @param opcode {@code non-null;} opcode 47 * @param sources {@code non-null;} source list 48 * @return {@code true} iff the target requires the sources to be
|
| /external/elfutils/libdw/ |
| dwarf_getabbrev.c | 63 representing the abbreviation code itself. [...] The 64 abbreviation code is followed by another unsigned LEB128 79 unsigned int code; local 80 get_uleb128 (code, abbrevp, end); 82 /* Check whether this code is already in the hash table. */ 86 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL) 99 /* A duplicate abbrev code at a different offset, 114 abb->code = code; 145 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb) [all...] |
| /external/icu/icu4c/source/i18n/unicode/ |
| region.h | 29 * <code>Region</code> is the class representing a Unicode Region Code, also known as a 34 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or 37 * These are typically 3-digit codes, but contain some 2-letter codes, such as the LDML code QO 39 * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 ), 44 * include areas that are not separate countries, such as the code "AQ" for Antarctica or the code 49 * UNKNOWN - The code ZZ is defined by Unicode LDML for use to indicate that the Region is unknown, 56 * that a region code has been assigned for it. Some of these are UNM.49 codes that do't fall into 198 int32_t code; member in class:Region [all...] |
| /external/mesa3d/src/gallium/drivers/r300/ |
| r300_vs.h | 52 /* Machine code (if translated) */ 53 struct r300_vertex_program_code code; member in struct:r300_vertex_shader
|
| /external/opencv3/3rdparty/libwebp/utils/ |
| huffman_encode.h | 3 // Use of this source code is governed by a BSD-style license 25 uint8_t code; // value (0..15) or escape code (16,17,18) member in struct:__anon20476 32 uint8_t* code_lengths; // Code lengths of the symbols.
|
| /external/opencv3/modules/cudaimgproc/perf/ |
| perf_color.cpp | 20 // * Redistribution's of source code must retain the above copyright notice, 91 TEST_CYCLE() cv::cuda::cvtColor(d_src, dst, info.code, info.dcn); 99 TEST_CYCLE() cv::cvtColor(src, dst, info.code, info.dcn); 130 TEST_CYCLE() cv::cuda::cvtColor(d_src, dst, info.code, info.dcn); 138 TEST_CYCLE() cv::cvtColor(src, dst, info.code, info.dcn); 160 const int code = GET_PARAM(1); local 170 TEST_CYCLE() cv::cuda::demosaicing(d_src, dst, code); 176 if (code >= cv::COLOR_COLORCVT_MAX) 184 TEST_CYCLE() cv::cvtColor(src, dst, code);
|
| /external/opencv3/samples/python2/ |
| _coverage.py | 17 code = open(fn).read() variable 18 found |= set(re.findall('cv2?\.\w+', code))
|
| /external/pdfium/core/src/fxcrt/ |
| fx_basic_utf.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 67 int code = unicode; local 68 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order)); 70 code = code % order; 72 m_Buffer.AppendChar(0x80 | (code / order));
|
| /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
| ShadowKeyEvent.java | 11 private int code; field in class:ShadowKeyEvent 13 public void __constructor__(int action, int code) { 15 this.code = code; 25 return code;
|
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
| Code.java | 18 public class Code { 19 private final Integer code; field in class:Code 21 public Code(Integer name) { 22 this.code = name; 26 return code; 31 if (obj instanceof Code) { 32 Code code = (Code) obj; local 33 return code.equals(code.code) [all...] |
| Code2.java | 22 private final Integer code; field in class:Code2 25 this.code = name; 29 this.code = new Integer(name); 33 return code; 39 Code2 code = (Code2) obj; local 40 return code.equals(code.code); 48 return code.hashCode(); 53 return "<Code2 code=" + code + ">" [all...] |
| Code4.java | 23 private final Integer code; field in class:Code4 26 this.code = name; 30 this.code = new Integer(name.intValue()); 34 return code; 40 Code4 code = (Code4) obj; local 41 return code.equals(code.code); 49 return code.hashCode(); 54 return "<Code4 code=" + code + ">" [all...] |
| /external/strace/ |
| printsiginfo.c | 15 * 1. Redistributions of source code must retain the above copyright 90 const char *code = xlookup(siginfo_codes, si_code); local 92 if (!code) { 95 code = xlookup(sigtrap_codes, si_code); 98 code = xlookup(sigchld_codes, si_code); 101 code = xlookup(sigpoll_codes, si_code); 104 code = xlookup(sigprof_codes, si_code); 107 code = xlookup(sigill_codes, si_code); 111 code = xlookup(sigemt_codes, si_code); 115 code = xlookup(sigfpe_codes, si_code) [all...] |
| /external/v8/src/ic/ |
| access-compiler.cc | 2 // Use of this source code is governed by a BSD-style license that can be 12 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags, 14 // Create code object in the heap. 17 Handle<Code> code = factory()->NewCode(desc, flags, masm()->CodeObject()); local 18 if (code->IsCodeStubOrIC()) code->set_stub_key(CodeStub::NoCacheKey()); 23 code->Disassemble(name, os); 26 return code; [all...] |
| /external/v8/test/cctest/ |
| test-code-layout.cc | 2 // Use of this source code is governed by a BSD-style license that can be 31 Handle<Code> code = CcTest::i_isolate()->factory()->NewCode( local 34 CHECK(!code->has_unwinding_info()); 35 CHECK_EQ(code->instruction_size(), buffer_size); 36 CHECK_EQ(memcmp(code->instruction_start(), buffer, buffer_size), 0); 37 CHECK_EQ(code->instruction_end() - reinterpret_cast<byte*>(*code), 38 Code::kHeaderSize + buffer_size - kHeapObjectTag); 68 Handle<Code> code = CcTest::i_isolate()->factory()->NewCode local [all...] |
| /external/vboot_reference/firmware/lib/tpm_lite/include/ |
| tpm_error_messages.h | 2 * Use of this source code is governed by a BSD-style license that can be
20 uint32_t code;
member in struct:tpm_error_info 131 was returning a failure code also" },
|
| /external/vixl/examples/ |
| literal.cc | 7 // * Redistributions of source code must retain the above copyright notice, 42 // Generate some code. 62 // Usually, compilers will move the code to another place in memory before 65 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size)); local 66 if (code == NULL) { 69 memcpy(code, masm.GetStartAddress<void*>(), code_size); 71 // Run the code. 76 automatically_placed_literal.UpdateValue(a, code); 77 manually_placed_literal.UpdateValue(b, code); 79 // Run the code again [all...] |
| /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
| bitstream.h | 39 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code); 45 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code); 46 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code); 47 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code); 51 __inline PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code) 62 *code = stream->curr_word >> (32 - nbits); 69 __inline PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code) 78 *code = stream->curr_word >> 17; 83 __inline PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code) 92 *code = stream->curr_word >> 19 97 uint code; local 112 uint code; local [all...] |
| /frameworks/base/services/core/java/com/android/server/pm/ |
| IntentFilterVerificationResponse.java | 24 public final int code; field in class:IntentFilterVerificationResponse 27 public IntentFilterVerificationResponse(int callerUid, int code, List<String> failedDomains) { 29 this.code = code;
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| AArch64CA53Erratum843419Stub2.cpp | 64 ErratumSequence code; local 65 pFragRef.memcpy(&code, AArch64InsnHelpers::InsnSize * 4, 0); 67 if (AArch64CA53Erratum843419Stub::isErratum843419Sequence(code.insns[0], 68 code.insns[1], 69 code.insns[3])) {
|
| /libcore/luni/src/main/java/org/w3c/dom/ls/ |
| LSException.java | 16 * Parser or write operations may throw an <code>LSException</code> if the 18 * <code>DOMError</code> with a severity of 19 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered 20 * <code>DOMError.SEVERITY_ERROR</code>, or if 21 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code> 34 public short code; field in class:LSException [all...] |