Home
last modified time | relevance | path

Searched refs:srcLoc (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/compiler/translator/
DDiagnostics.cpp70 angle::pp::SourceLocation srcLoc; in error() local
71 srcLoc.file = loc.first_file; in error()
72 srcLoc.line = loc.first_line; in error()
73 error(srcLoc, reason, token); in error()
78 angle::pp::SourceLocation srcLoc; in warning() local
79 srcLoc.file = loc.first_file; in warning()
80 srcLoc.line = loc.first_line; in warning()
81 warning(srcLoc, reason, token); in warning()
DParseContext.cpp2431 angle::pp::SourceLocation srcLoc; in handleExtensionDirective() local
2432 srcLoc.file = loc.first_file; in handleExtensionDirective()
2433 srcLoc.line = loc.first_line; in handleExtensionDirective()
2434 mDirectiveHandler.handleExtension(srcLoc, extName, behavior); in handleExtensionDirective()
2442 angle::pp::SourceLocation srcLoc; in handlePragmaDirective() local
2443 srcLoc.file = loc.first_file; in handlePragmaDirective()
2444 srcLoc.line = loc.first_line; in handlePragmaDirective()
2445 mDirectiveHandler.handlePragma(srcLoc, name, value, stdgl); in handlePragmaDirective()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatRegistrationTest.java36 TestFactory(ULocale srcLoc, ULocale swapLoc) { in TestRegistration() argument
37 super(srcLoc); in TestRegistration()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberFormatRegistrationTest.java39 TestFactory(ULocale srcLoc, ULocale swapLoc) { in TestRegistration() argument
40 super(srcLoc); in TestRegistration()
/external/skia/src/gpu/ganesh/d3d/
DGrD3DCommandList.cpp230 D3D12_TEXTURE_COPY_LOCATION srcLoc = {}; in copyTextureToTexture() local
231 srcLoc.pResource = srcTexture; in copyTextureToTexture()
232 srcLoc.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX; in copyTextureToTexture()
233 srcLoc.SubresourceIndex = subresourceIndex; in copyTextureToTexture()
240 fCommandList->CopyTextureRegion(&dstLoc, 0, 0, 0, &srcLoc, nullptr); in copyTextureToTexture()
/external/OpenCL-CTS/test_conformance/profiling/
Dcopy.cpp52 size_t srcLoc, dstLoc; in verify_subimage() local
58 srcLoc = srcj + ( i + srcx ) * element_pitch; in verify_subimage()
61 if( src[srcLoc+k] != dst[dstLoc+k] ){ in verify_subimage()