| /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/ |
| InitializerDeclarationTransformationsTest.java | 35 protected InitializerDeclaration consider(String code) { 36 considerCode("class A { " + code + " }");
|
| /external/libcxx/test/std/re/re.grammar/ |
| excessive_brace_count.pass.cpp | 27 assert(e.code() == std::regex_constants::error_badbrace); 37 assert(e.code() == std::regex_constants::error_badbrace);
|
| /external/libcxx/test/std/thread/futures/futures.promise/ |
| get_future.pass.cpp | 43 assert(e.code() == make_error_code(std::future_errc::future_already_retrieved)); 56 assert(e.code() == make_error_code(std::future_errc::no_state));
|
| /external/libcxx/test/std/thread/futures/futures.task/futures.task.members/ |
| get_future.pass.cpp | 53 assert(e.code() == make_error_code(std::future_errc::future_already_retrieved)); 65 assert(e.code() == make_error_code(std::future_errc::no_state));
|
| /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
| try_lock.pass.cpp | 52 assert(e.code().value() == EDEADLK); 68 assert(e.code().value() == EPERM);
|
| /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
| try_lock.pass.cpp | 51 assert(e.code().value() == EDEADLK); 67 assert(e.code().value() == EPERM);
|
| /external/libffi/testsuite/libffi.call/ |
| cls_complex_struct.inc | 32 void *code; 33 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code); 56 CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_gn, NULL, code) == FFI_OK); 60 ((void*(*)(Cs))(code))(arg);
|
| /external/libpcap/ |
| bpf_dump.c | 6 * modification, are permitted provided that: (1) source code distributions 8 * distributions including binary code include the above copyright notice and 40 printf("%u %u %u %u\n", insn->code, 48 insn->code, insn->jt, insn->jf, insn->k);
|
| /external/libxcam/ |
| autogen.sh | 7 ln -s ../../tools/pre-commit-code-style.sh $pre_commit_hook 8 echo "link $pre_commit_hook to code style check"
|
| /external/llvm/test/MC/ARM/ |
| mode-switch.s | 1 @ Test ARM / Thumb mode switching with .code 5 .code 16 9 .code 32 13 .code 16
|
| /external/llvm/utils/lit/lit/ |
| LitTestCase.py | 31 if result.code is lit.Test.UNRESOLVED: 33 elif result.code.isFailure:
|
| /external/lz4/examples/ |
| simple_buffer.c | 19 void run_screaming(const char *message, const int code) { 21 exit(code); 32 // 1) The return codes of LZ4_ functions are important. Read lz4.h if you're unsure what a given code means. 54 run_screaming("A negative result from LZ4_compress_default indicates a failure trying to compress the data. See exit code (echo $?) for value returned.", return_value); 76 run_screaming("A negative result from LZ4_decompress_fast indicates a failure trying to decompress the data. See exit code (echo $?) for value returned.", return_value);
|
| /external/mesa3d/src/compiler/glsl/glcpp/tests/ |
| 114-paste-integer-tokens.c | 4 4. HTTP code for Not Found: PASTE3(__LINE__, __FILE__ , __LINE__) 6 6: Zip code for Nortonville, KS: PASTE5(__LINE__, __LINE__, __FILE__, __LINE__, __FILE__)
|
| /external/mesa3d/src/egl/main/ |
| egldriver.h | 52 #define _EGL_DRIVER_TYPECAST(drvtype, egltype, code) \ 54 { return (struct drvtype *) code; }
|
| /external/mesa3d/src/gallium/drivers/r300/ |
| r300_fs.h | 34 struct rX00_fragment_program_code code; member in struct:r300_fragment_shader_code 84 return (fs->shader->code.writes_depth) ? TRUE : FALSE;
|
| /external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/ |
| native.cpp | 26 /// Generate code using an arbitrary LLVM back-end capable of emitting 27 /// executable code as an ELF object file. 49 get(const std::vector<char> &code) { 54 return { elf_memory(const_cast<char *>(code.data()), code.size()), 97 get_symbol_offsets(const std::vector<char> &code, std::string &r_log) { 98 const auto elf = elf::get(code); 149 const auto code = emit_code(mod, target, local 151 return build_module_common(mod, code, get_symbol_offsets(code, r_log), c) [all...] |
| /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
| StatCommandHandler.java | 26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
local 60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
|
| UserCommandHandler.java | 25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
local 59 sendReply(session, code, replyMessageKey, replyText, null);
|
| /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
| StatCommandHandler.java | 26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
local 65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
|
| /external/python/cpython2/Tools/compiler/ |
| demo.py | 19 self.visit(node.code, node.name) 24 self.visit(node.code, None)
|
| /external/python/cpython3/Lib/test/ |
| test_utf8source.py | 34 code = compile(source_code, '<dummy>', 'exec') 38 exec(code, ns)
|
| /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/ |
| RoboIntentSender.java | 22 @Override public void sendIntent(Context context, int code, Intent intent, 26 pendingIntent.send(context, code, intent);
|
| /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
| ShadowBinderBridge.java | 21 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { 23 ClassParameter.from(int.class, code),
|
| /external/skia/src/gpu/ccpr/ |
| GrCCTriangleShader.h | 4 * Use of this source code is governed by a BSD-style license that can be 20 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code, 35 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
|
| /external/skqp/src/gpu/ccpr/ |
| GrCCTriangleShader.h | 4 * Use of this source code is governed by a BSD-style license that can be 20 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code, 35 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
|