Home
last modified time | relevance | path

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

12345678910>>...432

/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 …]
DJava7ValidatorTest.java29 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in generics() local
35 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X {de… in defaultMethodWithoutBody() local
41 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try{}")); in tryWithoutAnything() local
47 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(Reader r = new Reader())… in tryWithResourceVariableDeclaration() local
53 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(a.b.c){}")); in tryWithResourceReference() local
59 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("switch(x){case \"abc\": ;}")… in stringsInSwitch() local
65 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("0b01")); in binaryIntegerLiterals() local
71 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("1_000_000")); in underscoresInIntegerLiterals() local
77 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try{}catch(Abc|Def e){}")); in multiCatch() local
104 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("a(() -> 1);")); in noLambdas() local
/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/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/skia/src/sksl/
DSkSLASTNode.cpp23 String result = "{\n"; in description() local
37 String result = (iter++)->description(); in description() local
56 String result = "enum "; in description() local
76 String result; in description() local
91 String result = fd.fModifiers.description(); in description() local
118 String result; in description() local
135 String result = id.fModifiers.description() + " " + id.fTypeName + " {\n"; in description() local
154 String result = (iter++)->description() + " " + pd.fName; in description() local
179 String result; in description() local
192 String result; in description() 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
/external/llvm-project/lldb/unittests/API/
DSBCommandInterpreterTest.cpp37 SBCommandReturnObject &result) { in DoExecute()
52 SBCommandReturnObject result; in TEST_F() local
58 SBCommandReturnObject result; in TEST_F() local
68 SBCommandReturnObject result; in TEST_F() local
75 SBCommandReturnObject result; in TEST_F() local
88 SBCommandReturnObject result; in TEST_F() local
95 SBCommandReturnObject result; in TEST_F() local
106 SBCommandReturnObject result; in TEST_F() local
113 SBCommandReturnObject result; in TEST_F() local
126 SBCommandReturnObject result; in TEST_F() 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/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(k0()); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValueUnsupported() local
102 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesAddToMultimap() local
112 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveThenAddToMultimap() local
133 Collection<V> result = multimap().asMap().get(k0()); in testReflectsMultimapRemove() local
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(k0()); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValueUnsupported() local
102 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesAddToMultimap() local
112 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveThenAddToMultimap() local
133 Collection<V> result = multimap().asMap().get(k0()); in testReflectsMultimapRemove() local
/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/skqp/src/sksl/
DSkSLUtil.h222 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Default() local
229 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version450Core() local
235 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version110() local
242 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in UsesPrecisionModifiers() local
249 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in CannotUseMinAndAbsTogether() local
256 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in CannotUseFractForNegativeValues() local
263 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in MustForceNegatedAtanParamToFloat() local
270 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in ShaderDerivativeExtensionString() local
279 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in FragCoordsOld() local
287 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in FragCoordsNew() local
[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/llvm-project/clang/test/CodeGen/
Dbuiltins-overflow.c244 volatile int result; in test_add_overflow_volatile() local
253 unsigned result; in test_uadd_overflow() local
262 unsigned long result; in test_uaddl_overflow() local
271 unsigned long long result; in test_uaddll_overflow() local
280 unsigned result; in test_usub_overflow() local
289 unsigned long result; in test_usubl_overflow() local
298 unsigned long long result; in test_usubll_overflow() local
307 unsigned result; in test_umul_overflow() local
316 unsigned long result; in test_umull_overflow() local
325 unsigned long long result; in test_umulll_overflow() local
[all …]

12345678910>>...432