Searched refs:code (Results 51 - 75 of 4188) sorted by relevance

1234567891011>>

/external/skqp/experimental/docs/
H A Dutilities.js13 function isAlpha(code) {
14 return (code > 64 && code < 91) // upper alpha (A-Z)
15 || (code > 96 && code < 123); // lower alpha (a-z)
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
H A DPrettyPrinterTest.java37 private String prettyPrintField(String code) { argument
38 CompilationUnit cu = parse(code);
42 private String prettyPrintVar(String code) { argument
43 CompilationUnit cu = parse(code);
49 String code;
50 code = "class A { int a, b[]; }";
51 assertEquals("int a, b[];", prettyPrintField(code));
53 code = "class A { int[] a[], b[]; }";
54 assertEquals("int[][] a, b;", prettyPrintField(code));
56 code
85 prettyPrintConfigurable(String code) argument
[all...]
/external/ImageMagick/MagickCore/
H A Dtoken-private.h98 code; local
113 code=(int) (*text++) & 0xff;
114 unicode=code;
117 if ((code & utf_info[i].code_mask) == utf_info[i].code_value)
157 static inline MagickBooleanType IsUTFSpace(int code) argument
159 if (((code >= 0x0009) && (code <= 0x000d)) || (code == 0x0020) ||
160 (code == 0x0085) || (code
168 IsUTFValid(int code) argument
180 IsUTFAscii(int code) argument
[all...]
/external/iptables/include/linux/
H A Dfilter.h13 * Current version of the filter code architecture.
20 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
39 #define BPF_CLASS(code) ((code) & 0x07)
50 #define BPF_SIZE(code) ((code) & 0x18)
54 #define BPF_MODE(code) ((code)
[all...]
/external/iproute2/include/uapi/linux/
H A Dfilter.h14 * Current version of the filter code architecture.
21 * the BPF code definitions which need to match so you can share filters
25 __u16 code; /* Actual filter code */ member in struct:sock_filter
37 #define BPF_RVAL(code) ((code) & 0x18)
41 #define BPF_MISCOP(code) ((code) & 0xf8)
49 #define BPF_STMT(code, k) { (unsigned short)(code),
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dast.py8 code, as well as generating Python from AST nodes"""
14 """represents information about a string containing Python code"""
15 def __init__(self, code, **exception_kwargs):
16 self.code = code
19 # the code
29 # using AST to parse instead of using code.co_varnames,
30 # code.co_names has several advantages:
32 # its declared later in the same block of code
36 if isinstance(code, compa
[all...]
/external/libmojo/mojo/public/js/
H A Dcore.js2 // Use of this source code is governed by a BSD-style license that can be
7 // Note: This file is for documentation purposes only. The code here is not
140 * @return {MojoResult} Result code.
142 function close(handle) { [native code] }
151 * @return {MojoResult} Result code.
153 function wait(handle, signals, deadline) { [native code] }
165 * @return {MojoResult} Result code.
167 function waitMany(handles, signals, deadline) { [native code] }
181 function createMessagePipe(optionsDict) { [native code] }
192 * @return {MojoResult} Result code
[all...]
/external/flatbuffers/src/
H A Didl_gen_go.cpp17 // independent from idl_parser, since this code is not needed for most clients
72 // this is the prefix code for that.
81 std::string &code = *code_ptr; local
83 code += "type " + struct_def.name + " struct {\n\t";
86 code += "_tab ";
87 code += struct_def.fixed ? "flatbuffers.Struct" : "flatbuffers.Table";
88 code += "\n}\n\n";
91 // Begin enum code with a class declaration.
93 std::string &code = *code_ptr; local
94 code
100 std::string &code = *code_ptr; local
110 std::string &code = *code_ptr; local
116 std::string &code = *code_ptr; local
125 std::string &code = *code_ptr; local
136 std::string &code = *code_ptr; local
143 std::string &code = *code_ptr; local
160 std::string &code = *code_ptr; local
173 std::string &code = *code_ptr; local
191 std::string &code = *code_ptr; local
204 std::string &code = *code_ptr; local
217 std::string &code = *code_ptr; local
231 std::string &code = *code_ptr; local
247 std::string &code = *code_ptr; local
267 std::string &code = *code_ptr; local
290 std::string &code = *code_ptr; local
303 std::string &code = *code_ptr; local
318 std::string &code = *code_ptr; local
342 std::string &code = *code_ptr; local
365 std::string &code = *code_ptr; local
392 std::string &code = *code_ptr; local
402 std::string &code = *code_ptr; local
411 std::string &code = *code_ptr; local
432 std::string &code = *code_ptr; local
440 std::string &code = *code_ptr; local
453 std::string &code = *code_ptr; local
481 std::string &code = *code_ptr; local
497 std::string &code = *code_ptr; local
505 std::string &code = *code_ptr; local
560 std::string &code = *code_ptr; local
574 std::string &code = *code_ptr; local
785 std::string code = ""; local
786 BeginFile(LastNamespacePart(go_namespace_), true, &code); local
799 std::string &code = *code_ptr; local
819 std::string code = ""; local
820 BeginFile(LastNamespacePart(ns), needs_imports, &code); local
[all...]
/external/clang/test/Driver/
H A Doutput-file-cleanup.c25 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/
H A DLocal.java19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) { argument
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) { argument
36 return new Local<T>(code, type);
59 code.initializeLocals();
/external/eigen/Eigen/src/Core/util/
H A DNonMPL2.h2 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
/external/junit/src/main/java/org/junit/internal/
H A DRealSystem.java11 public void exit(int code) { argument
12 System.exit(code);
/external/mesa3d/src/mapi/
H A Dentry_x86_tsd.h83 char *code = (char *) entry; local
85 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
86 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
93 void *code; local
96 code = u_execmem_alloc(X86_ENTRY_SIZE);
97 if (!code)
100 memcpy(code, code_templ, X86_ENTRY_SIZE);
101 entry = (mapi_func) code;
/external/tensorflow/tensorflow/tools/docker/
H A Dsimple_console.py22 import code namespace
28 code.interact()
/external/tensorflow/tensorflow/tools/pip_package/
H A Dsimple_console.py22 import code namespace
28 code.interact()
H A Dsimple_console_for_windows.py22 import code namespace
28 code.interact()
/external/valgrind/none/tests/x86/
H A Dsmc1.c2 /* 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[
[all...]
/external/android-clat/
H A Dicmp.h34 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/annotation-tools/asmx/test/perf/org/objectweb/asm/
H A DSERPPerfTest.java9 * 1. Redistributions of source code must retain the above copyright
67 Code code = methods[i].getCode(false);
68 if (code != null) {
69 while (code.hasNext()) {
70 code.next();
73 code.calculateMaxStack();
74 code.calculateMaxLocals();
98 Code code = m.getCode(false);
99 if (code != null) {
100 code
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DSimpleFilter.java13 int code(byte[] buf, int off, int len); method in interface:SimpleFilter
/external/syslinux/com32/gpllib/dmi/
H A Ddmi_ipmi.c22 * 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) argument
43 if (code <= 0x04)
44 return type[code];
/external/vixl/tools/test_generator/
H A Ddata_types.py7 # * Redistributions of source code must retain the above copyright notice,
66 Generate code to declare the operand `struct Operands`.
73 Generate code to instantiate the operand from inside a `kTests` loop, with
112 Generate code to declare the operand as a single member in
120 Generate code to instantiate the operand as a single local variable.
122 code = "{type_name} {name} = kTests[i].operands.{name};"
123 return code.format(type_name=self.type_name, name=self.name)
212 Return a string describing what C++ code to emit before the instruction
220 Return a string describing what C++ code to emit after the instruction under
228 Generate code t
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_peepholer.py27 code = compile(line, '', 'single')
28 self.assertInBytecode(code, 'COMPARE_OP', cmp_op)
71 code = compile(line,'','single')
72 self.assertInBytecode(code, elem)
73 self.assertNotInBytecode(code, 'BUILD_TUPLE')
74 self.assertNotInBytecode(code, 'UNPACK_TUPLE')
84 code = compile(line,'','single')
85 self.assertInBytecode(code, 'LOAD_CONST', elem)
86 self.assertNotInBytecode(code, 'BUILD_TUPLE')
89 code
[all...]
/external/harfbuzz_ng/src/hb-ucdn/
H A Ducdn.c58 static const UCDRecord *get_ucd_record(uint32_t code) argument
62 if (code >= 0x110000)
65 index = index0[code >> (SHIFT1+SHIFT2)] << SHIFT1;
66 offset = (code >> SHIFT2) & ((1<<SHIFT1) - 1);
68 offset = code & ((1<<SHIFT2) - 1);
75 static const unsigned short *get_decomp_record(uint32_t code) argument
79 if (code >= 0x110000)
82 index = decomp_index0[code >> (DECOMP_SHIFT1+DECOMP_SHIFT2)]
84 offset = (code >> DECOMP_SHIFT2) & ((1<<DECOMP_SHIFT1) - 1);
86 offset = code
106 get_comp_index(uint32_t code, const Reindex *idx, size_t len) argument
133 search_bp(uint32_t code) argument
144 hangul_pair_decompose(uint32_t code, uint32_t *a, uint32_t *b) argument
164 hangul_pair_compose(uint32_t *code, uint32_t a, uint32_t b) argument
183 const unsigned short *code = *code_ptr; local
200 ucdn_get_combining_class(uint32_t code) argument
205 ucdn_get_east_asian_width(uint32_t code) argument
210 ucdn_get_general_category(uint32_t code) argument
215 ucdn_get_bidi_class(uint32_t code) argument
220 ucdn_get_mirrored(uint32_t code) argument
225 ucdn_get_script(uint32_t code) argument
230 ucdn_get_linebreak_class(uint32_t code) argument
235 ucdn_get_resolved_linebreak_class(uint32_t code) argument
266 ucdn_mirror(uint32_t code) argument
281 ucdn_paired_bracket(uint32_t code) argument
290 ucdn_paired_bracket_type(uint32_t code) argument
299 ucdn_decompose(uint32_t code, uint32_t *a, uint32_t *b) argument
323 ucdn_compose(uint32_t *code, uint32_t a, uint32_t b) argument
346 ucdn_compat_decompose(uint32_t code, uint32_t *decomposed) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java37 Bytecode code = makeBody(declaring, declaring.getClassFile2(),
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0);
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)
[all...]

Completed in 903 milliseconds

1234567891011>>