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

<<21222324252627282930>>

  /device/google/contexthub/firmware/os/platform/stm32/lkr/
stm32f412.map.lkr 21 code : ORIGIN = 0x0800C000, LENGTH = 208K /* 16K block + 64K block + 128K block */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
ftp.py 13 # When a response code 150 is received, this port is used to receive
58 code = getreply(f)
59 if code in ('221', 'EOF'): break
60 if code == '150':
62 code = getreply(f)
98 code = getreply(f)
101 # Process an ftp reply and return the 3-digit reply code (as a string).
111 code = line[:3]
117 if line[:3] == code and line[3:4] != '-': break
118 return code
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
gencjkcodecs.py 60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
64 open(codecpath, 'w').write(code)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/
CpuFlushCache.S 26 .code:
53 #Status code
  /external/chromium-libpac/test/js-unittest/
binding_from_global.js 1 // Calls a bindings outside of FindProxyForURL(). This causes the code to
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
opacity-filter.css 11 code {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
TimeUnit.java 29 TimeUnit(String type, String code) {
30 super(type, code);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
TimeUnit.java 30 TimeUnit(String type, String code) {
31 super(type, code);
  /external/iproute2/include/
bpf_util.h 2 * bpf_util.h BPF common code
72 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
80 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
90 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
98 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
108 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
116 .code = BPF_ALU | BPF_MOV | BPF_X, \
126 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
134 .code = BPF_ALU | BPF_MOV | BPF_K, \
146 .code = BPF_LD | BPF_DW | BPF_IMM,
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
Example.java 17 String code = "interface A {\n" + local
26 InputStream stream = new ByteArrayInputStream(code.getBytes("UTF-8"));
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
EnumConstantDeclarationTransformationsTest.java 36 protected EnumConstantDeclaration consider(String code) {
37 considerCode("enum A { " + code + " }");
  /external/libbrillo/brillo/errors/
error.h 2 // Use of this source code is governed by a BSD-style license that can be
28 const std::string& code,
32 const std::string& code,
41 const std::string& code,
48 const std::string& code,
55 // Returns the error domain, code and message
60 // Returns the location of the error in the source code.
70 // specified error domain and code.
71 bool HasError(const std::string& domain, const std::string& code) const;
88 // Finds an error of particular domain with the given code in the error chai
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
unlock.pass.cpp 48 assert(e.code().value() == EPERM);
60 assert(e.code().value() == EPERM);
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
unlock.pass.cpp 47 assert(e.code().value() == EPERM);
59 assert(e.code().value() == EPERM);
  /external/libffi/testsuite/libffi.call/
cls_complex.inc 23 void *code;
24 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
35 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_complex_fn, NULL, code) == FFI_OK);
37 res = (*((cls_ret_complex)code))(0.125 + 128.0 * I);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.h 89 lp_disassemble(LLVMValueRef func, const void *code);
93 lp_profile(LLVMValueRef func, const void *code);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
AbstractGroovyTestCase.groovy 49 * Assert that the specified code throws an exception of the specified type.
51 * @param code - the Closure containing the code to be executed, which is expected to throw an exception of the specified type
54 * @throws AssertionError - if no exception is thrown by the code or if the thrown exception is not of the expected type
56 protected Throwable shouldThrow(Class expectedExceptionClass, Closure code) {
59 code.call()
69 * Assert that the specified code throws an exception with an error message
72 * @param code - the Closure containing the code to be executed, which is expected to throw an exception of the specified type
75 * @throws AssertionError - if no exception is thrown by the code or if the throw
    [all...]
  /external/nos/test/system-test-harness/tools/
nugget_tools.h 12 #define ASSERT_NO_ERROR(code, msg) \
14 int value = code; \
  /external/python/cpython2/Demo/sockets/
ftp.py 13 # When a response code 150 is received, this port is used to receive
58 code = getreply(f)
59 if code in ('221', 'EOF'): break
60 if code == '150':
62 code = getreply(f)
98 code = getreply(f)
101 # Process an ftp reply and return the 3-digit reply code (as a string).
111 code = line[:3]
117 if line[:3] == code and line[3:4] != '-': break
118 return code
    [all...]
  /external/python/cpython2/Tools/unicode/
gencjkcodecs.py 60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
64 open(codecpath, 'w').write(code)
  /external/python/cpython3/Tools/unicode/
gencjkcodecs.py 60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
64 open(codecpath, 'w').write(code)
  /external/strace/
native_printer_decls.h 2 extern int block_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
3 extern int btrfs_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
4 extern int evdev_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
17 extern int hdio_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
18 extern int loop_ioctl(struct tcb *tcp, const unsigned int code, const kernel_ulong_t arg);
19 extern int mtd_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
41 extern int rtc_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
43 extern int sock_ioctl(struct tcb *tcp, const unsigned int code, const kernel_ulong_t arg);
44 extern int v4l2_ioctl(struct tcb *const tcp, const unsigned int code, const kernel_ulong_t arg);
nsfs.c 10 * 1. Redistributions of source code must retain the above copyright
34 nsfs_ioctl(struct tcb *tcp, unsigned int code, kernel_ulong_t arg)
37 switch (code) {
  /external/tensorflow/tensorflow/contrib/rnn/ops/
gru_ops_test.cc 30 TF_Code code = TF_GetCode(status); local
33 ASSERT_EQ(TF_OK, code) << status_msg;
  /external/v8/src/ic/arm/
access-compiler-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
16 Handle<Code> code) {
17 __ Jump(code, RelocInfo::CODE_TARGET);

Completed in 1856 milliseconds

<<21222324252627282930>>