/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | MessagePattern.java | 383 Part part; in autoQuoteApostropheDeep() 384 if((part=getPart(--i)).getType()==Part.Type.INSERT_CHAR) { in autoQuoteApostropheDeep() 413 public Part getPart(int i) { in getPart() 424 public Part.Type getPartType(int i) { in getPartType() 445 public String getSubstring(Part part) { in getSubstring() 456 public boolean partSubstringMatches(Part part, String s) { in partSubstringMatches() 465 public double getNumericValue(Part part) { in getNumericValue() 466 Part.Type type=part.type; in getNumericValue() 467 if(type==Part.Type.ARG_INT) { in getNumericValue() 469 } else if(type==Part.Type.ARG_DOUBLE) { in getNumericValue() [all …]
|
D | SelectFormat.java | 224 MessagePattern.Part part=pattern.getPart(partIndex++); in findSubMessage() 225 MessagePattern.Part.Type type=part.getType(); in findSubMessage() 226 if(type==MessagePattern.Part.Type.ARG_LIMIT) { in findSubMessage() 229 assert type==MessagePattern.Part.Type.ARG_SELECTOR; in findSubMessage() 270 MessagePattern.Part part = msgPattern.getPart(++i); in format() 271 MessagePattern.Part.Type type = part.getType(); in format() 273 if (type == MessagePattern.Part.Type.MSG_LIMIT) { in format() 279 } else if (type == MessagePattern.Part.Type.SKIP_SYNTAX) { in format() 285 } else if (type == MessagePattern.Part.Type.ARG_START) { in format()
|
D | MessageFormat.java | 42 import ohos.global.icu.text.MessagePattern.Part; 555 MessagePattern.Part.Type type = msgPattern.getPartType(++partIndex); in nextTopLevelArgStart() 556 if (type == MessagePattern.Part.Type.ARG_START) { in nextTopLevelArgStart() 559 if (type == MessagePattern.Part.Type.MSG_LIMIT) { in nextTopLevelArgStart() 566 Part part = msgPattern.getPart(partIndex); in argNameMatches() 567 return part.getType() == MessagePattern.Part.Type.ARG_NAME ? in argNameMatches() 573 Part part = msgPattern.getPart(partIndex); in getArgName() 574 if (part.getType() == MessagePattern.Part.Type.ARG_NAME) { in getArgName() 1244 Part part=msgPattern.getPart(i); in parse() 1245 Part.Type type=part.getType(); in parse() [all …]
|
D | PluralFormat.java | 439 MessagePattern.Part part=pattern.getPart(partIndex); in findSubMessage() 470 MessagePattern.Part.Type type=part.getType(); in findSubMessage() 471 if(type==MessagePattern.Part.Type.ARG_LIMIT) { in findSubMessage() 474 assert type==MessagePattern.Part.Type.ARG_SELECTOR; in findSubMessage() 629 MessagePattern.Part part = msgPattern.getPart(++partIndex); in format() 630 MessagePattern.Part.Type type = part.getType(); in format() 632 if (type == MessagePattern.Part.Type.MSG_LIMIT) { in format() 638 } else if (type == MessagePattern.Part.Type.REPLACE_NUMBER || in format() 640 … (type == MessagePattern.Part.Type.SKIP_SYNTAX && msgPattern.jdkAposMode())) { in format() 645 if (type == MessagePattern.Part.Type.REPLACE_NUMBER) { in format() [all …]
|
D | MessagePatternUtil.java | 59 } else if (pattern.getPartType(0) != MessagePattern.Part.Type.MSG_START) { in buildMessageNode() 436 MessagePattern.Part part = pattern.getPart(i); in buildMessageNode() 446 MessagePattern.Part.Type partType = part.getType(); in buildMessageNode() 447 if (partType == MessagePattern.Part.Type.ARG_START) { in buildMessageNode() 452 } else if (partType == MessagePattern.Part.Type.REPLACE_NUMBER) { in buildMessageNode() 463 MessagePattern.Part part = pattern.getPart(start); in buildArgNode() 467 if (part.getType() == MessagePattern.Part.Type.ARG_NUMBER) { in buildArgNode() 508 MessagePattern.Part part = pattern.getPart(start); in buildChoiceStyleNode() 526 MessagePattern.Part offset = pattern.getPart(start); in buildPluralStyleNode() 533 MessagePattern.Part selector = pattern.getPart(start++); in buildPluralStyleNode() [all …]
|
/third_party/typescript/src/testRunner/unittests/tsbuild/ |
D | outFile.ts | 34 const enum Part { one, two, three } enum 103 … modifyFs: fs => replaceText(fs, relSources[Project.first][Source.ts][Part.one], "Hello", "Hola"), 109 … modifyFs: fs => appendText(fs, relSources[Project.first][Source.ts][Part.one], "console.log(s);"), 241 appendText(fs, relSources[Project.first][Source.ts][Part.one], "console.log(s);"); 245 …ce.config], relOutputFiles[Project.first][Ext.js], relSources[Project.first][Source.ts][Part.one]], 247 …ces[Project.second][Source.config], relSources[Project.second][Source.ts][Part.one], relOutputFile… 255 appendText(fs, relSources[Project.first][Source.ts][Part.one], "console.log(s);"); 261 …ce.config], relOutputFiles[Project.first][Ext.js], relSources[Project.first][Source.ts][Part.one]], 263 …ces[Project.second][Source.config], relSources[Project.second][Source.ts][Part.one], relOutputFile… 308 …fyAgainFs: fs => addTestPrologue(fs, relSources[Project.first][Source.ts][Part.one], `"myPrologue"… [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 474 Value *getOrCreateVectorValue(Value *V, unsigned Part); 614 unsigned Part, 1738 for (unsigned Part = 0; Part < UF; ++Part) { in createVectorIntOrFpInductionPHI() local 1739 VectorLoopValueMap.setVectorValue(EntryVal, Part, LastInduction); in createVectorIntOrFpInductionPHI() 1743 recordVectorLoopValueForInductionCast(II, EntryVal, LastInduction, Part); in createVectorIntOrFpInductionPHI() 1779 Value *VectorLoopVal, unsigned Part, unsigned Lane) { in recordVectorLoopValueForInductionCast() argument 1800 VectorLoopValueMap.setScalarValue(CastInst, {Part, Lane}, VectorLoopVal); in recordVectorLoopValueForInductionCast() 1802 VectorLoopValueMap.setVectorValue(CastInst, Part, VectorLoopVal); in recordVectorLoopValueForInductionCast() 1882 for (unsigned Part = 0; Part < UF; ++Part) { in widenIntOrFpInduction() local 1884 getStepVector(Broadcasted, VF * Part, Step, ID.getInductionOpcode()); in widenIntOrFpInduction() [all …]
|
D | VPlan.cpp | 164 !(State->Instance->Part == 0 && State->Instance->Lane == 0); in execute() 262 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute() local 263 State->Instance->Part = Part; in execute() 311 unsigned Part) { in generateInstruction() argument 315 Value *A = State.get(getOperand(0), Part); in generateInstruction() 316 Value *B = State.get(getOperand(1), Part); in generateInstruction() 318 State.set(this, V, Part); in generateInstruction() 324 Value *A = State.get(getOperand(0), Part); in generateInstruction() 326 State.set(this, V, Part); in generateInstruction() 330 Value *IV = State.get(getOperand(0), Part); in generateInstruction() [all …]
|
D | VPlan.h | 86 unsigned Part; member 137 bool hasVectorValue(Value *Key, unsigned Part) const { in hasVectorValue() 138 assert(Part < UF && "Queried Vector Part is too large."); in hasVectorValue() 143 return Entry[Part] != nullptr; in hasVectorValue() 153 assert(Instance.Part < UF && "Queried Scalar Part is too large."); in hasScalarValue() 159 assert(Entry[Instance.Part].size() == VF && in hasScalarValue() 161 return Entry[Instance.Part][Instance.Lane] != nullptr; in hasScalarValue() 166 Value *getVectorValue(Value *Key, unsigned Part) { in getVectorValue() 167 assert(hasVectorValue(Key, Part) && "Getting non-existent value."); in getVectorValue() 168 return VectorMapStorage[Key][Part]; in getVectorValue() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | messagepattern.h | 606 class Part; variable 624 const Part &getPart(int32_t i) const { in getPart() 657 UnicodeString getSubstring(const Part &part) const { in getSubstring() 668 UBool partSubstringMatches(const Part &part, const UnicodeString &s) const { in partSubstringMatches() 678 double getNumericValue(const Part &part) const; 711 class Part : public UMemory { 717 Part() {} in Part() function 798 UBool operator==(const Part &other) const; 805 inline UBool operator!=(const Part &other) const { 930 Part *parts;
|
/third_party/icu/icu4c/source/common/unicode/ |
D | messagepattern.h | 608 class Part; variable 626 const Part &getPart(int32_t i) const { in getPart() 659 UnicodeString getSubstring(const Part &part) const { in getSubstring() 670 UBool partSubstringMatches(const Part &part, const UnicodeString &s) const { in partSubstringMatches() 680 double getNumericValue(const Part &part) const; 713 class Part : public UMemory { 719 Part() {} in Part() function 800 UBool operator==(const Part &other) const; 807 inline UBool operator!=(const Part &other) const { 932 Part *parts;
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | messagepattern.h | 608 class Part; variable 626 const Part &getPart(int32_t i) const { in getPart() 659 UnicodeString getSubstring(const Part &part) const { in getSubstring() 670 UBool partSubstringMatches(const Part &part, const UnicodeString &s) const { in partSubstringMatches() 680 double getNumericValue(const Part &part) const; 713 class Part : public UMemory { 719 Part() {} in Part() function 800 bool operator==(const Part &other) const; 807 inline bool operator!=(const Part &other) const { 932 Part *parts;
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | messagepattern.h | 608 class Part; variable 626 const Part &getPart(int32_t i) const { in getPart() 659 UnicodeString getSubstring(const Part &part) const { in getSubstring() 670 UBool partSubstringMatches(const Part &part, const UnicodeString &s) const { in partSubstringMatches() 680 double getNumericValue(const Part &part) const; 713 class Part : public UMemory { 719 Part() {} in Part() function 800 UBool operator==(const Part &other) const; 807 inline UBool operator!=(const Part &other) const { 932 Part *parts;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | CallLowering.cpp | 235 for (unsigned Part = 0; Part < NumParts; ++Part) { in handleAssignments() local 239 if (Part == 0) { in handleAssignments() 243 if (Part == NumParts - 1) in handleAssignments() 248 if (Handler.assignArg(i + Part, NewVT, NewVT, CCValAssign::Full, in handleAssignments() 249 Args[i], Args[i].Flags[Part], CCInfo)) { in handleAssignments() 315 for (unsigned Part = 0; Part < NumArgRegs; ++Part) { in handleAssignments() local 317 VA = ArgLocs[j + Part]; in handleAssignments() 318 Handler.assignValueToReg(Args[i].Regs[Part], VA.getLocReg(), VA); in handleAssignments() 350 for (unsigned Part = 0; Part < Args[i].Regs.size(); ++Part) { in handleAssignments() local 352 VA = ArgLocs[j + Part]; in handleAssignments() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | conditionalTypes1.types | 214 interface Part { 221 subparts: Part[]; 222 >subparts : Part[] 241 type T30 = FunctionProperties<Part>; 244 type T31 = NonFunctionProperties<Part>; 336 function f10(part: DeepReadonly<Part>) { 337 >f10 : (part: DeepReadonly<Part>) => void 338 >part : DeepReadonlyObject<Part> 343 >part : DeepReadonlyObject<Part> 349 >part.subparts[0] : DeepReadonlyObject<Part> [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | messagepattern.cpp | 141 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> { 352 const Part &part=getPart(--i); in autoQuoteApostropheDeep() 361 MessagePattern::getNumericValue(const Part &part) const { in getNumericValue() 380 const Part &part=getPart(pluralStart); in getPluralOffset() 381 if(Part::hasNumericValue(part.type)) { in getPluralOffset() 391 MessagePattern::Part::operator==(const Part &other) const { in operator ==() 440 if(nestingLevel>Part::MAX_VALUE) { in parseMessage() 558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg() 567 if(length>Part::MAX_LENGTH) { in parseArg() 610 if(length>Part::MAX_LENGTH) { in parseArg() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | messagepattern.cpp | 141 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> { 352 const Part &part=getPart(--i); in autoQuoteApostropheDeep() 361 MessagePattern::getNumericValue(const Part &part) const { in getNumericValue() 380 const Part &part=getPart(pluralStart); in getPluralOffset() 381 if(Part::hasNumericValue(part.type)) { in getPluralOffset() 391 MessagePattern::Part::operator==(const Part &other) const { in operator ==() 440 if(nestingLevel>Part::MAX_VALUE) { in parseMessage() 558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg() 567 if(length>Part::MAX_LENGTH) { in parseArg() 610 if(length>Part::MAX_LENGTH) { in parseArg() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | messagepattern.cpp | 141 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> { 352 const Part &part=getPart(--i); in autoQuoteApostropheDeep() 361 MessagePattern::getNumericValue(const Part &part) const { in getNumericValue() 380 const Part &part=getPart(pluralStart); in getPluralOffset() 381 if(Part::hasNumericValue(part.type)) { in getPluralOffset() 391 MessagePattern::Part::operator==(const Part &other) const { in operator ==() 440 if(nestingLevel>Part::MAX_VALUE) { in parseMessage() 558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg() 567 if(length>Part::MAX_LENGTH) { in parseArg() 610 if(length>Part::MAX_LENGTH) { in parseArg() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | messagepattern.cpp | 141 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> { 352 const Part &part=getPart(--i); in autoQuoteApostropheDeep() 361 MessagePattern::getNumericValue(const Part &part) const { in getNumericValue() 380 const Part &part=getPart(pluralStart); in getPluralOffset() 381 if(Part::hasNumericValue(part.type)) { in getPluralOffset() 391 MessagePattern::Part::operator==(const Part &other) const { in operator ==() 440 if(nestingLevel>Part::MAX_VALUE) { in parseMessage() 558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg() 567 if(length>Part::MAX_LENGTH) { in parseArg() 610 if(length>Part::MAX_LENGTH) { in parseArg() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64StackOffset.h | 44 using Part = std::pair<int64_t, MVT>; 50 *this += Part(Offset, T); in StackOffset() 58 StackOffset &operator+=(const StackOffset::Part &Other) {
|
/third_party/skia/third_party/externals/spirv-tools/test/link/ |
D | type_match_test.cpp | 53 "; CHECK: " Part##F(CheckDecoRes, N) "\n" Part##F(InstDeco, N) "\n" 55 "; CHECK: " Part##F(CheckDecoRes, CheckDecoArg, N, T) "\n" Part##F( \
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/link/ |
D | type_match_test.cpp | 53 "; CHECK: " Part##F(CheckDecoRes, N) "\n" Part##F(InstDeco, N) "\n" 55 "; CHECK: " Part##F(CheckDecoRes, CheckDecoArg, N, T) "\n" Part##F( \
|
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/ |
D | should-reflect-change-in-config-file.js | 36 Part of 'files' list in tsconfig.json 38 Part of 'files' list in tsconfig.json 100 Part of 'files' list in tsconfig.json
|
/third_party/typescript/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/ |
D | jsxImportSource-option-changed.js | 46 Part of 'files' list in tsconfig.json 57 Part of 'files' list in tsconfig.json 60 Part of 'files' list in tsconfig.json
|
/third_party/typescript/tests/baselines/reference/project/jsFileCompilationDifferentNamesSpecified/amd/ |
D | jsFileCompilationDifferentNamesSpecified.errors.txt | 3 Part of 'files' list in tsconfig.json 8 !!! error TS6504: Part of 'files' list in tsconfig.json
|