Searched refs:attributes (Results 1 - 25 of 181) sorted by relevance

12345678

/haiku-fatelf/src/bin/coreutils/man/
H A Dinstall.x2 install \- copy files and set attributes
/haiku-fatelf/src/apps/terminal/
H A DTerminalLine.h17 uint32 attributes; member in struct:TerminalCell
24 uint32 attributes; member in struct:TerminalLine
30 attributes = 0;
37 uint32 attributes; member in struct:AttributesRun
48 uint32 attributes; member in struct:HistoryLine
H A DHistoryBuffer.cpp82 uint32 attributes = 0; local
89 // get attributes
92 attributes = attributesRun->attributes;
98 attributes = 0;
109 // set attributes
110 cell.attributes = attributes;
114 cell.attributes |= A_WIDTH;
121 buffer->attributes
132 uint32 attributes = 0; local
[all...]
H A DBasicTerminalBuffer.h88 uint32& attributes) const;
91 uint32& attributes) const;
108 inline void InsertChar(UTF8Char c, uint32 attributes);
110 uint32 attributes);
112 uint32 attributes);
114 uint32 width, uint32 attributes);
244 BasicTerminalBuffer::InsertChar(UTF8Char c, uint32 attributes) argument
246 return InsertChar(c, 1, attributes);
251 BasicTerminalBuffer::InsertChar(const char* c, int32 length, uint32 attributes) argument
253 return InsertChar(UTF8Char(c, length), 1, attributes);
258 InsertChar(const char* c, int32 length, uint32 width, uint32 attributes) argument
[all...]
/haiku-fatelf/src/apps/devices/
H A DDeviceSCSI.cpp83 Attributes attributes; local
84 attributes.push_back(GetAttribute(B_TRANSLATE("Device class")));
85 attributes.push_back(GetAttribute(B_TRANSLATE("Device name")));
86 attributes.push_back(GetAttribute(B_TRANSLATE("Manufacturer")));
87 attributes.push_back(GetAttribute("scsi/revision"));
88 attributes.push_back(GetAttribute("scsi/target_id"));
89 attributes.push_back(GetAttribute("scsi/target_lun"));
90 return attributes;
H A DDevice.cpp115 Attributes attributes; local
116 attributes.push_back(Attribute(B_TRANSLATE("Device name:"), GetName()));
117 attributes.push_back(Attribute(B_TRANSLATE("Manufacturer:"),
119 return attributes;
126 Attributes attributes; local
127 attributes.push_back(Attribute("None", ""));
128 return attributes;
135 Attributes attributes; local
138 attributes.push_back(Attribute(iter->first, iter->second));
140 return attributes;
[all...]
H A DDeviceACPI.cpp81 Attributes attributes; local
82 attributes.push_back(GetAttribute("device/bus"));
83 attributes.push_back(GetAttribute("acpi/path"));
84 attributes.push_back(GetAttribute("acpi/type"));
85 return attributes;
H A DDevicesView.cpp242 Attributes attributes; local
245 // Copy all its attributes,
275 attributes.push_back(Attribute(attr.name, attrString));
279 for (unsigned int i = 0; i < attributes.size(); i++) {
281 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
282 && attributes[i].fValue == "Devices Root") {
289 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
290 && attributes[i].fValue == "ACPI") {
297 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
298 && attributes[
[all...]
H A DPropertyList.cpp70 PropertyList::AddAttributes(const Attributes& attributes) argument
73 for (unsigned int i = 0; i < attributes.size(); i++) {
74 AddRow(new PropertyRow(attributes[i].fName, attributes[i].fValue));
H A DPropertyListPlain.cpp40 PropertyListPlain::AddAttributes(const Attributes& attributes) argument
45 for (i = 0; i < attributes.size(); i++) {
46 const char* name = attributes[i].fName;
47 const char* value = attributes[i].fValue;
H A DPropertyListPlain.h23 virtual void AddAttributes(const Attributes& attributes);
H A DDevicePCI.cpp58 // Process the attributes
119 Attributes attributes; local
120 attributes.push_back(GetAttribute(B_DEVICE_TYPE));
121 attributes.push_back(GetAttribute(B_DEVICE_SUB_TYPE));
122 attributes.push_back(GetAttribute(B_DEVICE_INTERFACE));
123 attributes.push_back(GetAttribute(B_DEVICE_VENDOR_ID));
124 attributes.push_back(GetAttribute(B_DEVICE_ID));
125 return attributes;
/haiku-fatelf/src/tests/kits/interface/picture/
H A DSVGViewView.cpp220 bool Svg2PictureView::HasAttribute(const XML_Char **attributes, const char *name) {
221 while (*attributes && strcasecmp(*attributes, name) != 0)
222 attributes += 2;
224 return (*attributes);
227 float Svg2PictureView::GetFloatAttribute(const XML_Char **attributes, const char *name) {
228 while (*attributes && strcasecmp(*attributes, name) != 0)
229 attributes += 2;
231 if (*attributes)
473 GetShapeAttribute(const XML_Char **attributes, const char *name, BShape &shape) argument
872 CheckAttributes(const XML_Char **attributes) argument
982 StartElement(const XML_Char *name, const XML_Char **attributes) argument
1256 _StartElement(Svg2PictureView *view, const XML_Char *name, const XML_Char **attributes) argument
[all...]
H A DSVGViewView.h88 bool HasAttribute(const XML_Char **attributes, const char *name);
89 float GetFloatAttribute(const XML_Char **attributes, const char *name);
90 const char *GetStringAttribute(const XML_Char **attributes, const char *name);
91 rgb_color GetColorAttribute(const XML_Char **attributes, const char *name, uint8 alpha);
92 void GetPolygonAttribute(const XML_Char **attributes, const char *name, BShape &shape);
93 void GetMatrixAttribute(const XML_Char **attributes, const char *name, BMatrix *matrix);
94 void GetShapeAttribute(const XML_Char **attributes, const char *name, BShape &shape);
95 void CheckAttributes(const XML_Char **attributes);
96 void StartElement(const XML_Char *name, const XML_Char **attributes);
103 static void _StartElement(Svg2PictureView *view, const XML_Char *name, const XML_Char **attributes);
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DColumnUpdateEmitter.java62 org.xml.sax.Attributes attributes,
71 AttributeCollection attr = new AttributeCollection(namePool, attributes);
79 attributes = attr;
81 AttributeCollection attr = new AttributeCollection(namePool, attributes);
89 attributes = attr;
92 rtfEmitter.startElement(nameCode, attributes, namespaces, nscount);
61 startElement(int nameCode, org.xml.sax.Attributes attributes, int[] namespaces, int nscount) argument
H A DColumnScanEmitter.java135 org.xml.sax.Attributes attributes,
154 if (attributes.getValue("width") == null) {
157 width[numColumns++] = attributes.getValue("width");
160 if (attributes.getValue("column-width") == null) {
163 width[numColumns++] = attributes.getValue("column-width");
134 startElement(int nameCode, org.xml.sax.Attributes attributes, int[] namespaces, int nscount) argument
/haiku-fatelf/src/kits/mail/
H A DHaikuMailFormatFilter.cpp96 BMessage attributes; local
97 // TODO: attributes.AddInt32(B_MAIL_ATTR_CONTENT, length);
98 attributes.AddInt32(B_MAIL_ATTR_ACCOUNT_ID, fAccountID);
99 attributes.AddString(B_MAIL_ATTR_ACCOUNT, fAccountName);
119 attributes.AddString(gDefaultFields[i].attr_name, target);
128 attributes.AddData(B_MAIL_ATTR_WHEN, B_TIME_TYPE, &when,
135 BString senderName = _ExtractName(attributes.FindString(B_MAIL_ATTR_FROM));
136 attributes.AddString(B_MAIL_ATTR_NAME, senderName);
140 BString name = attributes.FindString(B_MAIL_ATTR_SUBJECT);
144 attributes
[all...]
/haiku-fatelf/src/bin/bash/
H A Dvariables.h92 int attributes; /* export, readonly, array, invisible... */ member in struct:variable
102 /* The various attributes that a given variable can have. */
103 /* First, the user-visible attributes */
120 /* Internal attributes used for bookkeeping */
130 /* Internal attributes used for variable scoping. */
136 #define exported_p(var) ((((var)->attributes) & (att_exported)))
137 #define readonly_p(var) ((((var)->attributes) & (att_readonly)))
138 #define array_p(var) ((((var)->attributes) & (att_array)))
139 #define function_p(var) ((((var)->attributes) & (att_function)))
140 #define integer_p(var) ((((var)->attributes)
[all...]
/haiku-fatelf/src/system/libroot/posix/pthread/
H A Dpthread.cpp103 thread_creation_attributes* attributes)
114 attributes->entry = entryFunction;
115 attributes->name = name;
116 attributes->priority = attr->sched_priority;
117 attributes->args1 = argument1;
118 attributes->args2 = argument2;
119 attributes->stack_address = NULL;
120 attributes->stack_size = attr->stack_size;
121 attributes->guard_size = attr->guard_size;
122 attributes
100 __pthread_init_creation_attributes(const pthread_attr_t* pthreadAttributes, pthread_t thread, status_t (*entryFunction)(void*, void*), void* argument1, void* argument2, const char* name, thread_creation_attributes* attributes) argument
[all...]
/haiku-fatelf/headers/private/kernel/vm/
H A DVMTranslationMap.h35 uint32 attributes, uint32 memoryType,
59 uint32 attributes, uint32 memoryType) = 0;
61 uint32 attributes);
63 uint32 attributes);
131 VMTranslationMap::ProtectPage(VMArea* area, addr_t address, uint32 attributes) argument
133 return Protect(address, address + B_PAGE_SIZE - 1, attributes,
140 VMTranslationMap::ProtectArea(VMArea* area, uint32 attributes) argument
142 return Protect(area->Base(), area->Base() + area->Size() - 1, attributes,
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dattributes.h30 const xmlChar *attributes);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/client/
H A DShareAttrDir.cpp176 // get the attributes
177 Attribute** attributes = NULL;
179 status_t error = _GetAttributes(dirInfo, attributes, count);
182 ArrayDeleter<Attribute*> _(attributes);
184 // add the attributes
186 fAttributes.Insert(attributes[i]);
205 // allocate an array for the old attributes
212 // get the new attributes
246 // remove the old attributes
253 // add the new attributes
427 Attribute** attributes = NULL; local
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DShareAttrDir.cpp176 // get the attributes
177 Attribute** attributes = NULL;
179 status_t error = _GetAttributes(dirInfo, attributes, count);
182 ArrayDeleter<Attribute*> _(attributes);
184 // add the attributes
186 fAttributes.Insert(attributes[i]);
205 // allocate an array for the old attributes
212 // get the new attributes
246 // remove the old attributes
253 // add the new attributes
427 Attribute** attributes = NULL; local
[all...]
/haiku-fatelf/src/kits/game/
H A DGameSoundBuffer.cpp208 GameSoundBuffer::GetAttributes(gs_attribute * attributes, argument
212 switch (attributes[i].attribute) {
214 attributes[i].value = fGain;
216 attributes[i].duration = fGainRamp->duration;
220 attributes[i].value = fPan;
222 attributes[i].duration = fPanRamp->duration;
226 attributes[i].value = (fLooping) ? -1.0 : 0.0;
227 attributes[i].duration = bigtime_t(0);
231 attributes[i].value = 0.0;
232 attributes[
242 SetAttributes(gs_attribute * attributes, size_t attributeCount) argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/bfs_shell/
H A Dadditional_commands.c18 fs_off_t files = 0, directories = 0, indices = 0, attributeDirectories = 0, attributes = 0; local
66 attributes++;
83 files, directories, attributes, attributeDirectories, indices);

Completed in 99 milliseconds

12345678