| /libcore/ojluni/src/main/java/java/util/logging/ |
| ErrorManager.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). 81 * @param code an error code defined in ErrorManager 83 public synchronized void error(String msg, Exception ex, int code) { 90 String text = "java.util.logging.ErrorManager: " + code;
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| d3dx9.h | 42 #define MAKE_DDHRESULT(code) MAKE_HRESULT(1, _FACDD, code)
|
| /prebuilts/misc/common/swig/include/2.0.11/ |
| attribute.i | 11 #define %attribute_exception(code,msg) printf("%s\n",msg)
|
| /prebuilts/ndk/r16/sources/android/support/ |
| regenerate-NOTICE.sh | 13 git diff --exit-code HEAD ./NOTICE
|
| /toolchain/binutils/binutils-2.27/bfd/ |
| stab-syms.c | 31 #define __define_stab(NAME, CODE, STRING) __define_name(CODE, STRING) 32 #define __define_stab_duplicate(NAME, CODE, STRING) 48 bfd_get_stab_name (int code) 50 switch (code)
|
| /toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/ |
| app3.d | 2 #name: APP with macro then NO_APP then more code
|
| /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/ |
| pcrel.s | 4 code: label 16 .long code - .
|
| /external/python/cpython3/Lib/ |
| locale.py | 345 def _replace_encoding(code, encoding): 346 if '.' in code: 347 langname = code[:code.index('.')] 349 langname = code 368 def _append_modifier(code, modifier): 370 if '.' not in code: 371 return code + '.ISO8859-15' 372 _, _, encoding = code.partition('.') 374 return code [all...] |
| stringprep.py | 12 def in_table_a1(code): 13 if unicodedata.category(code) != 'Cn': return False 14 c = ord(code) 20 def in_table_b1(code): 21 return ord(code) in b1_set 189 def map_table_b3(code): 190 r = b3_exceptions.get(ord(code)) 192 return code.lower() 206 def in_table_c11(code): 207 return code == " [all...] |
| /external/javassist/src/test/test/javassist/bytecode/analysis/ |
| AnalyzerTest.java | 142 private static void addJump(Bytecode code, int opcode, int pos) { 143 int current = code.currentPc(); 144 code.addOpcode(opcode); 145 code.addIndex(pos - current); 167 fail("Invalid code should have triggered a BadBytecode exception"); 179 fail("Code falloff should have triggered a BadBytecode exception"); 202 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 203 /* 0 */ code.addIconst(1); 204 /* 1 */ addJump(code, Opcode.GOTO, 5); 205 /* 4 */ code.addIconst(0); // DEA 222 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 239 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 254 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 278 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local [all...] |
| /external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
| oauth_helpers.py | 2 # Use of this source code is governed by a BSD-style license that can be 23 response_type='code', 28 def get_oauth2_user_token(client_id, client_secret, code): 29 """Returns the oauth2 token for a user given the auth code.""" 32 data = dict(code=code, 46 def get_oauth2_robot_token(client_id, client_secret, code): 50 data = dict(code=code,
|
| /external/capstone/bindings/python/ |
| test_skipdata.py | 22 for (arch, mode, code, comment, syntax) in all_tests: 26 print(to_hex(code)) 27 for insn in cs_disasm_quick(arch, mode, code, 0x1000): 40 for (arch, mode, code, comment, syntax) in all_tests: 43 print("Code: %s" % to_hex(code)) 55 # the code below. 62 for insn in md.disasm(code, 0x1000): 64 #print("0x%x:\t%s\t%s\t// hex-code: %s" %(insn.address, insn.mnemonic, insn.op_str, bytes))
|
| /external/dtc/tests/ |
| add_subnode_with_nops.c | 34 #define CHECK(code) \ 36 err = (code); \ 38 FAIL(#code ": %s", fdt_strerror(err)); \ 41 #define OFF_CHECK(off, code) \ 43 (off) = (code); \ 45 FAIL(#code ": %s", fdt_strerror(off)); \
|
| /external/javassist/src/main/javassist/ |
| CtNewMethod.java | 24 * A collection of static methods for creating a <code>CtMethod</code>. 32 * Compiles the given source code and creates a method. 33 * The source code must include not only the method body 48 * Compiles the given source code and creates a method. 49 * The source code must include not only the method body 54 * <p>If the source code includes <code>$proceed()</code>, then 60 * that is called on by <code>$proceed()</code> 231 Bytecode code = new Bytecode(cp, 2, 1); local 272 Bytecode code = new Bytecode(cp, 3, 3); local 342 Bytecode code = new Bytecode(cp, 0, 0); local [all...] |
| /external/libcxx/test/std/thread/futures/futures.future_error/ |
| code.pass.cpp | 18 // const error_code& code() const throw(); 30 assert(f.code() == ec); 35 assert(f.code() == ec); 40 assert(f.code() == ec); 45 assert(f.code() == ec); 50 assert(f.code() == std::make_error_code(std::future_errc::broken_promise)); 54 assert(f.code() == std::make_error_code(std::future_errc::no_state));
|
| /external/python/cpython3/Lib/urllib/ |
| error.py | 9 responses, with a status code, headers, and a body. In some contexts, 43 def __init__(self, url, code, msg, hdrs, fp): 44 self.code = code 54 self.__super_init(fp, hdrs, url, code) 57 return 'HTTP Error %s: %s' % (self.code, self.msg) 60 return '<HTTPError %s: %r>' % (self.code, self.msg)
|
| /external/v8/src/ |
| perf-jit.h | 6 // * Redistributions of source code must retain the above copyright 45 void CodeDisableOptEvent(AbstractCode* code, 55 void LogRecordedBuffer(AbstractCode* code, SharedFunctionInfo* shared, 68 void LogWriteDebugInfo(Code* code, SharedFunctionInfo* shared); 69 void LogWriteUnwindingInfo(Code* code); 112 void CodeDisableOptEvent(AbstractCode* code, 117 void LogRecordedBuffer(AbstractCode* code, SharedFunctionInfo* shared,
|
| /external/vixl/examples/aarch64/ |
| literal.cc | 7 // * Redistributions of source code must retain the above copyright notice, 41 // Generate some code. 60 // Usually, compilers will move the code to another place in memory before 63 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size)); local 64 if (code == NULL) { 67 memcpy(code, masm.GetBuffer()->GetStartAddress<void*>(), code_size); 69 // Run the code. 74 automatically_placed_literal.UpdateValue(a, code); 75 manually_placed_literal.UpdateValue(b, code); 77 // Run the code again [all...] |
| /prebuilts/go/darwin-x86/test/fixedbugs/ |
| bug341.go | 4 // Use of this source code is governed by a BSD-style 8 // code for converting a negative float to a uint64. 21 [signal 0x8 code=0x6 addr=0x8048c64 pc=0x8048c64]
|
| issue12411.go | 5 // Use of this source code is governed by a BSD-style 21 // AX was live on entry to one of the % code generations, 22 // and the % code generation smashed it.
|
| /prebuilts/go/linux-x86/test/fixedbugs/ |
| bug341.go | 4 // Use of this source code is governed by a BSD-style 8 // code for converting a negative float to a uint64. 21 [signal 0x8 code=0x6 addr=0x8048c64 pc=0x8048c64]
|
| issue12411.go | 5 // Use of this source code is governed by a BSD-style 21 // AX was live on entry to one of the % code generations, 22 // and the % code generation smashed it.
|
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.future_error/ |
| code.pass.cpp | 18 // const error_code& code() const throw(); 30 assert(f.code() == ec); 35 assert(f.code() == ec); 40 assert(f.code() == ec); 45 assert(f.code() == ec); 50 assert(f.code() == std::make_error_code(std::future_errc::broken_promise)); 54 assert(f.code() == std::make_error_code(std::future_errc::no_state));
|
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| EncodedMethod.java | 19 import com.android.dexgen.dex.code.DalvCode; 20 import com.android.dexgen.rop.code.AccessFlags; 35 /** {@code non-null;} constant for the method */ 39 * {@code null-ok;} code for the method, if the method is neither 40 * {@code abstract} nor {@code native} 42 private final CodeItem code; field in class:EncodedMethod 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| EncodedMethod.java | 20 import com.android.dx.dex.code.DalvCode; 21 import com.android.dx.rop.code.AccessFlags; 34 /** {@code non-null;} constant for the method */ 38 * {@code null-ok;} code for the method, if the method is neither 39 * {@code abstract} nor {@code native} 41 private final CodeItem code; field in class:EncodedMethod 46 * @param method {@code non-null;} constant for the method 48 * @param code {@code null-ok;} code for the method, if it is neithe [all...] |