Home
last modified time | relevance | path

Searched refs:result (Results 7026 - 7050 of 16712) sorted by relevance

1...<<281282283284285286287288289290>>...669

/third_party/typescript/tests/baselines/reference/tsc/declarationEmit/
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js105 File '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
106 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts'.
119 File '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/index.d.ts' exist - use it as a name resolution result.
120 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/index.d.ts', result '/user/username/projects/myProject/plugin-two/index.d.ts'.
137 File '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
138 Resolving real path for '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts'.
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js115 File '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/dist/commonjs/index.d.ts' exist - use it as a name resolution result.
116 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/dist/commonjs/index.d.ts', result '/user/username/projects/myProject/plugin-two/dist/commonjs/index.d.ts'.
133 File '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
134 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts'.
153 File '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
154 Resolving real path for '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myProject/plugin-two/node_modules/typescript-fsa/index.d.ts'.
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js115 File '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/dist/commonjs/index.d.ts' exist - use it as a name resolution result.
116 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/dist/commonjs/index.d.ts', result '/user/username/projects/myproject/plugin-two/dist/commonjs/index.d.ts'.
133 File '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
134 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts'.
153 File '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
154 Resolving real path for '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts'.
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package.js105 File '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
106 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts'.
119 File '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/index.d.ts' exist - use it as a name resolution result.
120 Resolving real path for '/user/username/projects/myproject/plugin-one/node_modules/plugin-two/index.d.ts', result '/user/username/projects/myproject/plugin-two/index.d.ts'.
137 File '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts' exist - use it as a name resolution result.
138 Resolving real path for '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts', result '/user/username/projects/myproject/plugin-two/node_modules/typescript-fsa/index.d.ts'.
/third_party/vixl/tools/test_generator/
H A Dgenerator.py240 result = [
246 return result
250 return random.sample(result, self.operand_limit)
282 result = [
288 return result
292 return random.sample(result, self.input_limit)
/third_party/typescript/tests/baselines/reference/
H A DinferFromGenericFunctionReturnTypes2.js64 const result = new SetOf<A>();
66 if (predicate(x)) result.add(x);
68 return result;
142 var result = new SetOf();
145 result.add(x);
147 return result;
H A DliteralTypes2.js171 let result = a.slice();
172 result.push(x);
173 return result;
343 var result = a.slice();
344 result.push(x);
345 return result;
/third_party/protobuf/src/google/protobuf/util/
H A Djson_util.cc249 util::Status result = in MessageToJsonString() local
255 return result; in MessageToJsonString()
266 util::Status result = JsonToBinaryString(resolver, GetTypeUrl(*message), in JsonStringToMessage() local
268 if (result.ok() && !message->ParseFromString(binary)) { in JsonStringToMessage()
269 result = in JsonStringToMessage()
276 return result; in JsonStringToMessage()
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_benchmark.cc88 absl::Cord result(std::string(size, 'a')); in FlatCord()
89 result.Flatten(); in FlatCord()
90 return result; in FlatCord()
104 absl::Cord result = absl::MakeFragmentedCord(chunks); in FragmentedCord() local
106 assert(result.size() == orig_size); in FragmentedCord()
107 return result; in FragmentedCord()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Diostream_state_saver_test.cc40 T result = 0; in StreamRoundTrip() local
43 ss >> result; in StreamRoundTrip() local
52 return result; in StreamRoundTrip()
64 T result = 0; in StreamRoundTrip() local
67 result = absl::random_internal::read_floating_point<T>(ss); in StreamRoundTrip()
76 return result; in StreamRoundTrip()
/third_party/skia/modules/particles/src/
H A DSkParticleBinding.cpp190 skvm::Color result = as_SB(fShader)->program( variable
194 SkASSERT(result); variable
195 outResult[0] = result.r;
196 outResult[1] = result.g;
197 outResult[2] = result.b;
198 outResult[3] = result.a;
/third_party/skia/bench/
H A DPolyUtilsBench.cpp65 SkTDArray<SkPoint> result; variable
67 (void)SkInsetConvexPolygon(poly.begin(), poly.count(), 10, &result);
68 (void)SkInsetConvexPolygon(poly.begin(), poly.count(), 40, &result);
74 SkTDArray<SkPoint> result; variable
79 &result);
81 &result);
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_add_bit_instruction_synonym.cpp164 protobufs::Transformation result; in ToMessage() local
165 *result.mutable_add_bit_instruction_synonym() = message_; in ToMessage()
166 return result; in ToMessage()
208 // insert the result bits. in AddOpBitwiseOrOpNotSynonym()
246 // first two bits of the result. in AddOpBitwiseOrOpNotSynonym()
277 // the new result id we would make it synonymous with is not irrelevant. (It in AddOpBitwiseOrOpNotSynonym()
293 std::unordered_set<uint32_t> result; in GetFreshIds() local
295 result.insert(id); in GetFreshIds()
297 return result; in GetFreshIds()
H A Dtransformation_inline_function.cpp81 // |result_id_map| must have an entry for every result id in the called in IsApplicable()
84 // If |instruction| has result id, then it must have a mapped id in in IsApplicable()
118 // If there are gaps in the result id map, fill them using overflow ids. in Apply()
127 // If |instruction| has result id, then it must have a mapped id in in Apply()
228 protobufs::Transformation result; in ToMessage() local
229 *result.mutable_inline_function() = message_; in ToMessage()
230 return result; in ToMessage()
279 // Replaces the operand ids with their mapped result ids. in AdaptInlinedInstruction()
316 // If |instruction_to_be_inlined| has result id, then set it to its mapped in AdaptInlinedInstruction()
358 std::unordered_set<uint32_t> result; in GetFreshIds() local
[all...]
/third_party/spirv-tools/source/opt/
H A Dbasic_block.cpp50 const Instruction* result = nullptr; in GetMergeInst() local
58 result = &*iter; in GetMergeInst()
61 return result; in GetMergeInst()
65 Instruction* result = nullptr; in GetMergeInst() local
73 result = &*iter; in GetMergeInst()
76 return result; in GetMergeInst()
/third_party/spirv-tools/test/opt/
H A Damd_ext_to_khr.cpp119 ; CHECK-NEXT: [[result:%\w+]] = OpBitCount %uint [[and]] in TEST_F()
164 ; CHECK-NEXT: [[result:%\w+]] = OpSelect [[type]] [[is_active]] [[shuffle]] [[null]] in TEST_F()
215 ; CHECK-NEXT: [[result:%\w+]] = OpSelect [[type]] [[is_active]] [[shuffle]] [[null]] in TEST_F()
254 ; CHECK-NEXT: [[result:%\w+]] = OpSelect %uint [[cmp]] [[write_val]] [[input_val]] in TEST_F()
290 ; CHECK-NEXT: [[result:%\w+]] = OpExtInst [[type]] [[ext]] FMin [[temp]] [[z]] in TEST_F()
328 ; CHECK-NEXT: [[result:%\w+]] = OpExtInst [[type]] [[ext]] SMin [[temp]] [[z]] in TEST_F()
367 ; CHECK-NEXT: [[result:%\w+]] = OpExtInst [[type]] [[ext]] UMin [[temp]] [[z]] in TEST_F()
406 ; CHECK-NEXT: [[result:%\w+]] = OpExtInst [[type]] [[ext]] FMax [[temp]] [[z]] in TEST_F()
444 ; CHECK-NEXT: [[result:%\w+]] = OpExtInst [[type]] [[ext]] SMax [[temp]] [[z]] in TEST_F()
483 ; CHECK-NEXT: [[result in TEST_F()
880 auto result = SinglePassRunAndDisassemble<AmdExtensionToKhrPass>( TEST_F() local
912 auto result = SinglePassRunAndDisassemble<AmdExtensionToKhrPass>( TEST_F() local
[all...]
H A Dlocal_access_chain_convert_test.cpp1053 auto result = SinglePassRunToBinary<LocalAccessChainConvertPass>(text, true);
1054 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result));
1089 auto result = SinglePassRunToBinary<LocalAccessChainConvertPass>(text, true);
1090 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result));
1125 auto result = SinglePassRunToBinary<LocalAccessChainConvertPass>(text, true);
1126 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result));
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderFragDataTests.cpp218 tcu::Surface result (viewportW, viewportH); in iterate()
222 glu::readPixels(renderCtx, 0, 0, result.getAccess()); in iterate()
225 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold); in iterate()
352 tcu::Surface result(width, height); in iterate()
357 glu::readPixels(renderCtx, 0, 0, result.getAccess()); in iterate()
360 if (!compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold)) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktApplicationParametersTests.cpp269 const VkResult result = instanceDriver.createDevice(physicalDevice, &deviceCreateInfo, DE_NULL, &device); in createDeviceTest() local
277 log << tcu::TestLog::Message << "Device creation returned with " + de::toString(getResultName(result)) + in createDeviceTest()
280 if (result != testData.expectedResult) in createDeviceTest()
335 const VkResult result = platformInterface.createInstance(&instanceCreateInfo, DE_NULL/*pAllocator*/, &instance); in createInstanceTest() local
343 log << tcu::TestLog::Message << "Instance creation returned with " + de::toString(getResultName(result)) + in createInstanceTest()
346 if (result != testData.expectedResult) in createInstanceTest()
H A DvktPipelineCacheSCTests.cpp335 VkResult result = instanceDriver.createDevice(physicalDevice, &deviceCreateInfo, DE_NULL, &object); in createPipelineCacheTest() local
340 if (result != VK_ERROR_INVALID_PIPELINE_CACHE_DATA) in createPipelineCacheTest()
346 if (result != VK_SUCCESS) in createPipelineCacheTest()
357 VkResult result = createPipelineCacheFunc(*device, &pipelineCacheCreateInfo, DE_NULL, &pipelineCache); in createPipelineCacheTest() local
363 if (result != VK_ERROR_INVALID_PIPELINE_CACHE_DATA) in createPipelineCacheTest()
370 if (result == VK_SUCCESS) in createPipelineCacheTest()
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksSerializer.hpp260 vector<u8> result; in Serialize() local
261 Serializer<ToWrite>{result}.SerializeObject(data); in Serialize()
262 return result; in Serialize()
268 T result; in Deserialize() local
269 Serializer<ToRead>{buffer}.SerializeObject(result); in Deserialize()
270 return result; in Deserialize()
/test/ostest/wukong/input_factory/src/
H A Delement_input.cpp30 ErrCode result = OHOS::ERR_OK; in RandomInput() local
31 return result; in RandomInput()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DNumberParseMatcher.java39 * @param result
44 public boolean match(StringSegment segment, ParsedNumber result); in match() argument
62 * Allows a matcher to make final modifications to the result given the knowledge that no more
65 * @param result
68 public void postProcess(ParsedNumber result); in postProcess() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DNumberParseMatcher.java42 * @param result
47 public boolean match(StringSegment segment, ParsedNumber result); in match() argument
65 * Allows a matcher to make final modifications to the result given the knowledge that no more
68 * @param result
71 public void postProcess(ParsedNumber result); in postProcess() argument
/third_party/musl/porting/linux/user/src/hook/
H A Dsocket_common.c14 int result = MuslSocket(socket)(domain, type, protocol); in socket() local
15 return result; in socket()

Completed in 20 milliseconds

1...<<281282283284285286287288289290>>...669