Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 10865) sorted by relevance

12345678910>>...435

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java82 R result = n.getJavaDoc().accept(this, arg); in visit() local
91 R result = a.accept(this, arg); in visit() local
101 R result = member.accept(this, arg); in visit() local
115 R result = n.getJavaDoc().accept(this, arg); in visit() local
124 R result = a.accept(this, arg); in visit() local
132 R result = n.getType().accept(this, arg); in visit() local
139 R result = n.getDefaultValue().accept(this, arg); in visit() local
151 R result = n.getName().accept(this, arg); in visit() local
157 R result = n.getIndex().accept(this, arg); in visit() local
168 R result = n.getType().accept(this, arg); in visit() local
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java47 R result = a.accept(this, arg); in visit() local
57 R result = member.accept(this, arg); in visit() local
73 R result = a.accept(this, arg); in visit() local
81 R result = n.getType().accept(this, arg); in visit() local
88 R result = n.getDefaultValue().accept(this, arg); in visit() local
101 R result = n.getName().accept(this, arg); in visit() local
107 R result = n.getIndex().accept(this, arg); in visit() local
119 R result = n.getType().accept(this, arg); in visit() local
125 R result = level.accept(this, arg); in visit() local
131 R result = n.getInitializer().accept(this, arg); in visit() local
[all …]
/external/grpc-grpc/test/cpp/qps/
Dreport.cc39 void CompositeReporter::ReportQPS(const ScenarioResult& result) { in ReportQPS()
45 void CompositeReporter::ReportQPSPerCore(const ScenarioResult& result) { in ReportQPSPerCore()
51 void CompositeReporter::ReportLatency(const ScenarioResult& result) { in ReportLatency()
57 void CompositeReporter::ReportTimes(const ScenarioResult& result) { in ReportTimes()
63 void CompositeReporter::ReportCpuUsage(const ScenarioResult& result) { in ReportCpuUsage()
69 void CompositeReporter::ReportPollCount(const ScenarioResult& result) { in ReportPollCount()
75 void CompositeReporter::ReportQueriesPerCpuSec(const ScenarioResult& result) { in ReportQueriesPerCpuSec()
81 void GprLogReporter::ReportQPS(const ScenarioResult& result) { in ReportQPS()
121 void GprLogReporter::ReportQPSPerCore(const ScenarioResult& result) { in ReportQPSPerCore()
126 void GprLogReporter::ReportLatency(const ScenarioResult& result) { in ReportLatency()
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/validator/
DJava1_1ValidatorTest.java26 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topClass() local
45 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedClass() local
61 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{ void x… in localClass() local
81 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topInterface() local
101 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedInterface() local
118 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in constructor() local
138 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{X(" + a… in constructorParameter() local
159 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in classMethod() local
174 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
191 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x("… in methodParameter() local
[all …]
DJava10ValidatorTest.java23 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a = 5;")); in varAllowedInLocalVariableDeclaration() local
29 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(var a : as){}")); in varAllowedInForEach() local
35 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(var a = 5;a<9;a++){}")); in varAllowedInOldFor() local
41 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("int a = (var)20;")); in varNotAllowedInCast() local
47 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(var f = new FileReader(\… in varNotAllowedInTryWithResources() local
53 … ParseResult<BodyDeclaration<?>> result = javaParser.parse(CLASS_BODY, provider("var a = 20;")); in varNotAllowedInField() local
59 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("new X<var>();")); in varNotAllowedInTypeArguments() local
65 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("x((var x) -> null);")); in varNotAllowedInLambdaParameters() local
71 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a;")); in emptyInitializerNotAllowed() local
77 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a=1, b=2;")); in multipleVariablesNotAllowed() local
[all …]
DJava5ValidatorTest.java23 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in genericsWithoutDiamond() local
29 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topAnnotationDeclaration() local
49 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedAnnotationDeclaration() local
66 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("@interface X{" … in annotationMember() local
87 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topEnum() local
108 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedEnum() local
126 ParseResult<Parameter> result = javaParser.parse(PARAMETER, provider("String... x")); in varargs() local
132 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(X x: xs){}")); in foreach() local
138 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(int i, j : nums){}")); in noMultipleVariablesInForEach() local
145 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(static transient int i :… in noModifiersInForEachBesideFinal() local
[all …]
DJava1_2ValidatorTest.java23 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topClass() local
42 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedClass() local
58 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{ void x… in localClass() local
78 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topInterface() local
98 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedInterface() local
115 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in constructor() local
135 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{X(" + a… in constructorParameter() local
157 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in classMethod() local
172 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
189 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x("… in methodParameter() local
[all …]
DJava1_0ValidatorTest.java29 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(X x=new Y()){}")); in tryWithoutResources() local
37 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X extends… in classExtendingMoreThanOne() local
43 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X imp… in interfaceUsingImplements() local
49 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X {{}… in interfaceWithInitializer() local
55 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X {defaul… in defaultInClass() local
61 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("(1==2)=3")); in leftHandAssignmentCannotBeAConditional() local
67 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("()=3")); in leftHandAssignmentCannotBeEmptyBraces() local
75 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("(i) += (i) += 1")); in leftHandAssignmentCanBeInBraces() local
81 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{class Y… in noInnerClasses() local
87 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("Abc.class")); in noReflection() local
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java44 R result; in visit() local
75 R result; in visit() local
111 R result; in visit() local
132 R result; in visit() local
158 R result; in visit() local
174 R result; in visit() local
195 R result; in visit() local
216 R result; in visit() local
237 R result; in visit() local
253 R result; in visit() local
[all …]
DGenericListVisitorAdapter.java47 List<R> result = new ArrayList<>(); in visit() local
78 List<R> result = new ArrayList<>(); in visit() local
114 List<R> result = new ArrayList<>(); in visit() local
135 List<R> result = new ArrayList<>(); in visit() local
161 List<R> result = new ArrayList<>(); in visit() local
182 List<R> result = new ArrayList<>(); in visit() local
198 List<R> result = new ArrayList<>(); in visit() local
219 List<R> result = new ArrayList<>(); in visit() local
240 List<R> result = new ArrayList<>(); in visit() local
261 List<R> result = new ArrayList<>(); in visit() local
[all …]
/external/cronet/base/
Dpickle_fuzzer.cc35 bool result = 0; in LLVMFuzzerTestOneInput() local
40 int result = 0; in LLVMFuzzerTestOneInput() local
45 long result = 0; in LLVMFuzzerTestOneInput() local
50 uint16_t result = 0; in LLVMFuzzerTestOneInput() local
55 uint32_t result = 0; in LLVMFuzzerTestOneInput() local
60 int64_t result = 0; in LLVMFuzzerTestOneInput() local
65 uint64_t result = 0; in LLVMFuzzerTestOneInput() local
70 float result = 0; in LLVMFuzzerTestOneInput() local
75 double result = 0; in LLVMFuzzerTestOneInput() local
80 std::string result; in LLVMFuzzerTestOneInput() local
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DNullConversionsForContentTest.java52 NullContentUndefined<List<String>> result = MAPPER.readValue(JSON, listType); in testFailOnNullFromDefaults() local
86 NullContentFail<List<Integer>> result = MAPPER.readValue(aposToQuotes("{'nullsOk':[null]}"), in testFailOnNullWithCollections() local
201 NullContentAsEmpty<List<Integer>> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithCollections() local
209 NullContentAsEmpty<List<String>> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithCollections() local
224 NullContentUndefined<List<Integer>> result = mapper.readValue(JSON, listType); in testNullsAsEmptyUsingDefaults() local
244 NullContentAsEmpty<String[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithArrays() local
257 NullContentAsEmpty<int[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
265 NullContentAsEmpty<long[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
273 NullContentAsEmpty<boolean[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
285 NullContentAsEmpty<Map<String,String>> result in testNullsAsEmptyWithMaps() local
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
89 uint32_t result; in __TZ_get_CONTROL_NS() local
128 uint32_t result; in __get_IPSR() local
143 uint32_t result; in __TZ_get_IPSR_NS() local
158 uint32_t result; in __get_APSR() local
173 uint32_t result; in __TZ_get_APSR_NS() local
188 uint32_t result; in __get_xPSR() local
203 uint32_t result; in __TZ_get_xPSR_NS() local
218 register uint32_t result; in __get_PSP() local
233 register uint32_t result; in __TZ_get_PSP_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
107 uint32_t result; in __get_IPSR() local
121 uint32_t result; in __get_APSR() local
136 uint32_t result; in __get_xPSR() local
150 register uint32_t result; in __get_PSP() local
175 register uint32_t result; in __get_MSP() local
201 uint32_t result; in __get_PRIMASK() local
250 uint32_t result; in __get_BASEPRI() local
287 uint32_t result; in __get_FAULTMASK() local
317 uint32_t result; in __get_FPSCR() local
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
89 uint32_t result; in __TZ_get_CONTROL_NS() local
128 uint32_t result; in __get_IPSR() local
143 uint32_t result; in __TZ_get_IPSR_NS() local
158 uint32_t result; in __get_APSR() local
173 uint32_t result; in __TZ_get_APSR_NS() local
188 uint32_t result; in __get_xPSR() local
203 uint32_t result; in __TZ_get_xPSR_NS() local
218 register uint32_t result; in __get_PSP() local
233 register uint32_t result; in __TZ_get_PSP_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
107 uint32_t result; in __get_IPSR() local
121 uint32_t result; in __get_APSR() local
136 uint32_t result; in __get_xPSR() local
150 register uint32_t result; in __get_PSP() local
175 register uint32_t result; in __get_MSP() local
201 uint32_t result; in __get_PRIMASK() local
250 uint32_t result; in __get_BASEPRI() local
287 uint32_t result; in __get_FAULTMASK() local
317 uint32_t result; in __get_FPSCR() local
[all …]
/external/mesa3d/src/mesa/program/
Dprog_execute.c407 GLfloat a[4], result[4]; in _mesa_execute_program() local
418 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
483 GLfloat a[4], b[4], c[4], result[4]; in _mesa_execute_program() local
503 GLfloat a[4], result[4]; in _mesa_execute_program() local
512 GLfloat result[4]; in _mesa_execute_program() local
519 GLfloat result[4]; in _mesa_execute_program() local
526 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
539 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
552 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
566 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/ranges/range.adaptors/range.copy.wrap/
Dassign.move.pass.cpp34 Box& result = (x = std::move(y)); in test() local
44 Box& result = (x = std::move(x)); in test() local
61 Box& result = (x = std::move(y)); in test() local
72 Box& result = (x = std::move(x)); in test() local
90 Box& result = (x = std::move(y)); in test() local
101 Box& result = (x = std::move(x)); in test() local
119 Box& result = (x = std::move(y)); in test() local
130 Box& result = (x = std::move(x)); in test() local
148 Box& result = (x = std::move(y)); in test() local
158 Box& result = (x = std::move(x)); in test() local
[all …]
/external/libchrome-gestures/tools/
Dtouchtests-report.json6 "result": "incomplete", string
13 "result": "incomplete", string
20 "result": "incomplete", string
27 "result": "incomplete", string
34 "result": "incomplete", string
41 "result": "incomplete", string
48 "result": "success", string
55 "result": "success", string
62 "result": "incomplete", string
69 "result": "incomplete", string
[all …]
/external/armnn/src/backends/cl/test/
DClLayerSupportTests.cpp64 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp16ToFp32Layer, variable
74 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp16ToFp32Layer, variable
85 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp16ToFp32Layer, variable
96 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp32ToFp16Layer, variable
106 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp32ToFp16Layer, variable
117 …bool result = IsConvertLayerSupportedTests<armnn::ClWorkloadFactory, armnn::ConvertFp32ToFp16Layer, variable
128 bool result = IsLogicalBinaryLayerSupportedTests<armnn::ClWorkloadFactory, variable
138 bool result = IsLogicalBinaryLayerBroadcastSupportedTests<armnn::ClWorkloadFactory, variable
148 bool result = IsMeanLayerSupportedTests<armnn::ClWorkloadFactory, variable
158 bool result = IsConstantLayerSupportedTests<armnn::ClWorkloadFactory, variable
/external/cronet/third_party/protobuf/js/experimental/runtime/kernel/
Dbuffer_decoder_test.js104 const result = bufferDecoder.getUnsignedVarint32(); constant
112 const result = bufferDecoder.getUnsignedVarint32(); constant
120 const result = bufferDecoder.getUnsignedVarint32(); constant
128 const result = bufferDecoder.getUnsignedVarint32(); constant
143 const result = bufferDecoder.getUnsignedVarint32(); constant
154 const result = bufferDecoder.getUnsignedVarint32At(1); constant
164 const result = bufferDecoder.getFloat32(0); constant
174 const result = bufferDecoder.getFloat64(0); constant
184 const result = bufferDecoder.getInt32(0); constant
192 const result = bufferDecoder.getInt32(0); constant
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/
Dares-test-live.cc22 HostResult result; in VIRT_NONVIRT_TEST_F() local
32 HostResult result; in VIRT_NONVIRT_TEST_F() local
42 HostResult result; in VIRT_NONVIRT_TEST_F() local
52 HostResult result; in VIRT_NONVIRT_TEST_F() local
80 HostResult result; in TEST_P() local
93 HostResult result; in TEST_P() local
107 HostResult result; in TEST_P() local
120 HostResult result; in TEST_P() local
135 HostResult result; in TEST_P() local
143 HostResult result; in TEST_P() local
[all …]
/external/tensorflow/tensorflow/compiler/xla/stream_executor/platform/default/
Ddso_loader.cc180 static auto result = new auto(DsoLoader::GetCudaDriverDsoHandle()); in GetCudaDriverDsoHandle() local
185 static auto result = new auto(DsoLoader::GetCudaRuntimeDsoHandle()); in GetCudaRuntimeDsoHandle() local
190 static auto result = new auto(DsoLoader::GetCublasDsoHandle()); in GetCublasDsoHandle() local
195 static auto result = new auto(DsoLoader::GetCublasLtDsoHandle()); in GetCublasLtDsoHandle() local
200 static auto result = new auto(DsoLoader::GetCurandDsoHandle()); in GetCurandDsoHandle() local
205 static auto result = new auto(DsoLoader::GetCufftDsoHandle()); in GetCufftDsoHandle() local
210 static auto result = new auto(DsoLoader::GetCusolverDsoHandle()); in GetCusolverDsoHandle() local
215 static auto result = new auto(DsoLoader::GetCusparseDsoHandle()); in GetCusparseDsoHandle() local
220 static auto result = new auto(DsoLoader::GetCuptiDsoHandle()); in GetCuptiDsoHandle() local
225 static auto result = new auto(DsoLoader::GetCudnnDsoHandle()); in GetCudnnDsoHandle() local
[all …]
/external/TestParameterInjector/src/test/java/com/google/testing/junit/testparameterinjector/
DTestInfoTest.java34 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(ImmutableList.of()); in shortenNamesIfNecessary_emptyTestInfos() local
43 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_noParameters() local
61 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_veryLongTestMethodName_noParameters() local
81 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_noShorteningNeeded() local
88 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_singleParameterTooLong_twoParameters() local
117 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_singleParameterTooLong_onlyParameter() local
151 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_tooManyParameters() local
175 ImmutableList<TestInfo> result = TestInfo.deduplicateTestNames(givenTestInfos); in deduplicateTestNames_noDuplicates() local
182 ImmutableList<TestInfo> result = in deduplicateTestNames_duplicateParameterNamesWithDifferentTypes() local
211 ImmutableList<TestInfo> result = in deduplicateTestNames_duplicateParameterNamesWithSameTypes() local
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D067-nested-ifdef-ifndef.c4 #define result success macro
9 #define result failure macro
17 #define result failure macro
23 #define result failure macro
27 #define result success macro
33 #define result failure macro
37 #define result success macro

12345678910>>...435