HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 526 - 550 of 19832) sorted by null

<<21222324252627282930>>

  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
40 * This code is derived from software contributed to Berkeley by
46 * 1. Redistributions of source code must retain the above copyright
133 int code; member in struct:rerr
153 { 0, "", "*** unknown regexp error code ***" }
180 for (r = rerrs; r->code != 0; r++)
181 if (r->code == target)
185 if (r->code != 0) {
215 for (r = rerrs; r->code != 0; r++
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form12x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.HighRegisterPrefix;
21 import com.android.dexgen.dex.code.InsnFormat;
22 import com.android.dexgen.dex.code.SimpleInsn;
23 import com.android.dexgen.rop.code.RegisterSpec;
24 import com.android.dexgen.rop.code.RegisterSpecList;
28 * Instruction format {@code 12x}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
50 * The (sz - 2) and (sz - 1) below makes this code work fo
    [all...]
  /external/v8/src/builtins/
builtins.cc 2 // Use of this source code is governed by a BSD-style license that can be
7 #include "src/code-events.h"
8 #include "src/compiler/code-assembler.h"
30 void PostBuildProfileAndTracing(Isolate* isolate, Code* code,
33 AbstractCode::cast(code), name));
39 code->Disassemble(name, os);
48 Code* BuildWithMacroAssembler(Isolate* isolate,
50 Code::Flags flags, const char* s_name) {
59 Handle<Code> code local
76 Handle<Code> code = local
93 Handle<Code> code = compiler::CodeAssembler::GenerateCode(&state); local
114 Handle<Code> code = compiler::CodeAssembler::GenerateCode(&state); local
129 Code* code; local
    [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/valgrind/none/tests/mips32/
SignalException.c 14 int code; member in struct:test
30 static int testcode(int code, int want)
32 if (code != want) {
33 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
44 ok = ok && testcode(si->si_code, curr_test->code);
88 #define T(n, sig, code) { test##n, sig, code }
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 38 int code; field in class:MtpPropertyGroup.Property
42 Property(int code, int type, int column) {
43 this.code = code;
82 private Property createProperty(int code, ArrayList<String> columns) {
86 switch (code) {
167 Log.e(TAG, "unsupported property " + code);
173 return new Property(code, type, columns.size() - 1);
175 return new Property(code, type, -1);
242 switch (property.code) {
    [all...]
  /prebuilts/go/darwin-x86/doc/codewalk/
codewalk.css 3 Use of this source code is governed by a BSD-style
13 #code-display {
152 /* Style for Code (the right-hand column) */
154 /* Wrapper for the code column to make widths get calculated correctly */
155 #code-column {
162 #code-column.left {
166 #code-column.right {
170 #code-area {
176 .left #code-area {
180 .right #code-area
    [all...]
  /prebuilts/go/linux-x86/doc/codewalk/
codewalk.css 3 Use of this source code is governed by a BSD-style
13 #code-display {
152 /* Style for Code (the right-hand column) */
154 /* Wrapper for the code column to make widths get calculated correctly */
155 #code-column {
162 #code-column.left {
166 #code-column.right {
170 #code-area {
176 .left #code-area {
180 .right #code-area
    [all...]
  /system/update_engine/common/
error_code_utils.cc 26 string ErrorCodeToString(ErrorCode code) {
27 // If the given code has both parts (i.e. the error code part and the flags
29 // has case statements only for the base error code or a single flag but
31 if ((static_cast<int>(code) & static_cast<int>(ErrorCode::kSpecialFlags)) &&
32 (static_cast<int>(code) & ~static_cast<int>(ErrorCode::kSpecialFlags)))
33 code = static_cast<ErrorCode>(
34 static_cast<int>(code) & ~static_cast<int>(ErrorCode::kSpecialFlags));
35 switch (code) {
155 return "Unknown error: " + base::UintToString(static_cast<unsigned>(code));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
77 """Base class for all exceptions that include an SMTP error code.
80 server returns an error code. The error code is stored in the
85 def __init__(self, code, msg):
86 self.smtp_code = code
88 self.args = (code, msg)
97 def __init__(self, code, msg, sender):
98 self.smtp_code = code
101 self.args = (code, msg, sender)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_fs.c 242 struct rX00_fragment_program_code *generic_code = &shader->code;
251 struct r500_fragment_program_code *code = &generic_code->code.r500; local
254 ((code->inst_end + 1) * 6) +
256 code->int_constant_count * 2;
260 OUT_CB_REG(R500_US_PIXSIZE, code->max_temp_idx);
261 OUT_CB_REG(R500_US_FC_CTRL, code->us_fc_ctrl);
262 for(i = 0; i < code->int_constant_count; i++){
264 code->int_constants[i]);
267 R500_US_CODE_RANGE_ADDR(0) | R500_US_CODE_RANGE_SIZE(code->inst_end))
298 struct r300_fragment_program_code *code = &generic_code->code.r300; local
    [all...]
  /external/python/cpython2/Lib/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
78 """Base class for all exceptions that include an SMTP error code.
81 server returns an error code. The error code is stored in the
86 def __init__(self, code, msg):
87 self.smtp_code = code
89 self.args = (code, msg)
98 def __init__(self, code, msg, sender):
99 self.smtp_code = code
102 self.args = (code, msg, sender
    [all...]
locale.py 349 def _replace_encoding(code, encoding):
350 if '.' in code:
351 langname = code[:code.index('.')]
353 langname = code
367 """ Returns a normalized locale code for the given locale
370 The returned locale code is formatted for use with
377 the default encoding for the locale code just like setlocale()
384 code = localename.translate(_ascii_lower_map)
385 if ':' in code
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
77 """Base class for all exceptions that include an SMTP error code.
80 server returns an error code. The error code is stored in the
85 def __init__(self, code, msg):
86 self.smtp_code = code
88 self.args = (code, msg)
97 def __init__(self, code, msg, sender):
98 self.smtp_code = code
101 self.args = (code, msg, sender
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
77 """Base class for all exceptions that include an SMTP error code.
80 server returns an error code. The error code is stored in the
85 def __init__(self, code, msg):
86 self.smtp_code = code
88 self.args = (code, msg)
97 def __init__(self, code, msg, sender):
98 self.smtp_code = code
101 self.args = (code, msg, sender
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
77 """Base class for all exceptions that include an SMTP error code.
80 server returns an error code. The error code is stored in the
85 def __init__(self, code, msg):
86 self.smtp_code = code
88 self.args = (code, msg)
97 def __init__(self, code, msg, sender):
98 self.smtp_code = code
101 self.args = (code, msg, sender
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 36 # ESMTP support, test code and doc fixes added by
77 """Base class for all exceptions that include an SMTP error code.
80 server returns an error code. The error code is stored in the
85 def __init__(self, code, msg):
86 self.smtp_code = code
88 self.args = (code, msg)
97 def __init__(self, code, msg, sender):
98 self.smtp_code = code
101 self.args = (code, msg, sender
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 20 import com.android.dx.dex.code.DalvCode;
21 import com.android.dx.dex.code.DalvInsnList;
33 * {@code dex} file.
42 /** {@code non-null;} method that this code implements */
45 /** {@code non-null;} the bytecode instructions and associated data */
46 private final DalvCode code; field in class:CodeItem
48 /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */
51 /** whether this instance is for a {@code static} method */
55 * {@code non-null;} list of possibly-thrown exceptions; just used i
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regerror.c 13 * 1. Redistributions of source code must retain the above copyright
49 onig_error_code_to_format(int code)
53 if (code >= 0) return (UChar* )0;
55 switch (code) {
95 p = "invalid meta-code syntax"; break;
97 p = "invalid control-code syntax"; break;
133 p = "mismatch multibyte code length in char-class range"; break;
135 p = "too many multibyte code ranges are specified"; break;
137 p = "too short multibyte code string"; break;
153 p = "invalid code point value"; break;
207 OnigCodePoint code; local
    [all...]
  /external/skia/src/core/
SkGlyph.h 4 * Use of this source code is governed by a BSD-style license that can be
40 SkPackedID(uint32_t code) {
41 SkASSERT(code <= kCodeMask);
42 SkASSERT(code != kImpossibleID);
43 fID = code;
46 SkPackedID(uint32_t code, SkFixed x, SkFixed y) {
47 SkASSERT(code <= kCodeMask);
52 code;
66 uint32_t code() const { function in struct:SkPackedID
110 SkPackedGlyphID(SkGlyphID code) : SkPackedID(code) {
113 SkGlyphID code() const { function in struct:SkPackedGlyphID
122 SkUnichar code() const { function in struct:SkPackedUnicharID
    [all...]
  /external/skqp/src/core/
SkGlyph.h 4 * Use of this source code is governed by a BSD-style license that can be
40 SkPackedID(uint32_t code) {
41 SkASSERT(code <= kCodeMask);
42 SkASSERT(code != kImpossibleID);
43 fID = code;
46 SkPackedID(uint32_t code, SkFixed x, SkFixed y) {
47 SkASSERT(code <= kCodeMask);
52 code;
66 uint32_t code() const { function in struct:SkPackedID
110 SkPackedGlyphID(SkGlyphID code) : SkPackedID(code) {
113 SkGlyphID code() const { function in struct:SkPackedGlyphID
122 SkUnichar code() const { function in struct:SkPackedUnicharID
    [all...]
  /external/libjpeg-turbo/
jerror.h 31 #define JMESSAGE(code,string)
39 #define JMESSAGE(code,string) code ,
43 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
45 /* For maintenance convenience, list is alphabetical by message code name */
70 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
98 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
99 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
188 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
190 JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
    [all...]
  /external/python/cpython3/Modules/
unicodedata.c 25 [clinic start generated code]*/
26 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=6dac153082d150bc]*/
56 _getrecord_ex(Py_UCS4 code)
59 if (code >= 0x110000)
62 index = index1[(code>>SHIFT)];
63 index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
120 [clinic start generated code]*/
125 /*[clinic end generated code: output=be23376e1a185231 input=933f8107993f23d0]*/
173 [clinic start generated code]*/
177 /*[clinic end generated code: output=96e18c950171fd2f input=e27d6e4565cd29f2]*
402 int code, index, count; local
523 Py_UCS4 code = stack[--stackptr]; local
643 Py_UCS4 code; local
1236 Py_UCS4 code; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
locale.py 347 def _replace_encoding(code, encoding):
348 if '.' in code:
349 langname = code[:code.index('.')]
351 langname = code
365 """ Returns a normalized locale code for the given locale
368 The returned locale code is formatted for use with
375 the default encoding for the locale code just like setlocale()
382 code = localename.translate(_ascii_lower_map)
383 if ':' in code:
    [all...]
  /cts/tools/dasm/src/dasm/
DopInfo.java 19 import com.android.dx.dex.code.Dop;
20 import com.android.dx.dex.code.Dops;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.dex.code.form.Form10t;
23 import com.android.dx.dex.code.form.Form10x;
24 import com.android.dx.dex.code.form.Form11n;
25 import com.android.dx.dex.code.form.Form11x;
26 import com.android.dx.dex.code.form.Form12x;
27 import com.android.dx.dex.code.form.Form20t;
28 import com.android.dx.dex.code.form.Form21c
    [all...]

Completed in 1125 milliseconds

<<21222324252627282930>>