Home
last modified time | relevance | path

Searched defs:code (Results 1 – 25 of 2236) sorted by relevance

12345678910>>...90

/external/libxml2/
Dxmlunicode.c976 xmlUCSIsAegeanNumbers(int code) { in xmlUCSIsAegeanNumbers()
989 xmlUCSIsAlphabeticPresentationForms(int code) { in xmlUCSIsAlphabeticPresentationForms()
1002 xmlUCSIsArabic(int code) { in xmlUCSIsArabic()
1015 xmlUCSIsArabicPresentationFormsA(int code) { in xmlUCSIsArabicPresentationFormsA()
1028 xmlUCSIsArabicPresentationFormsB(int code) { in xmlUCSIsArabicPresentationFormsB()
1041 xmlUCSIsArmenian(int code) { in xmlUCSIsArmenian()
1054 xmlUCSIsArrows(int code) { in xmlUCSIsArrows()
1067 xmlUCSIsBasicLatin(int code) { in xmlUCSIsBasicLatin()
1080 xmlUCSIsBengali(int code) { in xmlUCSIsBengali()
1093 xmlUCSIsBlockElements(int code) { in xmlUCSIsBlockElements()
[all …]
/external/python/cpython2/Lib/
Dstringprep.py12 def in_table_a1(code): argument
20 def in_table_b1(code): argument
189 def map_table_b3(code): argument
206 def in_table_c11(code): argument
210 def in_table_c12(code): argument
213 def in_table_c11_c12(code): argument
217 def in_table_c21(code): argument
221 def in_table_c22(code): argument
227 def in_table_c21_c22(code): argument
232 def in_table_c3(code): argument
[all …]
/external/python/cpython3/Lib/
Dstringprep.py12 def in_table_a1(code): argument
20 def in_table_b1(code): argument
189 def map_table_b3(code): argument
206 def in_table_c11(code): argument
210 def in_table_c12(code): argument
213 def in_table_c11_c12(code): argument
217 def in_table_c21(code): argument
221 def in_table_c22(code): argument
227 def in_table_c21_c22(code): argument
232 def in_table_c3(code): argument
[all …]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DLexicalPreservingPrinterTest.java61 String code = "class A {int i;}"; in checkNodeTextCreatedForField() local
73 String code = "class A {int i;}"; in checkNodeTextCreatedForVariableDeclarator() local
86 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForMethod() local
98 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForMethodParameter() local
111 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForPrimitiveType() local
125 String code = "import a.b.c.D;"; in checkNodeTextCreatedForSimpleImport() local
136 String code = "class A {ParseResult<T> result;}"; in checkNodeTextCreatedGenericType() local
149 String code = "public @interface ClassPreamble { String author(); }"; in checkNodeTextCreatedAnnotationDeclaration() local
160 String code = "public @interface ClassPreamble { String author(); }"; in checkNodeTextCreatedAnnotationMemberDeclaration() local
172 String code = "public @interface ClassPreamble { String[] author(); }"; in checkNodeTextCreatedAnnotationMemberDeclarationWithArrayType() local
[all …]
/external/python/cpython3/Lib/xml/dom/
D__init__.py77 code = INDEX_SIZE_ERR variable in IndexSizeErr
80 code = DOMSTRING_SIZE_ERR variable in DomstringSizeErr
83 code = HIERARCHY_REQUEST_ERR variable in HierarchyRequestErr
86 code = WRONG_DOCUMENT_ERR variable in WrongDocumentErr
89 code = INVALID_CHARACTER_ERR variable in InvalidCharacterErr
92 code = NO_DATA_ALLOWED_ERR variable in NoDataAllowedErr
95 code = NO_MODIFICATION_ALLOWED_ERR variable in NoModificationAllowedErr
98 code = NOT_FOUND_ERR variable in NotFoundErr
101 code = NOT_SUPPORTED_ERR variable in NotSupportedErr
104 code = INUSE_ATTRIBUTE_ERR variable in InuseAttributeErr
[all …]
/external/python/cpython2/Lib/xml/dom/
D__init__.py76 code = INDEX_SIZE_ERR variable in IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in NoModificationAllowedErr
97 code = NOT_FOUND_ERR variable in NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in InuseAttributeErr
[all …]
/external/mesa3d/src/mesa/state_tracker/tests/
Dtest_glsl_to_tgsi_lifetime.cpp144 void RegisterLifetimeAndRemappingTest::run(const vector<CodeLine>& code, in run()
156 const vector<MockCodeline> code = { in TEST_F() local
166 const vector<MockCodeline> code = { in TEST_F() local
183 const vector<MockCodeline> code = { in TEST_F() local
199 const vector<MockCodeline> code = { in TEST_F() local
217 const vector<MockCodeline> code = { in TEST_F() local
237 const vector<MockCodeline> code = { in TEST_F() local
259 const vector<MockCodeline> code = { in TEST_F() local
281 const vector<MockCodeline> code = { in TEST_F() local
304 const vector<MockCodeline> code = { in TEST_F() local
[all …]
/external/proguard/src/proguard/classfile/instruction/
DInstruction.java901 public void write(byte[] code, int offset) in write()
930 protected abstract void readInfo(byte[] code, int offset); in readInfo()
936 protected abstract void writeInfo(byte[] code, int offset); in writeInfo()
1010 protected static int readByte(byte[] code, int offset) in readByte()
1015 protected static int readShort(byte[] code, int offset) in readShort()
1021 protected static int readInt(byte[] code, int offset) in readInt()
1029 protected static int readValue(byte[] code, int offset, int valueSize) in readValue()
1041 protected static int readSignedByte(byte[] code, int offset) in readSignedByte()
1046 protected static int readSignedShort(byte[] code, int offset) in readSignedShort()
1052 protected static int readSignedValue(byte[] code, int offset, int valueSize) in readSignedValue()
[all …]
/external/libjpeg-turbo/
Djerror.h31 #define JMESSAGE(code, string) argument
39 #define JMESSAGE(code, string) code, argument
230 #define ERREXIT(cinfo, code) \ argument
233 #define ERREXIT1(cinfo, code, p1) \ argument
237 #define ERREXIT2(cinfo, code, p1, p2) \ argument
242 #define ERREXIT3(cinfo, code, p1, p2, p3) \ argument
248 #define ERREXIT4(cinfo, code, p1, p2, p3, p4) \ argument
255 #define ERREXITS(cinfo, code, str) \ argument
263 #define WARNMS(cinfo, code) \ argument
266 #define WARNMS1(cinfo, code, p1) \ argument
[all …]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
DPrettyPrinterTest.java37 private String prettyPrintField(String code) { in prettyPrintField()
42 private String prettyPrintVar(String code) { in prettyPrintVar()
49 String code; in printingArrayFields() local
68 String code; in printingArrayVariables() local
85 private String prettyPrintConfigurable(String code) { in prettyPrintConfigurable()
93 String code; in printUseTestVisitor() local
106 …String code = "class Example { void foo(Object arg0,Object arg1){ myMethod(1, 2, 3, 5, Object.clas… in prettyColumnAlignParameters_enabled() local
127 …String code = "class Example { void foo(Object arg0,Object arg1){ myMethod(1, 2, 3, 5, Object.clas… in prettyColumnAlignParameters_disabled() local
147 …String code = "class Example { void foo() { IntStream.range(0, 10).filter(x -> x % 2 == 0).map(x -… in prettyAlignMethodCallChains_enabled() local
168 …String code = "class Example { void foo() { IntStream.range(0, 10).filter(x -> x % 2 == 0).map(x -… in prettyAlignMethodCallChains_disabled() local
/external/vixl/test/aarch64/
Dtest-utils-aarch64.h86 inline int32_t wreg(unsigned code) const { in wreg()
94 inline int64_t xreg(unsigned code) const { in xreg()
103 inline uint16_t hreg_bits(unsigned code) const { in hreg_bits()
108 inline uint32_t sreg_bits(unsigned code) const { in sreg_bits()
113 inline Float16 hreg(unsigned code) const { in hreg()
117 inline float sreg(unsigned code) const { in sreg()
121 inline uint64_t dreg_bits(unsigned code) const { in dreg_bits()
126 inline double dreg(unsigned code) const { in dreg()
130 inline vec128_t qreg(unsigned code) const { return dump_.q_[code]; } in qreg()
159 bool RegAliasesMatch(unsigned code) const { in RegAliasesMatch()
[all …]
/external/flatbuffers/src/
Didl_gen_php.cpp67 auto &code = *code_ptr; in BeginFile() local
89 std::string code = ""; in SaveType() local
101 std::string &code = *code_ptr; in BeginClass() local
111 std::string &code = *code_ptr; in EndClass() local
117 std::string &code = *code_ptr; in BeginEnum() local
123 std::string &code = *code_ptr; in EnumMember() local
132 std::string &code = *code_ptr; in EndEnum() local
139 std::string &code = *code_ptr; in NewRootTypeFromBuffer() local
160 std::string &code = *code_ptr; in InitializeExisting() local
177 std::string &code = *code_ptr; in GetVectorLen() local
[all …]
Didl_gen_go.cpp103 std::string code = ""; in generate() local
127 std::string &code = *code_ptr; in BeginClass() local
144 std::string &code = *code_ptr; in GenEnumType() local
151 std::string &code = *code_ptr; in BeginEnum() local
158 std::string &code = *code_ptr; in EnumMember() local
170 std::string &code = *code_ptr; in EndEnum() local
176 std::string &code = *code_ptr; in BeginEnumNames() local
185 std::string &code = *code_ptr; in EnumNameMember() local
196 std::string &code = *code_ptr; in EndEnumNames() local
203 std::string &code = *code_ptr; in NewRootTypeFromBuffer() local
[all …]
Didl_gen_python.cpp90 std::string &code = *code_ptr; in BeginClass() local
98 std::string &code = *code_ptr; in BeginEnum() local
116 std::string &code = *code_ptr; in EnumMember() local
125 std::string &code = *code_ptr; in EndEnum() local
132 std::string &code = *code_ptr; in NewRootTypeFromBuffer() local
151 std::string &code = *code_ptr; in InitializeExisting() local
162 std::string &code = *code_ptr; in GetVectorLen() local
175 std::string &code = *code_ptr; in GetScalarFieldOfStruct() local
188 std::string &code = *code_ptr; in GetScalarFieldOfTable() local
216 std::string &code = *code_ptr; in GetStructFieldOfStruct() local
[all …]
Didl_gen_lua.cpp83 std::string &code = *code_ptr; in BeginClass() local
91 std::string &code = *code_ptr; in BeginEnum() local
113 std::string &code = *code_ptr; in EnumMember() local
119 std::string &code = *code_ptr; in EndEnum() local
125 std::string &code = *code_ptr; in GenerateNewObjectPrototype() local
137 std::string &code = *code_ptr; in NewRootTypeFromBuffer() local
150 std::string &code = *code_ptr; in InitializeExisting() local
161 std::string &code = *code_ptr; in GetVectorLen() local
176 std::string &code = *code_ptr; in GetScalarFieldOfStruct() local
190 std::string &code = *code_ptr; in GetScalarFieldOfTable() local
[all …]
/external/chromium-trace/catapult/common/eslint/tests/
Dcatapult-camelcase.js51 code: "var o = {key: 1}", property
55 code: "var o = {bar_baz: 1}", property
59 code: "obj.a_b = 2;", property
63 code: "var obj = {\n a_a: 1 \n};\n obj.a_b = 2;", property
67 code: "obj.foo_bar = function(){};", property
71 code: "var { category_id: category } = query;", property
75 code: "var { category_id: category } = query;", property
80 code: "import { camelCased } from \"external module\";", property
84 code: "import { no_camelcased as camelCased } from \"external-module\";", property
88code: "import { no_camelcased as camelCased, anoterCamelCased } from \"external-module\";", property
[all …]
/external/harfbuzz_ng/src/hb-ucdn/
Ducdn.c58 static const UCDRecord *get_ucd_record(uint32_t code) in get_ucd_record()
75 static const unsigned short *get_decomp_record(uint32_t code) in get_decomp_record()
106 static int get_comp_index(uint32_t code, const Reindex *idx, size_t len) in get_comp_index()
133 static BracketPair *search_bp(uint32_t code) in search_bp()
144 static int hangul_pair_decompose(uint32_t code, uint32_t *a, uint32_t *b) in hangul_pair_decompose()
164 static int hangul_pair_compose(uint32_t *code, uint32_t a, uint32_t b) in hangul_pair_compose()
183 const unsigned short *code = *code_ptr; in decode_utf16() local
200 int ucdn_get_combining_class(uint32_t code) in ucdn_get_combining_class()
205 int ucdn_get_east_asian_width(uint32_t code) in ucdn_get_east_asian_width()
210 int ucdn_get_general_category(uint32_t code) in ucdn_get_general_category()
[all …]
/external/strace/
Dioctl.c45 ioctl_lookup(const unsigned int code) in ioctl_lookup()
64 const unsigned int code = iop->code; in ioctl_next_match() local
72 ioctl_print_code(const unsigned int code) in ioctl_print_code()
81 evdev_decode_number(const unsigned int code) in evdev_decode_number()
148 hiddev_decode_number(const unsigned int code) in hiddev_decode_number()
186 const unsigned int code = tcp->u_arg[1]; in ioctl_decode_command_number() local
255 const unsigned int code = tcp->u_arg[1]; in ioctl_decode() local
/external/v8/src/arm64/
Dassembler-arm64-inl.h89 inline void CPURegList::Combine(int code) { in Combine()
96 inline void CPURegList::Remove(int code) { in Remove()
103 inline Register Register::XRegFromCode(unsigned code) { in XRegFromCode()
113 inline Register Register::WRegFromCode(unsigned code) { in WRegFromCode()
122 inline VRegister VRegister::BRegFromCode(unsigned code) { in BRegFromCode()
127 inline VRegister VRegister::HRegFromCode(unsigned code) { in HRegFromCode()
132 inline VRegister VRegister::SRegFromCode(unsigned code) { in SRegFromCode()
137 inline VRegister VRegister::DRegFromCode(unsigned code) { in DRegFromCode()
142 inline VRegister VRegister::QRegFromCode(unsigned code) { in QRegFromCode()
147 inline VRegister VRegister::VRegFromCode(unsigned code) { in VRegFromCode()
/external/capstone/suite/
Dbenchmark.py56 def cs(md, code): argument
65 def cs_lite(md, code): argument
94 code = get_code(cfile, 128) variable
102 code = get_code(cfile, 128) variable
116 code = get_code(cfile, 128) variable
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DDumpArchiveConstants.java50 int code; field in DumpArchiveConstants.SEGMENT_TYPE
52 SEGMENT_TYPE(final int code) { in SEGMENT_TYPE()
56 public static SEGMENT_TYPE find(final int code) { in find()
75 int code; field in DumpArchiveConstants.COMPRESSION_TYPE
77 COMPRESSION_TYPE(final int code) { in COMPRESSION_TYPE()
81 public static COMPRESSION_TYPE find(final int code) { in find()
/external/libunwind/src/ia64/
Dunwind_decoder.h107 unw_decode_x1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x1()
124 unw_decode_x2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x2()
142 unw_decode_x3 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x3()
162 unw_decode_x4 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x4()
183 unw_decode_r1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r1()
194 unw_decode_r2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r2()
209 unw_decode_r3 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r3()
219 unw_decode_p1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_p1()
228 unw_decode_p2_p5 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_p2_p5()
277 unw_decode_p6 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_p6()
[all …]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
DJavaParserTest.java54 String code = "@interface AD { String foo(); }"; in rangeOfAnnotationMemberDeclarationIsCorrect() local
63 String code = "@interface AD { String[] foo(); }"; in rangeOfAnnotationMemberDeclarationWithArrayTypeIsCorrect() local
72 String code = "new int[123][456]"; in rangeOfArrayCreationLevelWithExpressionIsCorrect() local
87 String code = "new int[][]"; in rangeOfArrayCreationLevelWithoutExpressionIsCorrect() local
112 String code = "(Runnable & Serializable) (() -> {})"; in parseIntersectionType() local
127 String code = "class A {" + EOL in rangeOfIntersectionType() local
141 String code = "class A {" + EOL in rangeOfCast() local
154 String code = "class A {" + EOL in rangeOfCastNonIntersection() local
167 String code = "class A {" + EOL in rangeOfLambda() local
183 String code = "class A {" + EOL in rangeOfLambdaBody() local
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DJavaParserFacadeResolutionTest.java60 String code = "public class Bla {\n" + in solvingReferenceToUnsupportedOperationException() local
82 String code = "public class Bla {\n" + in solvingReferenceToCatchClauseParam() local
108 String code = "public class Foo {\n" + in solvingReferenceToAnAncestorInternalClass() local
127 …String code = "import java.util.Scanner; class A { void foo() { try (Scanner sc = new Scanner(Syst… in solveTryWithResourceVariable() local
138 private CompilationUnit parseWithTypeSolver(String code) { in parseWithTypeSolver()
148 String code = "class A {\n" + in solveMultiCatchType() local
/external/android-clat/
Dicmp.c59 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code) { in icmp_to_icmp6_type()
87 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code) { in icmp_to_icmp6_code()
122 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code) { in icmp6_to_icmp_type()
147 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code) { in icmp6_to_icmp_code()

12345678910>>...90