Searched refs:text (Results 1 - 25 of 900) sorted by relevance

1234567891011>>

/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 };
/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/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dxmlpool.h72 #define DRI_CONF_DESC(lang,text) \
73 "<description lang=\""#lang"\" text=\""text"\"/>\n"
76 #define DRI_CONF_DESC_BEGIN(lang,text) \
77 "<description lang=\""#lang"\" text=\""text"\">\n"
84 #define DRI_CONF_ENUM(value,text) \
85 "<enum value=\""#value"\" text=\""text"\"/>\n"
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A DquartzPasteboard.h42 void QuartzWriteCocoaPasteboard(char *text);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A DquartzPasteboard.h42 void QuartzWriteCocoaPasteboard(char *text);
/vbox/src/VBox/Devices/PC/ipxe/src/include/usr/
H A Dprompt.h12 extern int prompt ( const char *text, unsigned int wait_ms, int key );
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DquartzPasteboard.h43 void QuartzWriteCocoaPasteboard(char *text);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DquartzPasteboard.h43 void QuartzWriteCocoaPasteboard(char *text);
/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/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Config.vfr8 which accompanies this distribution. The full text of the license may be found at
45 text
47 text = STRING_TOKEN(STR_IP6_INTERFACE_NAME),
48 text = STRING_TOKEN(STR_IP6_INTERFACE_NAME_CONTENT);
50 text
52 text = STRING_TOKEN(STR_IP6_INTERFACE_TYPE),
53 text = STRING_TOKEN(STR_IP6_INTERFACE_TYPE_CONTENT);
55 text
57 text = STRING_TOKEN(STR_IP6_MAC_ADDRESS),
58 text
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/
H A DUserProfileManagerVfr.Vfr7 which accompanies this distribution. The full text of the license may be found at
35 text
37 text = STRING_TOKEN(STR_NULL_STRING),
38 text = STRING_TOKEN(STR_NULL_STRING),
62 text = STRING_TOKEN(STR_NULL_STRING);
71 text
73 text = STRING_TOKEN(STR_USER_NAME),
77 text
79 text = STRING_TOKEN(STR_CREATE_DATE);
81 text
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsITimelineService.idl82 * Print "<elapsed time>: <text>\n" in the timeline log file.
84 void mark(in string text);
98 * enter/leave bracket code with "<text>..." and "...<text>" as
101 void enter(in string text);
102 void leave(in string text);
129 extern "C" NS_COM nsresult NS_TimelineMark(const char *text, ...);
130 extern "C" NS_COM nsresult NS_TimelineForceMark(const char *text, ...);
137 extern "C" NS_COM nsresult NS_TimelineEnter(const char *text);
138 extern "C" NS_COM nsresult NS_TimelineLeave(const char *text);
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/sparc/
H A Ddt_isadep.c76 uint32_t *text; local
80 if ((text = malloc(symp->st_size + 4)) == NULL) {
85 if (Pread(P, text, symp->st_size, symp->st_value) != symp->st_size) {
87 free(text);
95 text[symp->st_size / 4] = 0;
108 while (text[i] == FASTTRAP_INSTR) {
118 if (Pread(P, &text[i], 4,
122 free(text);
128 free(text);
134 text[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
H A DPwdCredentialProviderVfr.Vfr7 which accompanies this distribution. The full text of the license may be found at
26 text
28 text = STRING_TOKEN(STR_INPUT_PASSWORD),
29 text = STRING_TOKEN(STR_NULL_STRING),
/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/Devices/PC/ipxe/src/arch/i386/prefix/
H A Dnullprefix.S2 .text
/vbox/src/VBox/Devices/PC/ipxe/src/core/
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/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/i386/
H A Ddt_isadep.c77 uint8_t *text, fasttrap_probe_spec_t *ftp, const GElf_Sym *symp)
90 size = dt_instr_size(&text[i], dtp, pid, symp->st_value + i,
106 if ((text[i] == 0xff && DT_MODRM_REG(text[i + 1]) == 4) ||
107 (dmodel == PR_MODEL_LP64 && (text[i] & 0xf0) == 0x40 &&
108 text[i + 1] == 0xff && DT_MODRM_REG(text[i + 2]) == 4)) {
123 uint8_t *text; local
133 if ((text = calloc(1, symp->st_size + 4)) == NULL) {
138 if (Pread(P, text, sym
76 dt_pid_has_jump_table(struct ps_prochandle *P, dtrace_hdl_t *dtp, uint8_t *text, fasttrap_probe_spec_t *ftp, const GElf_Sym *symp) argument
275 uint8_t *text; local
349 uint8_t *text; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ipf/
H A DCpuPause.s7 /// which accompanies this distribution. The full text of the license may be found at
18 .text
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Tcg/TcgConfigDxe/
H A DTcgConfig.vfr7 which accompanies this distribution. The full text of the license may be found at
31 subtitle text = STRING_TOKEN(STR_NULL);
54 text
56 text = STRING_TOKEN(STR_TPM_STATE_PROMPT),
57 text = STRING_TOKEN(STR_TPM_STATE_CONTENT);
59 subtitle text = STRING_TOKEN(STR_NULL);
83 option text = STRING_TOKEN(STR_DISABLE), value = PHYSICAL_PRESENCE_DISABLE, flags = RESET_REQUIRED;
84 option text = STRING_TOKEN(STR_TPM_ACTIVATE), value = PHYSICAL_PRESENCE_ACTIVATE, flags = RESET_REQUIRED;
85 option text = STRING_TOKEN(STR_TPM_DEACTIVATE), value = PHYSICAL_PRESENCE_DEACTIVATE, flags = RESET_REQUIRED;
86 option text
[all...]
/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 Dparseopt.h30 * @v text Option text
34 int ( * parse ) ( const char *text, void *value );
46 ( ( int ( * ) ( const char *text, void *value ) ) \
48 ( ( int ( * ) ( const char *text, \
117 extern int parse_string ( const char *text, const char **value );
118 extern int parse_integer ( const char *text, unsigned int *value );
119 extern int parse_netdev ( const char *text, struct net_device **netdev );
120 extern int parse_menu ( const char *text, struct menu **menu );
121 extern int parse_flag ( const char *text __unuse
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dfnrec.pl94 my $text = "";
95 $text .= $called_fn_name." (from ".$call_site_location.")";
97 $text .= " { }" x $exit_count;
99 $text .= " { } x ".$exit_count;
103 $text .= " {" x $entry_count;
105 $text .= " { x ".$entry_count;
108 print $indent.$text."\n";
117 my $text = "";
119 $text .= " { }" x $entry_count;
121 $text
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIRichTextLabel.h23 /* QLabel analog to reflect rich-text,
28 Q_PROPERTY(QString text READ text WRITE setText);
36 QString text() const;
50 /* Minimum text-width setter: */
61 /* Minimum text-width: */

Completed in 4140 milliseconds

1234567891011>>