| /third_party/typescript/tests/baselines/reference/ |
| D | deferredLookupTypeResolution2.js | 15 type E<T> = { true: 'true' }[ObjectHasKey<T, '1'>]; property 17 type Juxtapose<T> = ({ true: 'otherwise' } & { [k: string]: 'true' })[ObjectHasKey<T, '1'>]; property 20 type DeepError<T> = { true: 'true' }[Juxtapose<T>]; property 22 type DeepOK<T> = { true: 'true', otherwise: 'false' }[Juxtapose<T>]; property 42 true: 'true'; property 45 true: 'otherwise'; property 50 true: 'true'; property 53 true: 'true'; property
|
| D | emitClassDeclarationWithPropertyAssignmentInES6.js | 15 z: boolean = true; field in E 19 z: boolean = true; field in F
|
| D | getAndSetAsMemberNames.js | 15 get: boolean = true; field in C4 19 get (): boolean { return true; } field in C5
|
| D | newTargetNarrowing.js | 2 function foo(x: true) { }
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| D | CharsetDetector.java | 480 list.add(new CSRecognizerInfo(new CharsetRecog_UTF8(), true)); in list.add() argument 481 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_16_BE(), true)); in list.add() argument 482 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_16_LE(), true)); in list.add() argument 483 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_32_BE(), true)); in list.add() argument 484 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_32_LE(), true)); in list.add() argument 486 list.add(new CSRecognizerInfo(new CharsetRecog_mbcs.CharsetRecog_sjis(), true)); in list.add() argument 487 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022JP(), true)); in list.add() argument 488 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022CN(), true)); in list.add() argument 489 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022KR(), true)); in list.add() argument 490 …st.add(new CSRecognizerInfo(new CharsetRecog_mbcs.CharsetRecog_euc.CharsetRecog_gb_18030(), true)); in list.add() argument [all …]
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| D | CharsetDetector.java | 459 list.add(new CSRecognizerInfo(new CharsetRecog_UTF8(), true)); in list.add() argument 460 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_16_BE(), true)); in list.add() argument 461 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_16_LE(), true)); in list.add() argument 462 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_32_BE(), true)); in list.add() argument 463 list.add(new CSRecognizerInfo(new CharsetRecog_Unicode.CharsetRecog_UTF_32_LE(), true)); in list.add() argument 465 list.add(new CSRecognizerInfo(new CharsetRecog_mbcs.CharsetRecog_sjis(), true)); in list.add() argument 466 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022JP(), true)); in list.add() argument 467 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022CN(), true)); in list.add() argument 468 list.add(new CSRecognizerInfo(new CharsetRecog_2022.CharsetRecog_2022KR(), true)); in list.add() argument 469 …st.add(new CSRecognizerInfo(new CharsetRecog_mbcs.CharsetRecog_euc.CharsetRecog_gb_18030(), true)); in list.add() argument [all …]
|
| /third_party/rust/rust/tests/ui/let-else/ |
| D | let-else-bool-binop-init.rs | 6 …let true = true && false else { return }; //~ ERROR a `&&` expression cannot be directly assigned … in main() localVariable 7 …let true = true || false else { return }; //~ ERROR a `||` expression cannot be directly assigned … in main() localVariable
|
| /third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
| D | nullishCoalescingOperator1.ts | 35 const cc1 = c1 ?? true; constant 36 const cc2 = c2 ?? true; constant 37 const cc3 = c3 ?? true; constant 38 const cc4 = c4 ?? true; constant
|
| /third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/object_types/array_types/ |
| D | array_types_3.ts | 26 let arr7: boolean[] = [true, false, true, false, true]; variable
|
| /third_party/skia/m133/tests/graphite/ |
| D | ProxyCacheTest.cpp | 164 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 192 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 219 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 256 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 276 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 327 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument 431 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_ALL_CONTEXTS() argument
|
| D | GraphitePromiseImageTest.cpp | 246 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 333 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 407 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 428 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 523 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 597 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument 635 true, in DEF_CONDITIONAL_GRAPHITE_TEST_FOR_RENDERING_CONTEXTS() argument
|
| /third_party/typescript/tests/cases/conformance/expressions/arrayLiterals/ |
| D | arrayLiterals.ts | 15 var boolArr = [false, true, false, true]; variable
|
| /third_party/python/Tools/msi/ |
| D | make_appx.ps1 | 22 [Parameter(Mandatory=$true)][string]$layout, variable 23 [Parameter(Mandatory=$true)][string]$msix, variable
|
| /third_party/grpc/src/ruby/lib/grpc/generic/ |
| D | bidi_call.rb | 143 def write_loop(requests, is_client: true, set_output_stream_done: nil) 191 def read_loop(set_input_stream_done, is_client: true)
|
| /third_party/rust/rust/tests/ui/parser/ |
| D | bad-value-ident-true.rs | 1 fn true() { } //~ ERROR expected identifier, found keyword `true` in true() function
|
| /third_party/rust/rust/tests/ui/keyword/ |
| D | keyword-true-as-identifier.rs | 2 let true = 22; //~ error: mismatched types in main() localVariable
|
| /third_party/rust/rust/tests/ui/impl-trait/issues/ |
| D | issue-70971.rs | 2 let x : (impl Copy,) = (true,); in main() implementation
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| D | MessageSchema.java | 2311 numberAt(pos), (List<Double>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2315 numberAt(pos), (List<Float>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2319 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2323 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2327 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2331 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2335 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2340 numberAt(pos), (List<Boolean>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2344 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local 2348 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, true); in writeFieldsInAscendingOrder() local [all …]
|
| /third_party/typescript/tests/ts_extra_tests/test_ts_cases/5.2/copying_array_methods/ |
| D | copying_array_methods_10.ts | 25 const myArray = [true, false, true]; constant
|
| D | copying_array_methods_12.ts | 25 const myArray = [true, false, true]; constant
|
| /third_party/typescript/scripts/ |
| D | run-sequence.mjs | 9 export function runSequence(tasks, opts = { timeout: 100000, shell: true }) {
|
| /third_party/lwip/contrib/ports/win32/check/ |
| D | stdbool.h | 5 #define true 1 macro
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
| D | TestIDNARef.java | 521 doTestCompare(source.toString(),source.toString(),true); in TestCompare() local 524 doTestCompare(source.toString(),www+TestData.asciiIn[i]+com,true); in TestCompare() local 656 doTestCompare(source.toString(),source.toString(),true); in TestRootLabelSeparator() local 659 doTestCompare(source.toString(),www+TestData.asciiIn[i]+com,true); in TestRootLabelSeparator() local
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
| D | TestIDNARef.java | 524 doTestCompare(source.toString(),source.toString(),true); in TestCompare() local 527 doTestCompare(source.toString(),www+TestData.asciiIn[i]+com,true); in TestCompare() local 659 doTestCompare(source.toString(),source.toString(),true); in TestRootLabelSeparator() local 662 doTestCompare(source.toString(),www+TestData.asciiIn[i]+com,true); in TestRootLabelSeparator() local
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
| D | Delinearization.cpp | 125 INITIALIZE_PASS_BEGIN(Delinearization, DL_NAME, delinearization_name, true, in INITIALIZE_PASS_BEGIN() argument
|