Home
last modified time | relevance | path

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

12345678910>>...232

/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/javaparser/javaparser-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 …]
DJava1_2ValidatorTest.java24 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topClass() local
43 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedClass() local
59 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{ void x… in localClass() local
79 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topInterface() local
99 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedInterface() local
116 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in constructor() local
136 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{X(" + a… in constructorParameter() local
158 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in classMethod() local
173 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
190 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x("… in methodParameter() local
[all …]
DJava5ValidatorTest.java25 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in genericsWithoutDiamond() local
31 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topAnnotationDeclaration() local
51 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedAnnotationDeclaration() local
68 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("@interface X{" … in annotationMember() local
89 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topEnum() local
110 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedEnum() local
128 ParseResult<Parameter> result = javaParser.parse(PARAMETER, provider("String... x")); in varargs() local
134 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(X x: xs){}")); in foreach() local
140 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("import static x… in staticImport() local
146 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X extends… in noPrimitiveTypeArguments() 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
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
DJava1_4ValidatorTest.java22 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("assert a;")); in yesAssert() local
28 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in noGenerics() local
37 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("@Abc @Def() @Gh… in noAnnotations() local
47 ParseResult<Parameter> result = javaParser.parse(PARAMETER, provider("String... x")); in novarargs() local
53 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(X x: xs){}")); in noforeach() local
59 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("import static x… in staticImport() local
67 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("int enum;")); in enumAllowedAsIdentifier() local
DJava8ValidatorTest.java23 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X {void a… in localInterface() local
29 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x()… in lambdaParameter() local
52 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
67 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X {de… in defaultMethodWithoutBody() local
73 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("a(() -> 1);")); in lambdas() local
79 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("open module x {… in noModules() local
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java46 R result; in visit() local
73 R result; in visit() local
105 R result; in visit() local
127 R result; in visit() local
154 R result; in visit() local
171 R result; in visit() local
193 R result; in visit() local
215 R result; in visit() local
237 R result; in visit() local
254 R result; in visit() local
[all …]
DGenericListVisitorAdapter.java49 List<R> result = new ArrayList<>(); in visit() local
76 List<R> result = new ArrayList<>(); in visit() local
108 List<R> result = new ArrayList<>(); in visit() local
130 List<R> result = new ArrayList<>(); in visit() local
157 List<R> result = new ArrayList<>(); in visit() local
179 List<R> result = new ArrayList<>(); in visit() local
196 List<R> result = new ArrayList<>(); in visit() local
218 List<R> result = new ArrayList<>(); in visit() local
240 List<R> result = new ArrayList<>(); in visit() local
262 List<R> result = new ArrayList<>(); in visit() 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/swiftshader/third_party/LLVM/cmake/modules/
DVersionFromVCS.cmake6 set(result ${${VERS}}) variable
8 set(result "${result}svn") variable
16 set(result "${result}-r${Project_WC_REVISION}") variable
20 set(result "${result}git") variable
31 set(result "${result}-${git_ref_id}") variable
40 set(result "${result}-svn-${git_svn_rev}") variable
/external/protobuf/src/google/protobuf/util/
Dtime_util.h204 Duration result; variable
210 Duration result = d1; variable
214 Duration result = d1; variable
233 Duration result = d1; variable
271 Timestamp result = t; variable
275 Timestamp result = t; variable
279 Timestamp result = t; variable
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testAddNullValueUnsupported() local
101 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesAddToMultimap() local
115 Collection<V> result = multimap().asMap().get(k0); in testPropagatesRemoveThenAddToMultimap() local
139 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testReflectsMultimapRemove() local
/external/mesa3d/src/mesa/program/
Dprog_execute.c404 GLfloat a[4], result[4]; in _mesa_execute_program() local
415 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
480 GLfloat a[4], b[4], c[4], result[4]; in _mesa_execute_program() local
500 GLfloat a[4], result[4]; in _mesa_execute_program() local
509 GLfloat result[4]; in _mesa_execute_program() local
517 GLfloat result[4]; in _mesa_execute_program() local
525 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
538 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
551 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
565 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
[all …]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestIntervalSet.java72 String result = (s.and(s2)).toString(); in testSimpleAnd() local
80 String result = (s.and(s2)).toString(); in testRangeAndIsolatedElement() local
88 String result = (s.and(s2)).toString(); in testEmptyIntersection() local
96 String result = (s.and(s2)).toString(); in testEmptyIntersectionSingleElements() local
105 String result = (s.complement(vocabulary)).toString(); in testNotSingleElement() local
115 String result = (s.complement(vocabulary)).toString(); in testNotSet() local
123 String result = (s.complement(vocabulary)).toString(); in testNotEqualSet() local
131 String result = (s.complement(vocabulary)).toString(); in testNotSetEdgeElement() local
144 String result = (s.complement(vocabulary)).toString(); in testNotSetFragmentedVocabulary() local
152 String result = (s.subtract(s2)).toString(); in testSubtractOfCompletelyContainedRange() local
[all …]
/external/libchrome/base/time/
Dpr_time_unittest.cc92 PRStatus result = PR_ParseTimeString(time_buf, PR_FALSE, &parsed_time); in TEST_F() local
99 PRStatus result = PR_ParseTimeString("Mon, 15 Oct 2007 19:45:00 GMT", in TEST_F() local
107 PRStatus result = PR_ParseTimeString("15 Oct 07 12:45:00", PR_FALSE, in TEST_F() local
115 PRStatus result = PR_ParseTimeString("15 Oct 07 19:45 GMT", PR_FALSE, in TEST_F() local
123 PRStatus result = PR_ParseTimeString("Mon Oct 15 12:45 PDT 2007", in TEST_F() local
131 PRStatus result = PR_ParseTimeString("Monday, Oct 15, 2007 12:45 PM", in TEST_F() local
139 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00 PM", PR_FALSE, in TEST_F() local
147 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00. PM", PR_FALSE, in TEST_F() local
155 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00.0 PM", PR_FALSE, in TEST_F() local
163 PRStatus result = PR_ParseTimeString("15-OCT-2007 12:45pm", PR_FALSE, in TEST_F() local
[all …]
/external/gemmlowp/meta/
Dquantized_mul_kernels_arm_64.h32 uint8_t* result) { in Multiply()
105 uint8_t* result) { in Multiply()
181 uint8_t* result) { in Multiply()
263 uint8_t* result) { in Multiply()
347 uint8_t* result) { in Multiply()
444 uint8_t* result) { in Multiply()
544 uint8_t* result) { in Multiply()
649 uint8_t* result) { in Multiply()
756 uint8_t* result) { in Multiply()
845 uint8_t* result) { in Multiply()
[all …]
Dquantized_mul_kernels_arm_32.h32 uint8_t* result) { in Multiply()
106 uint8_t* result) { in Multiply()
184 uint8_t* result) { in Multiply()
268 uint8_t* result) { in Multiply()
356 uint8_t* result) { in Multiply()
457 uint8_t* result) { in Multiply()
562 uint8_t* result) { in Multiply()
673 uint8_t* result) { in Multiply()
788 uint8_t* result) { in Multiply()
877 uint8_t* result) { in Multiply()
[all …]
/external/vboot_reference/tests/
Dtest_common.c21 int TEST_EQ(int result, int expected_result, const char* testname) { in TEST_EQ()
34 int TEST_NEQ(int result, int not_expected_result, const char* testname) { in TEST_NEQ()
47 int TEST_PTR_EQ(const void* result, const void* expected_result, in TEST_PTR_EQ()
61 int TEST_PTR_NEQ(const void* result, const void* not_expected_result, in TEST_PTR_NEQ()
75 int TEST_STR_EQ(const char* result, const char* expected_result, in TEST_STR_EQ()
96 int TEST_SUCC(int result, const char* testname) { in TEST_SUCC()
107 int TEST_TRUE(int result, const char* testname) { in TEST_TRUE()
118 int TEST_FALSE(int result, const char* testname) { in TEST_FALSE()
/external/tensorflow/tensorflow/compiler/xla/service/
Dcompile_only_service.h60 ExecuteResponse* result) override { in Execute()
64 ExecuteParallelResponse* result) override { in ExecuteParallel()
69 GetDeviceHandlesResponse* result) override { in GetDeviceHandles()
73 ExecuteAsyncResponse* result) override { in ExecuteAsync()
78 WaitForExecutionResponse* result) override { in WaitForExecution()
83 TransferToServerResponse* result) override { in TransferToServer()
89 TransferToInfeedResponse* result) override { in TransferToInfeed()
95 TransferFromOutfeedResponse* result) override { in TransferFromOutfeed()
100 ResetDeviceResponse* result) override { in ResetDevice()
/external/conscrypt/platform/src/test/java/org/conscrypt/ct/
DCTVerifierTest.java63 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withOCSPResponse() local
73 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withTLSExtension() local
82 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withEmbeddedExtension() local
91 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withoutTimestamp() local
102 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidSignature() local
115 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withUnknownLog() local
129 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidEncoding() local
141 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidOCSPResponse() local
153 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withMultipleTimestamps() local
/external/guava/guava-tests/test/com/google/common/math/
DBigIntegerMathTest.java90 int result = BigIntegerMath.log2(x, mode); in testLog2Floor() local
100 int result = BigIntegerMath.log2(x, mode); in testLog2Ceiling() local
123 int result = BigIntegerMath.log2(x, HALF_UP); in testLog2HalfUp() local
134 int result = BigIntegerMath.log2(x, HALF_DOWN); in testLog2HalfDown() local
178 int result = BigIntegerMath.log10(x, mode); in testLog10Floor() local
189 int result = BigIntegerMath.log10(x, mode); in testLog10Ceiling() local
214 int result = BigIntegerMath.log10(x, HALF_UP); in testLog10HalfUp() local
226 int result = BigIntegerMath.log10(x, HALF_DOWN); in testLog10HalfDown() local
276 BigInteger result = BigIntegerMath.sqrt(x, mode); in testSqrtFloor() local
288 BigInteger result = BigIntegerMath.sqrt(x, mode); in testSqrtCeiling() local

12345678910>>...232