Searched refs:location (Results 1 - 25 of 258) sorted by relevance

1234567891011

/haiku-fatelf/headers/private/package/hpkg/
H A DStacker.h19 Stacker(Type*& location, Type* element) argument
21 fLocation(&location),
22 fPreviousElement(location)
27 Stacker(Type** location, Type* element) argument
29 fLocation(location),
30 fPreviousElement(*location)
/haiku-fatelf/src/add-ons/kernel/drivers/network/wb840/
H A Dinterface.h11 extern int wb_miibus_readreg(wb_device *, int phy_id, int location);
12 extern void wb_miibus_writereg(wb_device *, int phy, int location, int data);
/haiku-fatelf/src/apps/switcher/
H A DSwitcher.cpp54 uint32 location = (uint32)message->FindInt32("location"); local
55 if ((location & fOccupiedLocations) == 0) {
58 if ((location & (kTopEdge | kBottomEdge)) != 0)
61 new PanelWindow(location, which,
63 fOccupiedLocations |= location;
70 uint32 location; local
71 if (message->FindInt32("location", (int32*)&location) == B_OK)
72 fOccupiedLocations &= ~location;
[all...]
H A DCaptureWindow.cpp34 void _Notify(uint32 location, team_id team);
99 uint32 location = kNowhere; local
101 location = kLeftEdge;
103 location = kRightEdge;
105 location = kTopEdge;
107 location = kBottomEdge;
109 if (location != kNowhere)
110 _Notify(location, fLastTeam);
123 uint32 location = kNowhere;
127 location
163 _Notify(uint32 location, team_id team) argument
[all...]
H A DPanelWindow.h14 PanelWindow(uint32 location, uint32 which,
21 BView* _ViewFor(uint32 location, uint32 which,
H A DWindowsView.h17 WindowsView(team_id team, uint32 location);
25 orientation _Orientation(uint32 location);
H A DApplicationsView.h15 ApplicationsView(uint32 location);
/haiku-fatelf/src/kits/storage/disk_device/
H A DDiskDeviceUtils.h19 set_string(char*& location, const char* newString) argument
28 free(location);
29 location = string;
35 #define SET_STRING_RETURN_ON_ERROR(location, string) \
37 status_t error = set_string(location, string); \
/haiku-fatelf/src/tests/kits/interface/layout/widget_layout_test/
H A DTwoDimensionalSliderView.cpp64 BPoint location = fMinLocation + value; local
65 if (location.x < fMinLocation.x)
66 location.x = fMinLocation.x;
67 if (location.y < fMinLocation.y)
68 location.y = fMinLocation.y;
69 if (location.x > fMaxLocation.x)
70 location.x = fMaxLocation.x;
71 if (location.y > fMaxLocation.y)
72 location.y = fMaxLocation.y;
74 if (location !
[all...]
/haiku-fatelf/src/apps/debugger/model/
H A DVariable.cpp15 ValueLocation* location)
20 fLocation(location)
14 Variable(ObjectID* id, const BString& name, Type* type, ValueLocation* location) argument
H A DFileSourceCode.cpp47 FileSourceCode::AddSourceLocation(const SourceLocation& location) argument
51 int32 index = _FindSourceLocationIndex(location, foundMatch);
55 return fSourceLocations.Insert(location, index) ? B_OK : B_NO_MEMORY;
102 FileSourceCode::GetStatementLocationRange(const SourceLocation& location, argument
106 if (location.Line() >= lineCount)
110 int32 index = _FindSourceLocationIndex(location, foundMatch);
133 FileSourceCode::_FindSourceLocationIndex(const SourceLocation& location,
140 if (location <= fSourceLocations[mid])
147 && location == fSourceLocations[lower];
H A DStackFrameValueInfos.cpp42 ValueLocation* location; member in struct:StackFrameValueInfos::InfoEntry
49 location(NULL)
63 void SetInfo(Type* type, ValueLocation* location) argument
67 if (location != NULL)
68 location->AcquireReference();
72 if (this->location != NULL)
73 this->location->ReleaseReference();
76 this->location = location;
147 entry->location
164 SetInfo(ObjectID* variable, TypeComponentPath* path, Type* type, ValueLocation* location) argument
[all...]
H A DFileSourceCode.h29 const SourceLocation& location);
41 const SourceLocation& location,
49 const SourceLocation& location,
/haiku-fatelf/src/apps/debugger/value/value_nodes/
H A DPointerToMemberValueNode.cpp46 // get the location
47 ValueLocation* location = NodeChild()->Location(); local
48 if (location == NULL)
65 status_t error = valueLoader->LoadValue(location, valueType, false,
75 location->AcquireReference();
76 _location = location;
H A DEnumerationValueNode.cpp45 // get the location
46 ValueLocation* location = NodeChild()->Location(); local
47 if (location == NULL)
85 status_t error = valueLoader->LoadValue(location, valueType, true,
95 location->AcquireReference();
96 _location = location;
H A DPrimitiveValueNode.cpp47 // get the location
48 ValueLocation* location = NodeChild()->Location(); local
49 if (location == NULL)
68 status_t error = valueLoader->LoadValue(location, valueType,
87 location->AcquireReference();
88 _location = location;
H A DAddressValueNode.cpp53 // get the location
54 ValueLocation* location = NodeChild()->Location(); local
55 if (location == NULL)
72 status_t error = valueLoader->LoadValue(location, valueType, false,
82 location->AcquireReference();
83 _location = location;
179 // resolve the location
180 ValueLocation* location;
182 location);
189 _location = location;
[all...]
H A DCompoundValueNode.cpp74 // The parent's location refers to the location of the complete
75 // object. We want to extract the location of a member.
80 ValueLocation* location;
82 *parentLocation, location);
89 _location = location;
124 // The parent's location refers to the location of the complete
125 // object. We want to extract the location of a member.
130 ValueLocation* location;
182 ValueLocation* location = NodeChild()->Location(); local
[all...]
/haiku-fatelf/src/apps/debugger/dwarf/
H A DDebugInfoEntry.cpp107 DeclarationLocation* location = const_cast<DebugInfoEntry*>(this) local
109 if (location == NULL || !location->IsFileSet())
112 _file = location->file;
120 DeclarationLocation* location = const_cast<DebugInfoEntry*>(this) local
122 if (location == NULL || !location->IsLineSet())
125 _line = location->line;
133 DeclarationLocation* location = const_cast<DebugInfoEntry*>(this) local
135 if (location
[all...]
/haiku-fatelf/src/apps/debugger/value/
H A DValueLoader.h36 status_t LoadValue(ValueLocation* location,
40 status_t LoadRawValue(BVariant& location,
43 status_t LoadStringValue(BVariant& location,
H A DValueNode.cpp67 ValueNode::SetLocationAndValue(ValueLocation* location, Value* value, argument
70 if (fLocation != location) {
74 fLocation = location;
185 ValueNodeChild::SetLocation(ValueLocation* location, status_t resolutionState) argument
187 if (fLocation != location) {
191 fLocation = location;
/haiku-fatelf/headers/private/kernel/disk_device_manager/
H A DKDiskDeviceUtils.h49 set_string(char *&location, const char *newValue) argument
52 if (location) {
53 free(location);
54 location = NULL;
59 location = strdup(newValue);
60 if (!location)
/haiku-fatelf/src/system/libroot/posix/
H A Ddlfcn.c39 void* location; local
47 &location);
53 return location;
80 void* location; local
84 &imagePath, &symbolName, NULL, &location);
95 info->dli_saddr = location;
/haiku-fatelf/src/kits/interface/
H A DToolTipManager.cpp206 BPoint location = where; local
211 location.x -= size.width + offset.x;
212 if (location.x < screenFrame.left) {
213 location.x = screenFrame.left;
218 location.x -= size.width / 2 - offset.x;
219 if (location.x < screenFrame.left) {
220 location.x = screenFrame.left;
222 } else if (location.x + size.width > screenFrame.right) {
223 location.x = screenFrame.right - size.width;
229 location
[all...]
/haiku-fatelf/src/tests/kits/opengl/glsl/
H A Dshaderutil.h12 GLint location; /**< filled in by InitUniforms() */ member in struct:uniform_info
23 GLint location; member in struct:attrib_info

Completed in 118 milliseconds

1234567891011