HomeSort by relevance Sort by last modified time
    Searched refs:resolution (Results 101 - 125 of 760) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
EnumDeclarationContextResolutionTest.java 17 package com.github.javaparser.symbolsolver.resolution.javaparser.contexts;
21 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
22 import com.github.javaparser.symbolsolver.core.resolution.Context;
25 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
26 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
27 import com.github.javaparser.symbolsolver.model.resolution.Value;
28 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest;
29 import com.github.javaparser.symbolsolver.resolution.typesolvers.MemoryTypeSolver;
30 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
MethodCallExprContextResolutionTest.java 17 package com.github.javaparser.symbolsolver.resolution.javaparser.contexts;
23 import com.github.javaparser.resolution.MethodUsage;
24 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
25 import com.github.javaparser.resolution.types.ResolvedType;
26 import com.github.javaparser.symbolsolver.core.resolution.Context;
30 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest;
31 import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver;
32 import com.github.javaparser.symbolsolver.resolution.typesolvers.JavaParserTypeSolver;
33 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
LambdaExprContextResolutionTest.java 17 package com.github.javaparser.symbolsolver.resolution.javaparser.contexts;
25 import com.github.javaparser.symbolsolver.core.resolution.Context;
28 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
29 import com.github.javaparser.symbolsolver.model.resolution.Value;
30 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest;
31 import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver;
32 import com.github.javaparser.symbolsolver.resolution.typesolvers.JavaParserTypeSolver;
33 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
SubtypeOfBoundTest.java 1 package com.github.javaparser.symbolsolver.resolution.typeinference.bounds;
3 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
4 import com.github.javaparser.resolution.types.ResolvedReferenceType;
5 import com.github.javaparser.resolution.types.ResolvedType;
6 import com.github.javaparser.resolution.types.ResolvedWildcard;
7 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
9 import com.github.javaparser.symbolsolver.resolution.typeinference.*;
10 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
17 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
SwitchEntryContext.java 22 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
23 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
24 import com.github.javaparser.resolution.types.ResolvedType;
27 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
28 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
30 import com.github.javaparser.symbolsolver.resolution.SymbolDeclarator;
TryWithResourceContext.java 24 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
25 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
26 import com.github.javaparser.resolution.types.ResolvedType;
28 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
29 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
30 import com.github.javaparser.symbolsolver.model.resolution.Value;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
JavaParserConstructorDeclaration.java 20 import com.github.javaparser.resolution.declarations.ResolvedClassDeclaration;
21 import com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration;
22 import com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration;
23 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
24 import com.github.javaparser.resolution.types.ResolvedType;
26 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
JavaParserSymbolDeclaration.java 26 import com.github.javaparser.resolution.declarations.ResolvedTypeDeclaration;
27 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
28 import com.github.javaparser.resolution.types.ResolvedArrayType;
29 import com.github.javaparser.resolution.types.ResolvedPrimitiveType;
30 import com.github.javaparser.resolution.types.ResolvedType;
33 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
JavaParserMethodDeclaration.java 22 import com.github.javaparser.resolution.MethodUsage;
23 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
24 import com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration;
25 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
26 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
27 import com.github.javaparser.resolution.types.ResolvedType;
28 import com.github.javaparser.symbolsolver.core.resolution.Context;
32 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
InferenceContextTest.java 19 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
20 import com.github.javaparser.resolution.types.ResolvedReferenceType;
21 import com.github.javaparser.resolution.types.ResolvedType;
22 import com.github.javaparser.resolution.types.ResolvedTypeVariable;
23 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
28 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicClass.cpp 73 const IVec2 resolution = IVec2(TEST_CANVAS_SIZE, TEST_CANVAS_SIZE); local
79 makeImageCreateInfo(resolution, colorFormat, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_BUFFER_USAGE_TRANSFER_SRC_BIT),
87 const Unique<VkFramebuffer> framebuffer (makeFramebuffer(vk, device, *renderPass, *colorAttachmentView, resolution.x(), resolution.y(), 1u));
98 .setRenderSize (resolution)
108 const VkDeviceSize colorBufferSizeBytes = resolution.x()*resolution.y() * tcu::getPixelSize(mapVkFormat(colorFormat));
149 makeExtent2D(resolution.x(), resolution.y()),
178 const VkBufferImageCopy copyRegion = makeBufferImageCopy(makeExtent3D(resolution.x(), resolution.y(), 1), makeImageSubresourceLayers(VK_IMAGE_ASPECT_COLOR_BIT, 0u, 0u, 1u))
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
UnsolvedSymbolException.java 19 import com.github.javaparser.symbolsolver.core.resolution.Context;
20 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
25 * @deprecated Use {@link com.github.javaparser.resolution.UnsolvedSymbolException} instead
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarators/
FieldSymbolDeclarator.java 21 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
23 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
ParameterSymbolDeclarator.java 20 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
22 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionMethodDeclaration.java 20 import com.github.javaparser.resolution.MethodUsage;
21 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
22 import com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration;
23 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
24 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
25 import com.github.javaparser.resolution.types.ResolvedType;
26 import com.github.javaparser.symbolsolver.core.resolution.Context;
28 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
InferenceVariableSubstitution.java 1 package com.github.javaparser.symbolsolver.resolution.typeinference;
3 import com.github.javaparser.resolution.types.ResolvedType;
Instantiation.java 1 package com.github.javaparser.symbolsolver.resolution.typeinference;
4 import com.github.javaparser.resolution.types.ResolvedType;
ProperLowerBound.java 1 package com.github.javaparser.symbolsolver.resolution.typeinference;
3 import com.github.javaparser.resolution.types.ResolvedType;
ProperUpperBound.java 1 package com.github.javaparser.symbolsolver.resolution.typeinference;
3 import com.github.javaparser.resolution.types.ResolvedType;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/resolution/types/
ResolvedPrimitiveTypeTest.java 17 package com.github.javaparser.resolution.types;
19 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
SymbolSolverWithJavassistClassTest.java 17 package com.github.javaparser.symbolsolver.resolution;
19 import com.github.javaparser.resolution.UnsolvedSymbolException;
20 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
23 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
24 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
25 import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver;
26 import com.github.javaparser.symbolsolver.resolution.typesolvers.JarTypeSolver;
27 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
  /external/libxaac/decoder/
ixheaacd_interface.h 75 WORD32 *table_im, WORD32 resolution);
78 WORD32 *table_im, WORD32 resolution);
81 WORD32 *table_im, WORD32 resolution);
84 WORD32 *table_im, WORD32 resolution);
102 VOID ixheaacd_mps_synt_post_fft_twiddle_dec(WORD32 resolution, WORD32 *fin_re,
106 VOID ixheaacd_mps_synt_post_fft_twiddle_armv7(WORD32 resolution, WORD32 *fin_re,
110 VOID ixheaacd_mps_synt_out_calc_dec(WORD32 resolution, WORD32 *out,
113 VOID ixheaacd_mps_synt_out_calc_armv7(WORD32 resolution, WORD32 *out,
  /external/autotest/client/cros/chameleon/
chameleon_measurer_base.py 60 # Get the resolution to make sure Chameleon in a good state.
61 resolution = chameleon_port.get_resolution()
62 logging.info('Detected the resolution: %dx%d', *resolution)
106 # Get the resolution to make sure Chameleon in a good state.
107 resolution = chameleon_port.get_resolution()
108 logging.info('Detected the resolution: %dx%d', *resolution)
  /external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
pause-play.js 26 let resolution;
28 resolution = {w: 300, h: 225};
30 resolution = {w: -1, h: -1}; // -1 is interpreted as disabled
36 new PeerConnection(element, [resolution], cpuOveruseDetection));
  /external/autotest/server/site_tests/display_NoEdid/
display_NoEdid.py 55 resolution = display_facade.get_external_resolution()
56 if resolution not in self.STANDARD_MODE_RESOLUTIONS:
58 resolution)
64 resolution, test_mirrored, errors)

Completed in 332 milliseconds

1 2 3 45 6 7 8 91011>>