Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 7548) sorted by relevance

12345678910>>...302

/third_party/typescript/tests/baselines/reference/
DconditionalEqualityOnLiteralObjects.js2 const a = { a: 1 } property
5 if ({ a: 1 } === { a: 1 }) { property
9 if (a === { a: 1 }) { property
13 if ({ a: 1 } === a) { property
18 if ({ a: 1 } !== { a: 1 }) { property
22 if (a !== { a: 1 }) { property
26 if ({ a: 1 } !== a) { property
31 if ({ a: 1 } == { a: 1 }) { property
35 if (a == { a: 1 }) { property
39 if ({ a: 1 } == a) { property
[all …]
DobjectLiteralErrors.js3 var e1 = { a: 0, a: 0 }; property
4 var e2 = { a: '', a: '' }; property
5 var e3 = { a: 0, a: '' }; property
6 var e4 = { a: true, a: false }; property
7 var e5 = { a: {}, a: {} }; property
8 var e6 = { a: 0, 'a': 0 }; property
9 var e7 = { 'a': 0, a: 0 }; property
10 var e8 = { 'a': 0, "a": 0 }; property
11 var e9 = { 'a': 0, 'a': 0 }; property
12 var e10 = { "a": 0, 'a': 0 }; property
[all …]
DconstantEnumAssert.js24 a: 'a', property
28 const foo1 = { a: E1.a } property
30 const foo2 = { a: E2.a } property
32 const foo3 = { a: E1.a } as const property
34 const foo4 = { a: E2.a } as const property
36 const foo5 = { a: E3.a } as const property
38 const foo6 = { a: E4.a } as const property
40 const foo7 = { a: E5.a } as const property
42 const foo8 = { a: E1.a as const } property
44 const foo9 = { a: E2.a as const } property
[all …]
DrenamingDestructuredPropertyInFunctionType.js4 type O = { a?: string; b: number; c: number; }; field
6 type F2 = ({ a: string }: O) => any; // Error property
7 type F3 = ({ a: string, b, c }: O) => any; // Error property
8 type F4 = ({ a: string }: O) => any; // Error property
9 type F5 = ({ a: string, b, c }: O) => any; // Error property
10 type F6 = ({ a: string }) => typeof string; // OK property
11 type F7 = ({ a: string, b: number }) => typeof number; // Error property
12 type F8 = ({ a, b: number }) => typeof number; // OK property
16 type G2 = new ({ a: string }: O) => any; // Error property
17 type G3 = new ({ a: string, b, c }: O) => any; // Error property
[all …]
DoverloadResolutionTest1.js2 function foo(bar:{a:number;}[]):string; property
3 function foo(bar:{a:boolean;}[]):number; property
4 function foo(bar:{a:any;}[]):any{ return bar }; property
6 var x1 = foo([{a:true}]); // works property
7 var x11 = foo([{a:0}]); // works property
8 var x111 = foo([{a:"s"}]); // error - does not match any signature property
9 var x1111 = foo([{a:null}]); // works - ambiguous call is resolved to be the first in the overload … property
13 function foo2(bar:{a:number;}):string; property
14 function foo2(bar:{a:boolean;}):number; property
15 function foo2(bar:{a:any;}):any{ return bar }; property
[all …]
DspreadDuplicate.js11 let a1 = { a: 123, ...a }; // string (Error) property
12 let b1 = { a: 123, ...b }; // string | number property
13 let c1 = { a: 123, ...c }; // string | undefined (Error) property
14 let d1 = { a: 123, ...d }; // string | number property
16 let a2 = { a: 123, ...(t ? a : {}) }; // string | number property
17 let b2 = { a: 123, ...(t ? b : {}) }; // string | number property
18 let c2 = { a: 123, ...(t ? c : {}) }; // string | number property
19 let d2 = { a: 123, ...(t ? d : {}) }; // string | number property
36 var a1 = __assign({ a: 123 }, a); // string (Error) property
37 var b1 = __assign({ a: 123 }, b); // string | number property
[all …]
DspreadDuplicateExact.js11 let a1 = { a: 123, ...a }; // string (Error) property
12 let b1 = { a: 123, ...b }; // string | number property
13 let c1 = { a: 123, ...c }; // string | undefined (Error) property
14 let d1 = { a: 123, ...d }; // string | number | undefined property
16 let a2 = { a: 123, ...(t ? a : {}) }; // string | number property
17 let b2 = { a: 123, ...(t ? b : {}) }; // string | number property
18 let c2 = { a: 123, ...(t ? c : {}) }; // string | number | undefined property
19 let d2 = { a: 123, ...(t ? d : {}) }; // string | number | undefined property
36 var a1 = __assign({ a: 123 }, a); // string (Error) property
37 var b1 = __assign({ a: 123 }, b); // string | number property
[all …]
DduplicateObjectLiteralProperty.js3 a: 1, property
5 a: 56, // Duplicate property
6 \u0061: "ss", // Duplicate property
7 a: { property
15 get a() { return 0; }, getter
16 set a(v: number) { }, setter
17 get a() { return 0; } getter
23 a: 1, property
25 a: 56, property
26 \u0061: "ss",
[all …]
DreadonlyPropertySubtypeRelationDirected.js6 const two: { a: string } = { a: 'two' }; property
7 const one: { readonly a: string } = { a: 'one' }; property
25 const two: { a: string } = { a: 'two' }; property
26 const one: { readonly a: string } = { a: 'one' }; property
45 const one: { readonly a: string } = { a: 'one' }; property
46 const two: { a: string } = { a: 'two' }; property
65 const one: { readonly a: string } = { a: 'one' }; property
66 const two: { a: string } = { a: 'two' }; property
86 var two = { a: 'two' }; property
87 var one = { a: 'one' }; property
[all …]
DdownlevelLetConst16.js17 let {a: z} = {a: 1}; property
27 let {a: z} = { a: 1 }; property
39 let {a: z} = { a: 1 }; property
48 let {a: z} = { a: 1 }; property
62 const {a: z} = { a: 1 }; property
72 const {a: z} = { a: 1 }; property
85 const {a: z} = { a: 1 }; property
95 const {a: z} = { a: 1 }; property
107 let {a: z} = { a: 1 }; property
117 let {a: z} = { a: 1 }; property
[all …]
DobjectLiteralNormalization.js3 let a1 = [{ a: 0 }, { a: 1, b: "x" }, { a: 2, b: "y", c: true }][0]; property
7 a1 = { a: 1 }; property
8 a1 = { a: 0, b: 0 }; // Error property
12 let a2 = [{ a: 1, b: 2 }, { a: "abc" }, {}][0]; property
15 a2 = { a: 10, b: 20 }; property
16 a2 = { a: "def" }; property
18 a2 = { a: "def", b: 20 }; // Error property
19 a2 = { a: 1 }; // Error property
35 let d1 = [{ kind: 'a', pos: { x: 0, y: 0 } }, { kind: 'b', pos: !true ? { a: "x" } : { b: 0 } }][0]; property
47 let e1 = f({ a: 1, b: 2 }, { a: "abc" }, {}); property
[all …]
/third_party/libcoap/include/coap3/
Dcoap_mutex_internal.h33 #define coap_mutex_init(a) pthread_mutex_init(a, NULL) argument
34 #define coap_mutex_destroy(a) pthread_mutex_destroy(a) argument
35 #define coap_mutex_lock(a) pthread_mutex_lock(a) argument
36 #define coap_mutex_trylock(a) pthread_mutex_trylock(a) argument
37 #define coap_mutex_unlock(a) pthread_mutex_unlock(a) argument
45 #define coap_mutex_init(a) mutex_init(a) argument
46 #define coap_mutex_destroy(a) argument
47 #define coap_mutex_lock(a) mutex_lock(a) argument
48 #define coap_mutex_trylock(a) mutex_trylock(a) argument
49 #define coap_mutex_unlock(a) mutex_unlock(a) argument
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp74 swizzle(operand a, int swizzle, int components) in swizzle()
87 swizzle_for_size(operand a, unsigned components) in swizzle_for_size()
102 swizzle_xxxx(operand a) in swizzle_xxxx()
108 swizzle_yyyy(operand a) in swizzle_yyyy()
114 swizzle_zzzz(operand a) in swizzle_zzzz()
120 swizzle_wwww(operand a) in swizzle_wwww()
126 swizzle_x(operand a) in swizzle_x()
132 swizzle_y(operand a) in swizzle_y()
138 swizzle_z(operand a) in swizzle_z()
144 swizzle_w(operand a) in swizzle_w()
[all …]
/third_party/mesa3d/src/mesa/x86/
Dassyntax.h150 #define CHOICE(a,b,c) c argument
242 #define CHOICE(a,b,c) b argument
249 #define CHOICE(a,b,c) a argument
259 #define GLNAME(a) a argument
261 #define GLNAME(a) CONCAT(_,a) argument
334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument
335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument
338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument
339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument
341 #define REGOFF(a, b) CHOICE(a(b), a(b), a(b)) argument
[all …]
/third_party/node/deps/openssl/openssl/crypto/ts/
Dts_rsp_utils.c17 int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *status_info) in TS_RESP_set_status_info()
34 TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a) in TS_RESP_get_status_info()
40 void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info) in TS_RESP_set_tst_info()
48 PKCS7 *TS_RESP_get_token(TS_RESP *a) in TS_RESP_get_token()
53 TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a) in TS_RESP_get_tst_info()
58 int TS_TST_INFO_set_version(TS_TST_INFO *a, long version) in TS_TST_INFO_set_version()
63 long TS_TST_INFO_get_version(const TS_TST_INFO *a) in TS_TST_INFO_get_version()
68 int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy) in TS_TST_INFO_set_policy_id()
84 ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a) in TS_TST_INFO_get_policy_id()
89 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint) in TS_TST_INFO_set_msg_imprint()
[all …]
Dts_req_utils.c17 int TS_REQ_set_version(TS_REQ *a, long version) in TS_REQ_set_version()
22 long TS_REQ_get_version(const TS_REQ *a) in TS_REQ_get_version()
27 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint) in TS_REQ_set_msg_imprint()
43 TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a) in TS_REQ_get_msg_imprint()
48 int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg) in TS_MSG_IMPRINT_set_algo()
64 X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a) in TS_MSG_IMPRINT_get_algo()
69 int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len) in TS_MSG_IMPRINT_set_msg()
74 ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a) in TS_MSG_IMPRINT_get_msg()
79 int TS_REQ_set_policy_id(TS_REQ *a, const ASN1_OBJECT *policy) in TS_REQ_set_policy_id()
95 ASN1_OBJECT *TS_REQ_get_policy_id(TS_REQ *a) in TS_REQ_get_policy_id()
[all …]
/third_party/openssl/crypto/ts/
Dts_rsp_utils.c17 int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *status_info) in TS_RESP_set_status_info()
34 TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a) in TS_RESP_get_status_info()
40 void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info) in TS_RESP_set_tst_info()
48 PKCS7 *TS_RESP_get_token(TS_RESP *a) in TS_RESP_get_token()
53 TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a) in TS_RESP_get_tst_info()
58 int TS_TST_INFO_set_version(TS_TST_INFO *a, long version) in TS_TST_INFO_set_version()
63 long TS_TST_INFO_get_version(const TS_TST_INFO *a) in TS_TST_INFO_get_version()
68 int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy) in TS_TST_INFO_set_policy_id()
84 ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a) in TS_TST_INFO_get_policy_id()
89 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint) in TS_TST_INFO_set_msg_imprint()
[all …]
/third_party/openssl/test/
Dtestutil.h289 # define PRINTF_FORMAT(a, b) argument
299 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument
429 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument
430 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument
431 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument
432 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument
433 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b) argument
434 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b) argument
436 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) argument
437 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b) argument
[all …]
/third_party/node/deps/v8/src/compiler/
Draw-machine-assembler.h127 Node* Projection(int index, Node* a) { in Projection()
340 Node* WordAnd(Node* a, Node* b) { in WordAnd()
343 Node* WordOr(Node* a, Node* b) { return AddNode(machine()->WordOr(), a, b); } in WordOr()
344 Node* WordXor(Node* a, Node* b) { in WordXor()
347 Node* WordShl(Node* a, Node* b) { in WordShl()
350 Node* WordShr(Node* a, Node* b) { in WordShr()
353 Node* WordSar(Node* a, Node* b) { in WordSar()
356 Node* WordSarShiftOutZeros(Node* a, Node* b) { in WordSarShiftOutZeros()
359 Node* WordRor(Node* a, Node* b) { in WordRor()
362 Node* WordEqual(Node* a, Node* b) { in WordEqual()
[all …]
/third_party/openssl/include/internal/
Dconstant_time.h100 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
106 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
111 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
116 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
121 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
127 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
132 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
138 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
144 static ossl_inline BN_ULONG constant_time_msb_bn(BN_ULONG a) in constant_time_msb_bn()
149 static ossl_inline BN_ULONG constant_time_lt_bn(BN_ULONG a, BN_ULONG b) in constant_time_lt_bn()
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-param-init4.js25 function f1(a = a) argument
32 function f2([a] = 1 + a)
39 function f3([a = !a])
46 function f4([[a]] = a)
53 function f5([[a], b = a] = a)
60 function f6(a = 3 - ((b)), b) argument
67 function f7(a = b(), [b]) argument
74 function f8(a = (function () { return a * 2 })()) argument
81 function f9({a = b, b:{b}}) property
85 f9({a:2, b:{b:3}}) property
[all …]
/third_party/pulseaudio/speex/libspeexdsp/
Dfixed_generic.h45 #define SHR16(a,shift) ((a) >> (shift)) argument
46 #define SHL16(a,shift) ((a) << (shift)) argument
47 #define SHR32(a,shift) ((a) >> (shift)) argument
48 #define SHL32(a,shift) ((a) << (shift)) argument
49 #define PSHR16(a,shift) (SHR16((a)+((1<<((shift))>>1)),shift)) argument
50 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift)) argument
51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) argument
52 #define SATURATE16(x,a) (((x)>(a) ? (a) : (x)<-(a) ? -(a) : (x))) argument
53 #define SATURATE32(x,a) (((x)>(a) ? (a) : (x)<-(a) ? -(a) : (x))) argument
55 #define SATURATE32PSHR(x,shift,a) (((x)>=(SHL32(a,shift))) ? (a) : \ argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_cast.cpp22 ToType __attribute__((noinline)) cast(FromType a) { in cast()
27 ToType __attribute__((noinline)) castBits(FromType a) { in castBits()
32 ToType __attribute__((noinline)) cast(int i, FromType a, int j) { in cast()
39 ToType __attribute__((noinline)) castBits(int i, FromType a, int j) { in castBits()
49 static ToType f(bool a) { return cast<bool, ToType>(a); } in f()
50 static ToType f(myint8_t a) { return cast<myint8_t, ToType>(a); } in f()
51 static ToType f(uint8_t a) { return cast<uint8_t, ToType>(a); } in f()
52 static ToType f(int16_t a) { return cast<int16_t, ToType>(a); } in f()
53 static ToType f(uint16_t a) { return cast<uint16_t, ToType>(a); } in f()
54 static ToType f(int32_t a) { return cast<int32_t, ToType>(a); } in f()
[all …]
/third_party/node/deps/openssl/openssl/include/internal/
Dconstant_time.h100 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
106 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
111 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
116 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
121 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
127 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
132 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
138 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
143 static ossl_inline unsigned int constant_time_ge(unsigned int a, in constant_time_ge()
149 static ossl_inline size_t constant_time_ge_s(size_t a, size_t b) in constant_time_ge_s()
[all …]
/third_party/openssl/ohos_lite/include/internal/
Dconstant_time.h99 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
105 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
110 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
115 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
120 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
126 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
131 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
137 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
142 static ossl_inline unsigned int constant_time_ge(unsigned int a, in constant_time_ge()
148 static ossl_inline size_t constant_time_ge_s(size_t a, size_t b) in constant_time_ge_s()
[all …]

12345678910>>...302