/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/ |
H A D | InterruptTable.asm | 9 ; 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 D | charptr.c | 47 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 D | charbuf.h | 1 /* 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 D | prerr.c | 44 static const struct PRErrorMessage text[] = { variable in typeref:struct:PRErrorMessage 124 static const struct PRErrorTable et = { text, "prerr", -6000L, 76 };
|
H A D | prerror.c | 63 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 D | prompt.c | 36 * @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 D | slang_log.h | 32 char *text; member in struct:slang_info_log_
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | errortab.h | 16 const char *text; member in struct:errortab 25 .text = __einfo_desc ( einfo ), \
|
H A D | menu.h | 33 const char *text; member in struct:menu_item 42 const char *text, int shortcut,
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcbase.cpp | 47 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 D | config_cmd.c | 49 * @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 D | gdbstub_cmd.c | 38 * @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 D | fcmgmt_cmd.c | 41 * @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 D | QILabelSeparator.cpp | 47 QString QILabelSeparator::text() const function in class:QILabelSeparator 49 return mLabel->text();
|
H A D | QIRichTextLabel.cpp | 41 /* 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 D | QIStatusBarIndicator.cpp | 130 QString QITextStatusBarIndicator::text() const function in class:QITextStatusBarIndicator 132 return m_pLabel->text();
|
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UILineTextEdit.cpp | 47 /* 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 D | UILineTextEdit.h | 42 QString text() const; 73 QString text() const { return m_strText; } function in class:UILineTextEdit
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | dlltest.c | 101 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 D | writepng.c | 154 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 D | menu.c | 93 * @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 D | parseopt.c | 57 * @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 D | UIGraphicsTextPane.h | 46 /** 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 D | TestHelloXPLoop.cpp | 50 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 D | sym.c | 345 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);
|