Searched defs:text (Results 1 - 25 of 104) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/
H A DInterruptTable.asm9 ; full text of the license may be found at
17 text SEGMENT label
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A Dcharptr.c47 zzcr_attr(Attrib *a,int token,char *text) argument
49 zzcr_attr(a,token,text)
52 char *text;
55 *a = (char *) malloc(strlen(text)+1); /* MR6 */
57 strcpy(*a, text);
H A Dcharbuf.h1 /* ANTLR attribute definition -- constant width text
41 typedef struct { char text[D_TextSize]; } Attrib; member in struct:__anon10263
43 #define zzcr_attr(a,tok,t) strncpy((a)->text, t, D_TextSize-1); \
44 (a)->text[D_TextSize-1] = '\0';
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprerr.c44 static const struct PRErrorMessage text[] = { variable in typeref:struct:PRErrorMessage
124 static const struct PRErrorTable et = { text, "prerr", -6000L, 76 };
H A Dprerror.c63 PR_IMPLEMENT(void) PR_SetErrorText(PRIntn textLength, const char *text) argument
88 memcpy(thread->errorString, text, textLength+1 );
99 PR_IMPLEMENT(PRInt32) PR_GetErrorText(char *text)
103 memcpy(text, thread->errorString, thread->errorStringLength+1);
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dprompt.c36 * @v text Prompt string
44 int prompt ( const char *text, unsigned int wait_ms, int key ) { argument
48 printf ( "%s", text );
54 while ( *(text++) )
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/
H A Dslang_log.h32 char *text; member in struct:slang_info_log_
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Derrortab.h16 const char *text; member in struct:errortab
25 .text = __einfo_desc ( einfo ), \
H A Dmenu.h33 const char *text; member in struct:menu_item
42 const char *text, int shortcut,
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcbase.cpp47 PRSize RCBase::CopyErrorText(char *text) { return PR_GetErrorText(text); } argument
52 void RCBase::SetErrorText(PRSize text_length, const char *text) argument
53 { PR_SetErrorText(text_length, text); }
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dconfig_cmd.c49 * @v text Text
53 static int parse_settings ( const char *text, struct settings **value ) { argument
56 assert ( text != NULL );
59 *value = find_settings ( text );
61 printf ( "\"%s\": no such scope\n", text );
H A Dgdbstub_cmd.c38 * @v text Text
42 static int parse_gdb_transport ( const char *text, argument
46 assert ( text != NULL );
49 *trans = find_gdb_transport ( text );
52 text );
H A Dfcmgmt_cmd.c41 * @v text Text
45 static int parse_fc_port ( const char *text, struct fc_port **port ) { argument
48 assert ( text != NULL );
51 *port = fc_port_find ( text );
53 printf ( "\"%s\": no such port\n", text );
63 * @v text Text
67 static int parse_fc_port_id ( const char *text, struct fc_port_id *port_id ) { argument
71 assert ( text != NULL );
74 if ( ( rc = fc_id_aton ( text, port_id ) ) != 0 ) {
75 printf ( "\"%s\": invalid port ID\n", text );
89 parse_fc_els_handler( const char *text, struct fc_els_handler **handler ) argument
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQILabelSeparator.cpp47 QString QILabelSeparator::text() const function in class:QILabelSeparator
49 return mLabel->text();
H A DQIRichTextLabel.cpp41 /* Setup text-edit: */
48 /* Tune text-edit viewport palette: */
63 QString QIRichTextLabel::text() const function in class:QIRichTextLabel
71 /* Register passed image in internal text-document: */
94 /* Minimum text-width setter: */
97 /* Remember minimum text width: */
116 /* Set text: */
121 /* Adjust text-edit size: */
126 /* Set minimum text width to corresponding value: */
H A DQIStatusBarIndicator.cpp130 QString QITextStatusBarIndicator::text() const function in class:QITextStatusBarIndicator
132 return m_pLabel->text();
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUILineTextEdit.cpp47 /* We need a text editor */
72 QString UITextEditor::text() const function in class:UITextEditor
79 setWindowTitle(tr("Edit text"));
81 m_pOpenButton->setToolTip(tr("Replaces the current text with the content of a file."));
127 m_strText = te.text();
H A DUILineTextEdit.h42 QString text() const;
73 QString text() const { return m_strText; } function in class:UILineTextEdit
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Ddlltest.c101 char *text = (char*)PR_MALLOC(textLength); local
102 (void)PR_GetErrorText(text);
105 PR_GetError(), PR_GetOSError(), text);
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dwritepng.c154 png_text text[6]; local
158 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
159 text[num_text].key = "Title";
160 text[num_text].text = mainprog_ptr->title;
164 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
165 text[num_text].key = "Author";
166 text[num_text].text = mainprog_ptr->author;
170 text[num_tex
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dmenu.c93 * @v text Text, or NULL
99 const char *text, int shortcut,
108 /* Use empty text if none given */
109 if ( ! text )
110 text = "";
114 text_len = ( strlen ( text ) + 1 /* NUL */ );
127 strcpy ( text_copy, text );
128 item->text = text_copy;
98 add_menu_item( struct menu *menu, const char *label, const char *text, int shortcut, int is_default ) argument
H A Dparseopt.c57 * @v text Text
61 int parse_string ( const char *text, const char **value ) { argument
64 assert ( text != NULL );
67 *value = text;
75 * @v text Text
79 int parse_integer ( const char *text, unsigned int *value ) { argument
83 assert ( text != NULL );
86 *value = strtoul ( text, &endp, 0 );
88 printf ( "\"%s\": invalid integer value\n", text );
98 * @v text Tex
102 parse_netdev( const char *text, struct net_device **netdev ) argument
124 parse_menu( const char *text, struct menu **menu ) argument
162 parse_key( const char *text, unsigned int *key ) argument
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/graphics/
H A DUIGraphicsTextPane.h46 /** Graphics text-pane constructor. */
48 /** Graphics text-pane destructor. */
51 /** Returns whether contained text is empty. */
53 /** Returns contained text. */
54 const UITextTable& text() const { return m_text; } function in class:UIGraphicsTextPane
55 /** Defines contained text. */
56 void setText(const UITextTable &text);
63 /** Update text-layout. */
89 /** Builds new text-layout. */
94 /** Search for hovered anchor in passed text
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DTestHelloXPLoop.cpp50 void ErrorBox(LPSTR text) argument
52 MessageBox(NULL, text, "XP Event Loop", MB_OK | MB_ICONSTOP);
55 void InfoBox(LPSTR text) argument
57 MessageBox(NULL, text, "XP Event Loop", MB_OK | MB_ICONINFORMATION);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dsym.c345 Sym * zzs_new(char *text) argument
347 Sym * zzs_new(text)
348 char *text;
358 p->symbol = zzs_strdup(text);
366 Sym * zzs_newadd(char *text) argument
368 Sym * zzs_newadd(text)
369 char *text;
372 Sym *p = zzs_new(text);
373 if ( p != NULL ) zzs_add(text, p);

Completed in 118 milliseconds

12345