HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 176 - 200 of 18139) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ER variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ER variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /external/clang/test/Driver/
output-file-cleanup.c 25 invalid C code
29 // RUN: echo "invalid C code" > %t2.c
45 // RUN: echo "invalid C code" > %t2.c
47 // RUN: echo "invalid C code" > %t4.c
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Local.java 19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) {
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type)
    [all...]
  /external/eigen/Eigen/src/Core/util/
NonMPL2.h 2 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
  /external/junit/src/main/java/org/junit/internal/
RealSystem.java 11 public void exit(int code) {
12 System.exit(code);
  /external/mesa3d/src/mapi/mapi/
entry_x86_tsd.h 80 char *code = (char *) entry; local
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
90 void *code; local
93 code = u_execmem_alloc(X86_ENTRY_SIZE);
94 if (!code)
97 memcpy(code, code_templ, X86_ENTRY_SIZE);
98 entry = (mapi_func) code;
  /external/valgrind/none/tests/x86/
smc1.c 2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
47 static UChar code[10]; variable
49 /* Make `code' be PUSHL $dest ; ret */
53 code[0] = 0x68; /* PUSH imm32 */
54 code[1] = (dest & 0xFF);
55 code[2] = ((dest >> 8) & 0xFF);
56 code[3] = ((dest >> 16) & 0xFF);
57 code[4] = ((dest >> 24) & 0xFF)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
exportbug.s 1 .code
callinfobug.s 1 .code
global.s 1 .code
5 ; Official gas code will not accept sym-$global$.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips64-mips3d.l 2 .*:150: Warning: condition code register should be even for bc1any2f, was 1
3 .*:152: Warning: condition code register should be even for bc1any2t, was 3
4 .*:154: Warning: condition code register should be 0 or 4 for bc1any4f, was 1
5 .*:156: Warning: condition code register should be 0 or 4 for bc1any4t, was 2
  /external/android-clat/
icmp.h 34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
SimpleFilter.java 13 int code(byte[] buf, int off, int len); method in interface:SimpleFilter
  /libcore/ojluni/src/main/java/java/net/
HttpRetryException.java 5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
46 * Constructs a new {@code HttpRetryException} from the
47 * specified response code and exception detail message
50 * @param code the HTTP response code from server.
52 public HttpRetryException(String detail, int code) {
54 responseCode = code;
    [all...]
  /system/update_engine/common/
error_code_utils.h 29 std::string ErrorCodeToString(ErrorCode code);
  /art/compiler/linker/mips/
relative_patcher_mips.cc 39 void MipsRelativePatcher::PatchCall(std::vector<uint8_t>* code ATTRIBUTE_UNUSED,
46 void MipsRelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code,
59 DCHECK_GE(code->size(), 8u);
60 DCHECK_LE(literal_offset, code->size() - 8u);
63 DCHECK_EQ((*code)[literal_offset + 0], 0x34);
64 DCHECK_EQ((*code)[literal_offset + 1], 0x12);
65 DCHECK_EQ(((*code)[literal_offset + 2] & 0x1F), 0x1E);
66 DCHECK_EQ(((*code)[literal_offset + 3] & 0xFC), 0xEC);
68 DCHECK_EQ((*code)[literal_offset + 4], 0x78);
69 DCHECK_EQ((*code)[literal_offset + 5], 0x56)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/
ascii.c 11 * 1. Redistributions of source code must retain the above copyright
33 ascii_is_code_ctype(OnigCodePoint code, unsigned int ctype)
35 if (code < 128)
36 return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype);
  /external/syslinux/com32/gpllib/dmi/
dmi_ipmi.c 22 * For the avoidance of doubt the "preferred form" of this code is one which
26 * are deemed to be part of the source code.
32 const char *dmi_ipmi_interface_type(uint8_t code)
43 if (code <= 0x04)
44 return type[code];
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
mapshort.s 4 .code 32
6 .code 16
16 .code 32
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 84 private void pressKeyWithoutTimerExpire(final int code, final boolean isSinglePointer,
86 mSwitcher.onPressKey(code, isSinglePointer);
93 * @param code the key code to press.
96 public void pressKey(final int code, final int afterPress) {
98 pressKeyWithoutTimerExpire(code, true, afterPress);
104 * @param code the key code to release and register
107 public void releaseKey(final int code, final int afterRelease) {
108 mSwitcher.onCodeInput(code);
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 37 Bytecode code = makeBody(declaring, declaring.getClassFile2(), local
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
59 code.setMaxLocals(false, parameters, 0);
60 code.addAload(0);
63 code.addInvokespecial(superclazz, "<init>", "()V");
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
67 code.addInvokespecial(superclazz, "<init>",
71 stacksize = compileParameterList(code, parameters, 1);
78 stacksize2 = cparam.compile(code) + 2
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 105 abstract void consume (int code);
107 boolean isAccepted (int code)
109 return Character.isLetterOrDigit(code);
115 void consume (int code) {
116 System.out.print(code);
127 boolean isAccepted (int code)
129 return Character.isLetterOrDigit(code) || Character.isWhitespace(code);
135 void consume (int code) {
136 // System.out.print(code);
175 int code = 0; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dec_pred_intra_dc.cpp 34 uint code; local
52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size);
54 first_bit = code >> (DC_size - 1);
59 *INTRADC_delta = code ^((1 << DC_size) - 1);
64 *INTRADC_delta = code;
  /libcore/luni/src/main/java/libcore/io/
EventLogger.java 47 public void report (int code, Object... list);
55 public void report (int code, Object... list) {
57 sb.append(code);
66 public static void writeEvent(int code, Object... list) {
67 getReporter().report(code, list);

Completed in 828 milliseconds

1 2 3 4 5 6 78 91011>>