/third_party/typescript/tests/baselines/reference/ |
D | parserRealSource14.js | 26 public top: number = -1; 35 clone.top = this.top; 53 this.top = this.asts.length; 58 if (this.top <= -1) 60 this.top--; 64 if (this.top == this.ast.length - 1) 66 this.top++; 76 … return <TypeScript.AST>AstPath.reverseIndexOf(this.asts, this.asts.length - (this.top + 1)); 80 return <TypeScript.AST>AstPath.reverseIndexOf(this.asts, this.asts.length - this.top); 84 return this.top + 1; [all …]
|
D | parserRealSource14.types | 76 public top: number = -1; 77 >top : number 133 clone.top = this.top; 134 >clone.top = this.top : number 135 >clone.top : number 137 >top : number 138 >this.top : number 140 >top : number 212 this.top = this.asts.length; 213 >this.top = this.asts.length : number [all …]
|
D | parserRealSource14.symbols | 60 public top: number = -1; 61 >top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 101 clone.top = this.top; 102 >clone.top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 104 >top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 105 >this.top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 107 >top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 171 this.top = this.asts.length; 172 >this.top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) 174 >top : Symbol(AstPath.top, Decl(parserRealSource14.ts, 23, 43)) [all …]
|
D | recursiveNamedLambdaCall.types | 4 >function( obj ) { if ( top && top.doScroll ) { (function doScrollCheck() { if ( false ) { … 7 if ( top && top.doScroll ) { 8 >top && top.doScroll : any 9 >top : any 10 >top.doScroll : any 11 >top : any 15 >(function doScrollCheck() { if ( false ) { try { top.doScroll("left"); } catch(e) … 16 >(function doScrollCheck() { if ( false ) { try { top.doScroll("left"); } catch(e) … 17 >function doScrollCheck() { if ( false ) { try { top.doScroll("left"); } catch(e) {… 24 top.doScroll("left"); [all …]
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource14.ts | 25 public top: number = -1; property in AstPath 34 clone.top = this.top; 52 this.top = this.asts.length; 57 if (this.top <= -1) 59 this.top--; 63 if (this.top == this.ast.length - 1) 65 this.top++; 75 … return <TypeScript.AST>AstPath.reverseIndexOf(this.asts, this.asts.length - (this.top + 1)); 79 return <TypeScript.AST>AstPath.reverseIndexOf(this.asts, this.asts.length - this.top); 83 return this.top + 1; [all …]
|
/third_party/python/Lib/idlelib/ |
D | zoomheight.py | 19 self.top = self.editwin.top 25 self.top.bell() 34 top = self.top 36 width, height, x, y = get_window_geometry(top) 38 if top.wm_state() != 'normal': 50 set_window_geometry(top, (width, maxheight, x, maxy)) 57 top.wm_geometry('') 61 top = self.top 63 screen_dimensions = (top.winfo_screenwidth(), 64 top.winfo_screenheight()) [all …]
|
D | searchbase.py | 49 self.top = None 54 if not self.top: 57 self.top.deiconify() 58 self.top.tkraise() 59 self.top.transient(text.winfo_toplevel()) 66 self.top.grab_set() 70 if self.top: 71 self.top.grab_release() 72 self.top.transient('') 73 self.top.withdraw() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/ |
D | t1decode.c | 476 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 510 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 521 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 740 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 753 *top++ = value; in t1_decoder_parse_charstrings() 754 decoder->top = top; in t1_decoder_parse_charstrings() 767 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 770 top -= 2; in t1_decoder_parse_charstrings() 772 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 773 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
D | psstack.c | 77 stack->top = stack->buffer; /* empty stack */ in cf2_stack_init() 102 return (CF2_UInt)( stack->top - stack->buffer ); in cf2_stack_count() 110 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushInt() 116 stack->top->u.i = val; in cf2_stack_pushInt() 117 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt() 118 stack->top++; in cf2_stack_pushInt() 126 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushFixed() 132 stack->top->u.r = val; in cf2_stack_pushFixed() 133 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed() 134 stack->top++; in cf2_stack_pushFixed() [all …]
|
/third_party/freetype/src/psaux/ |
D | t1decode.c | 478 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 512 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 523 FT_TRACE5(( " (%ld)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 740 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 753 *top++ = value; in t1_decoder_parse_charstrings() 754 decoder->top = top; in t1_decoder_parse_charstrings() 767 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 770 top -= 2; in t1_decoder_parse_charstrings() 772 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 773 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
D | psstack.c | 75 stack->top = stack->buffer; /* empty stack */ in cf2_stack_init() 100 return (CF2_UInt)( stack->top - stack->buffer ); in cf2_stack_count() 108 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushInt() 114 stack->top->u.i = val; in cf2_stack_pushInt() 115 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt() 116 stack->top++; in cf2_stack_pushInt() 124 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushFixed() 130 stack->top->u.r = val; in cf2_stack_pushFixed() 131 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed() 132 stack->top++; in cf2_stack_pushFixed() [all …]
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | t1decode.c | 478 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 512 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 523 FT_TRACE5(( " (%ld)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 740 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 753 *top++ = value; in t1_decoder_parse_charstrings() 754 decoder->top = top; in t1_decoder_parse_charstrings() 767 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 770 top -= 2; in t1_decoder_parse_charstrings() 772 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 773 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
D | psstack.c | 75 stack->top = stack->buffer; /* empty stack */ in cf2_stack_init() 100 return (CF2_UInt)( stack->top - stack->buffer ); in cf2_stack_count() 108 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushInt() 114 stack->top->u.i = val; in cf2_stack_pushInt() 115 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt() 116 stack->top++; in cf2_stack_pushInt() 124 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushFixed() 130 stack->top->u.r = val; in cf2_stack_pushFixed() 131 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed() 132 stack->top++; in cf2_stack_pushFixed() [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | enc.c | 239 const uint8_t* top, int size) { in VerticalPred() argument 241 if (top != NULL) { in VerticalPred() 242 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 261 const uint8_t* top, int size) { in TrueMotion() argument 264 if (top != NULL) { in TrueMotion() 270 dst[x] = clip_table[top[x]]; in TrueMotion() 282 if (top != NULL) { in TrueMotion() 283 VerticalPred(dst, top, size); in TrueMotion() 291 const uint8_t* top, in DCMode() argument 295 if (top != NULL) { in DCMode() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | enc.c | 239 const uint8_t* top, int size) { in VerticalPred() argument 241 if (top != NULL) { in VerticalPred() 242 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 261 const uint8_t* top, int size) { in TrueMotion() argument 264 if (top != NULL) { in TrueMotion() 270 dst[x] = clip_table[top[x]]; in TrueMotion() 282 if (top != NULL) { in TrueMotion() 283 VerticalPred(dst, top, size); in TrueMotion() 291 const uint8_t* top, in DCMode() argument 295 if (top != NULL) { in DCMode() [all …]
|
D | enc_msa.c | 262 static WEBP_INLINE void VE4(uint8_t* dst, const uint8_t* top) { // vertical in VE4() argument 264 const uint64_t val_m = LD(top - 1); in VE4() 275 static WEBP_INLINE void HE4(uint8_t* dst, const uint8_t* top) { // horizontal in HE4() argument 276 const int X = top[-1]; in HE4() 277 const int I = top[-2]; in HE4() 278 const int J = top[-3]; in HE4() 279 const int K = top[-4]; in HE4() 280 const int L = top[-5]; in HE4() 287 static WEBP_INLINE void DC4(uint8_t* dst, const uint8_t* top) { in DC4() argument 290 for (i = 0; i < 4; ++i) dc += top[i] + top[-5 + i]; in DC4() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/monoscope/ |
D | convolve.c | 161 convolve_run (stack_entry * top, unsigned size, double *scratch) in convolve_run() argument 178 left = top->v.left; in convolve_run() 179 right = top->v.right; in convolve_run() 180 out = top->v.out; in convolve_run() 181 top++; in convolve_run() 206 top -= 3; in convolve_run() 207 top[2].b.main = out; in convolve_run() 208 top[2].b.null = NULL; in convolve_run() 213 top[1].v.left = left; in convolve_run() 214 top[1].v.right = right; in convolve_run() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | vp9dsp_template.c | 37 const pixel *top = (const pixel *) _top; in vert_4x4_c() local 38 pixel4 p4 = AV_RN4PA(top); in vert_4x4_c() 51 const pixel *top = (const pixel *) _top; in vert_8x8_c() local 52 pixel4 p4a = AV_RN4PA(top + 0); in vert_8x8_c() 53 pixel4 p4b = AV_RN4PA(top + 4); in vert_8x8_c() 68 const pixel *top = (const pixel *) _top; in vert_16x16_c() local 69 pixel4 p4a = AV_RN4PA(top + 0); in vert_16x16_c() 70 pixel4 p4b = AV_RN4PA(top + 4); in vert_16x16_c() 71 pixel4 p4c = AV_RN4PA(top + 8); in vert_16x16_c() 72 pixel4 p4d = AV_RN4PA(top + 12); in vert_16x16_c() [all …]
|
D | hevcpred_template.c | 104 pixel *top = top_array + 1; in FUNC() local 163 memset(top , 128, 2 * MAX_TB_SIZE*sizeof(pixel)); in FUNC() 164 top[-1] = 128; in FUNC() 168 top[-1] = left[-1]; in FUNC() 171 memcpy(top, src - stride, size * sizeof(pixel)); in FUNC() 173 memcpy(top + size, src - stride + size, size * sizeof(pixel)); in FUNC() 174 EXTEND(top + size + top_right_size, POS(size + top_right_size - 1, -1), in FUNC() 209 EXTEND_LEFT_CIP(top, j, j + 1); in FUNC() 210 left[-1] = top[-1]; in FUNC() 218 EXTEND_LEFT_CIP(top, j, j + 1); in FUNC() [all …]
|
/third_party/openssl/crypto/bn/ |
D | bn_exp.c | 135 if (a->top == 1 && !a->neg in BN_mod_exp() 381 j = m->top; /* borrow j */ in BN_mod_exp_mont() 389 r->top = j; in BN_mod_exp_mont() 450 j = mont->N.top; /* borrow j */ in BN_mod_exp_mont() 454 val[0]->top = j; in BN_mod_exp_mont() 477 if (wordpos >= 0 && wordpos < a->top) { in bn_get_bits() 481 if (++wordpos < a->top) in bn_get_bits() 496 static int MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top, in MOD_EXP_CTIME_COPY_TO_PREBUF() argument 504 if (top > b->top) in MOD_EXP_CTIME_COPY_TO_PREBUF() 505 top = b->top; /* this works because 'buf' is explicitly in MOD_EXP_CTIME_COPY_TO_PREBUF() [all …]
|
D | bn_shift.c | 24 if (bn_wexpand(r, a->top + 1) == NULL) in BN_lshift1() 26 r->top = a->top; in BN_lshift1() 28 if (bn_wexpand(r, a->top + 1) == NULL) in BN_lshift1() 34 for (i = 0; i < a->top; i++) { in BN_lshift1() 40 r->top += c; in BN_lshift1() 57 i = a->top; in BN_rshift1() 65 r->top = i; in BN_rshift1() 69 r->top -= (t == 1); in BN_rshift1() 75 if (!r->top) in BN_rshift1() 117 if (bn_wexpand(r, a->top + nw + 1) == NULL) in bn_lshift_fixed_top() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
D | MatrixStack.cpp | 26 top = 0; in MatrixStack() 38 stack[top] = 1; in identity() 43 stack[top] = M; in load() 48 stack[top] = Matrix(M[0], M[4], M[8], M[12], in load() 56 stack[top] = Matrix((float)M[0], (float)M[4], (float)M[8], (float)M[12], in load() 64 stack[top] *= Matrix::translate(x, y, z); in translate() 90 stack[top] *= rotate; in rotate() 100 stack[top] *= Matrix::scale(x, y, z); in scale() 110 stack[top] *= Matrix(M[0], M[4], M[8], M[12], in multiply() 118 stack[top] *= Matrix((float)M[0], (float)M[4], (float)M[8], (float)M[12], in multiply() [all …]
|
/third_party/python/Lib/test/ |
D | test_symtable.py | 54 top = symtable.symtable(TEST_CODE, "?", "exec") variable in SymtableTest 56 Mine = find_block(top, "Mine") 58 spam = find_block(top, "spam") 61 foo = find_block(top, "foo") 64 self.assertEqual(self.top.get_type(), "module") 71 self.assertGreater(self.top.get_id(), 0) 78 self.assertFalse(self.top.is_optimized()) 83 self.assertFalse(self.top.is_nested()) 89 self.assertTrue(self.top.has_children()) 94 self.assertEqual(self.top.get_lineno(), 0) [all …]
|
/third_party/flutter/flutter/packages/flutter/test/painting/ |
D | border_rtl_test.dart | 18 …const BoxBorder directionalWithMagentaTop5 = BorderDirectional(top: BorderSide(color: Color(0xFFFF… 19 …const BoxBorder directionalWithMagentaTop5At25 = BorderDirectional(top: BorderSide(color: Color(0x… 20 …const BoxBorder directionalWithMagentaTop5At75 = BorderDirectional(top: BorderSide(color: Color(0x… 27 const BoxBorder directionalWithTop10 = BorderDirectional(top: BorderSide(width: 10.0)); 28 …const BoxBorder directionalWithYellowTop10 = BorderDirectional(top: BorderSide(color: Color(0xFFFF… 29 …const BoxBorder directionalWithYellowTop5 = BorderDirectional(top: BorderSide(color: Color(0xFFFFF… 30 …const BoxBorder visualWithMagentaTop10 = Border(top: BorderSide(color: Color(0xFFFF00FF), width: 1… 31 …const BoxBorder visualWithMagentaTop5 = Border(top: BorderSide(color: Color(0xFFFF00FF), width: 5.… 38 const BoxBorder visualWithTop10 = Border(top: BorderSide(width: 10.0)); 39 const BoxBorder visualWithTop100 = Border(top: BorderSide(width: 100.0)); [all …]
|
/third_party/nghttp2/tests/ |
D | nghttp2_pq_test.c | 57 string_entry *top; in test_nghttp2_pq() local 65 top = (string_entry *)nghttp2_pq_top(&pq); in test_nghttp2_pq() 66 CU_ASSERT(strcmp("foo", top->s) == 0); in test_nghttp2_pq() 68 top = (string_entry *)nghttp2_pq_top(&pq); in test_nghttp2_pq() 69 CU_ASSERT(strcmp("bar", top->s) == 0); in test_nghttp2_pq() 71 top = (string_entry *)nghttp2_pq_top(&pq); in test_nghttp2_pq() 72 CU_ASSERT(strcmp("bar", top->s) == 0); in test_nghttp2_pq() 76 top = (string_entry *)nghttp2_pq_top(&pq); in test_nghttp2_pq() 77 CU_ASSERT(strcmp("C", top->s) == 0); in test_nghttp2_pq() 78 string_entry_del(top); in test_nghttp2_pq() [all …]
|