Home
last modified time | relevance | path

Searched refs:newLocation (Results 1 – 7 of 7) sorted by relevance

/third_party/glslang/glslang/MachineIndependent/
Diomapper.cpp139 if (at->second.newLocation != -1) in visitSymbol()
140 base->getWritableType().getQualifier().layoutLocation = at->second.newLocation; in visitSymbol()
202 ent.newLocation = -1; in operator ()()
259 ent.newLocation = -1; in operator ()()
506 return ent.newLocation = -1; in resolveUniformLocation()
511 return ent.newLocation = -1; in resolveUniformLocation()
516 return ent.newLocation = -1; in resolveUniformLocation()
519 return ent.newLocation = -1; in resolveUniformLocation()
524 return ent.newLocation = location; in resolveUniformLocation()
528 return ent.newLocation = location; in resolveUniformLocation()
[all …]
Diomapper.h60 int newLocation; member
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactorDebugInfo.cpp179 auto const &newLocation = backtrace[i]; in syncScope() local
181 if(oldLocation.function != newLocation.function) in syncScope()
184 oldLocation.function.name.c_str(), newLocation.function.name.c_str()); in syncScope()
189 if(oldLocation.line > newLocation.line) in syncScope()
192 auto file = getOrCreateFile(newLocation.function.file.c_str()); in syncScope()
193 auto di = diBuilder->createLexicalBlock(scope.di, file, newLocation.line, 0); in syncScope()
195 oldLocation.line, newLocation.line, scope.di, di); in syncScope()
197 scope = { newLocation, di, {}, {} }; in syncScope()
202 scope.location = newLocation; in syncScope()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoamousetap.m104 CGPoint newLocation = CGEventGetLocation(event);
107 newLocation.x = NSMinX(windowRect);
109 newLocation.x = NSMaxX(windowRect) - 1.0;
113 newLocation.y -= (NSMinY(windowRect) - eventLocation.y + 1);
115 newLocation.y += (eventLocation.y - NSMaxY(windowRect));
118 CGWarpMouseCursorPosition(newLocation);
127 CGEventSetLocation(event, newLocation);
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dtest_pointer.dart87 Offset newLocation, {
90 _location = newLocation;
117 Offset newLocation, {
123 _location = newLocation;
147 Offset newLocation, {
156 final Offset delta = newLocation - location;
157 _location = newLocation;
165 position: newLocation,
253 Offset newLocation, {
256 assert(newLocation != null);
[all …]
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterTextInputPlugin.mm437 NSInteger newLocation = (NSInteger)offsetPosition + offset;
438 if (newLocation < 0 || newLocation > (NSInteger)self.text.length) {
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dscaffold.dart1819 void _moveFloatingActionButton(final FloatingActionButtonLocation newLocation) {
1830 _floatingActionButtonLocation = newLocation;