Searched refs:to (Results 201 - 225 of 3425) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A DtestAutomata.c80 int from, to; local
91 to = scanNumber(&ptr);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
115 to = scanNumber(&ptr);
116 if (states[to] == NULL)
117 states[to] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], states[to]);
132 int from, to; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s3c24xx/
H A Dsleep.S23 * along with this program; if not, write to the Free Software
62 @@ write our state back to RAM
65 @@ jump to final code to send system to sleep
71 @@ return to the caller, after having the MMU
80 @@ happen to be code... the s3c_sleep_save_phys needs to be
82 @@ This means that the variable has to be close enough for the
83 @@ code to rea
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Ddragimag.tex3 This class is used when you wish to drag an object on the screen,
6 On Windows, the WIN32 API is used to do achieve smooth dragging. On other platforms,
7 wxGenericDragImage is used. Applications may also prefer to use
13 To use this class, when you wish to start dragging an image, create a wxDragImage
15 Call BeginDrag to start, and EndDrag to stop the drag. To move the image,
16 initially call Show and then Move. If you wish to update the screen contents
21 either across the whole screen, or just restricted to one area
22 of the screen to save resources. If you want the user to dra
[all...]
H A Didleevt.tex7 happens and only then is the next idle event sent again. If you need to ensure
14 By default, idle events are sent to all windows (and also
31 To process an idle event, use this event handler macro to direct input to a member
56 Returns {\tt true} if it is appropriate to send idle events to
60 and the wxWS\_EX\_PROCESS\_IDLE style in {\it window} to determine whether idle events should be sent to
63 to only send idle events to window
[all...]
H A Dtexcept.tex18 modern C++ libraries are. For instance, the library doesn't throw exceptions to
19 signal about the errors. Moreover, up to (and including) the version 2.4 of
25 still doesn't use the exceptions by itself but it should be now safe to use the
26 exceptions in the user code and the library tries to help you with this. Please
34 any exceptions by itself and so you don't have to worry about exceptions at all
36 may be not the best one to deal with all possible errors.
38 Another strategy is to use exceptions only to signal truly fatal errors. In
39 this case you probably don't expect to recover from them and the default
40 behaviour -- to simpl
[all...]
H A Dmediactrl.tex17 wxMediaCtrl uses native backends to render media, for example on Windows
45 For general operation, all you need to do is call
46 \helpref{wxMediaCtrl::Load}{wxmediactrlload} to load the file
47 you want to render, catch the EVT\_MEDIA\_LOADED event,
49 to show the video/audio of the media in that event.
62 event to its parent window, at which point the event handler
63 can choose to veto the event, preventing the stream from actually
68 //connect to the media event
90 is gauranteed to start at the beginning of the media. This is
92 on them they return to th
[all...]
H A Drecguard.tex14 wxRecursionGuard is a very simple class which can be used to prevent reentrancy
36 As you can see, wxRecursionGuard simply tests the flag value and sets it to
39 value. The advantage of using this class compared to directly manipulating the
41 you don't risk to forget to do it even if the function returns in an unexpected
61 value of the flag to be able to return the correct value from
72 Note that it is not virtual and so this class is not meant to be derived from
73 (besides, there is absolutely no reason to do it anyhow).
83 (may be simply returning) to preven
[all...]
H A Dsashevt.tex18 To process an activate event, use these event handler macros to direct input to a member
44 When a sash belonging to a sash window is dragged by the user, and then released,
45 this event is sent to the window, where it may be processed by an event table
49 event handler to do that. This is because the application may have to handle other consequences
50 of the resize, or it may wish to veto it altogether. The event handler should
51 look at the drag rectangle: see \helpref{wxSashEvent::GetDragRect}{wxsasheventgetdragrect} to see
52 what the new size of the window would be if the resize were to be applied. It should
53 also call \helpref{wxSashEvent::GetDragStatus}{wxsasheventgetdragstatus} to se
[all...]
H A Dtconfig.tex6 for. All the details about how to use them may be found in the description of
9 features/limitations specific to each one of these versions.
11 The config classes provide a way to store some application configuration
13 probably be used for many other things as well, should be limited to it. It
19 \item Small. For instance, it is not recommended to use the Windows
26 kinds of small to medium volumes of hierarchically-organized, heterogeneous
29 filesystem-like paths to specify the location of a piece of data. In
30 particular, these classes were designed to be as easy to use as possible.
37 In any case, each implementation of wxConfigBase does its best to
[all...]
H A Dsysopt.tex4 applications can use to alter behaviour at run-time. It can be
5 used to optimize behaviour that doesn't deserve a distinct API,
6 but is still important to be able to configure.
15 \twocolitem{filesys.no-mimetypesmanager}{Set to 1 to avoid using the mime types manager in wxFileSystemHandler.
18 style. This restores the way windows are refreshed back to the method used in versions of wxWidgets
21 \twocolitem{msw.notebook.themed-background}{If set to 0, globally disables themed backgrounds on notebook
24 \twocolitem{msw.staticbox.optimized-paint}{If set to 0, switches off optimized wxStaticBox painting.
25 Setting this to
[all...]
H A Dtdocview.tex20 can dramatically simplify the code required to build many kinds of application.
22 The idea is that you can model your application primarily in terms of {\it documents} to store data
23 and provide interface-independent operations upon it, and {\it views} to visualise and manipulate
24 the data. Documents know how to do input and output given stream objects, and views are responsible
26 If a document's data changes, all views should be updated to reflect the change.
30 of popping up file selectors, opening and closing files, asking the user to save
31 modifications, routing menu commands to appropriate (possibly default) code, even
34 and objects to achieve more than the default behaviour.
42 (such as a scrolled window) that are needed for the view(s). You may need to route some events
43 to view
[all...]
H A Dtevent.tex13 An event table is placed in an implementation file to tell wxWidgets how to map
14 events to member functions. These member functions are not virtual functions, but
29 The first two entries map menu commands to two different member functions. The
33 The EVT\_BUTTON macro demonstrates that the originating event does not have to
40 As mentioned before, the member functions that handle events do not have to be
44 functions take an event argument, and the class of event differs according to
75 or private) but that it is probably better to insert it at the end, as shown,
76 because this macro implicitly changes the access to protected which may be
80 tables you may also use \helpref{wxEvtHandler::Connect}{wxevthandlerconnect} to
[all...]
H A Dauimanager.tex8 for a particular wxFrame, using a pane's wxAuiPaneInfo information to
10 uses wxWidgets' sizer mechanism to plan the layout of each frame. It
11 uses a replaceable dock art class to do all drawing, so all drawing is
15 wxAuiManager works as follows: the programmer adds panes to the class,
16 or makes changes to existing pane properties (dock position, floating
18 Update() function is called. This batch processing can be used to avoid
59 A row can allow for two docks to be placed next to each other. One of
60 the most common places for this to happen is in the toolbar. Multiple
65 A layer is akin to a
[all...]
H A Dtthreads.tex11 \helpref{conditions}{wxcondition}. The thread API in wxWidgets resembles to
17 provide some extra error checking (compared to the native (be it Win32 or Posix)
19 projects. Before starting an MT application (or starting to add MT features to
21 to implement the same functionality. Of course, in some situations threads
24 (example: launching a separate thread when doing a long computation to show a
26 dialog example it is far better to do the calculations in the
28 but call \helpref{wxWindow::Update()}{wxwindowupdate} periodically to update
31 If you do decide to use threads in your application, it is strongly recommended
33 it {\it is} possible for many different threads to cal
[all...]
H A Ddebugrptpvw.tex14 This class presents the debug report to the user and allows him to veto report
18 as having a possibility to examine the data which had been gathered to check
55 Present the report to the user and allow him to modify it by removing some or
57 report should be processed or \false if the user chose to cancel report
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/Android/
H A DAndroid.mk4 # release or the NDK. Most users do not want or need to do this; please
13 # Android environment. The only way I've found to do this is tricky. Perform a
15 # "showcommands" to make. The build will eventually fail (because curl_config.h
16 # doesn't exist yet), but the compiler commands used to build curl will be
22 # path to the files libgcc.a, crtbegin_dynamic.o, and ccrtend_android.o.
28 # To see all the LIBS options, you'll need to do the "showcommands" trick on an
29 # executable that's already buildable and watch what flags Android uses to link
30 # it (dhcpcd is a good choice to watch). You'll also want to add -L options to
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/kernel/
H A Dsignal32.c21 * along with this program; if not, write to the Free Software
196 sure to clear the upper 32-bits */
213 the same size and let gcc do the upward conversion to
261 * that we examine the process personality to determine if we need to
381 DBG(1,"setup_sigcontext32: Copying from regs to sc, "
399 copy_siginfo_from_user32 (siginfo_t *to, compat_siginfo_t __user *from) argument
407 err = __get_user(to->si_signo, &from->si_signo);
408 err |= __get_user(to->si_errno, &from->si_errno);
409 err |= __get_user(to
443 copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dsignal.c97 static int copy_sc_to_user(struct sigcontext __user *to, argument
105 err |= __put_user(0, &to->gs);
106 err |= __put_user(0, &to->fs);
112 err |= PUTREG(regs, RDI, to, di);
113 err |= PUTREG(regs, RSI, to, si);
114 err |= PUTREG(regs, RBP, to, bp);
117 * the pt_regs, because that's already been updated to point at the
120 err |= __put_user(sp, &to->sp);
121 err |= PUTREG(regs, RBX, to, bx);
122 err |= PUTREG(regs, RDX, to, d
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/doc/
H A Dip-tunnels.tex30 to create tunnel. It does not work in 2.2.0!
32 A: You are right, it does not work. The command written above is split to two commands.
41 Certainly, if you prefer name \verb|tunl1| to \verb|MY-TUNNEL|,
50 to tunnel net 10.0.0.0 via router 193.233.7.65. It does not
53 to 10.0.0.0 via \verb|tunl0| in routing table.
63 not to check for consistency of gateway address.
65 to cheat kernel:
72 Well, if you like such tricks, nobody may prohibit you to use them.
78 Q: In 2.0.36 I used to load \verb|tunnel| device module and \verb|ipip| module.
89 inner packet to oute
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/maps/
H A Dsbc_gxx.c17 along with this program; if not, write to the Free Software
20 The SBC-MediaGX / SBC-GXx has up to 16 MiB of
42 (to support bzImages up to 638KiB-ish)
71 /* bit 7 of 0x259 must be 1 to enable device. */
88 * single flash device into. If the size if zero we use up to the end of the
124 static void sbc_gxx_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
133 memcpy_fromio(to, iomapadr + (from & WINDOW_MASK), thislen);
135 to += thislen;
149 static void sbc_gxx_copy_to(struct map_info *map, unsigned long to, cons argument
[all...]
H A Dvmax301.c9 to the lower 8k of the device the second is paged. Writing a 16 bit page
10 value to anywhere in the first 8k will cause the second 8k to page around.
13 of flash that is smart enough to copy itself down, page in the rest of
33 /* Actually we could use two spinlocks, but we'd have to have
37 fields pointing to yet another private struct.
65 static void vmax301_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
73 memcpy_fromio(to, map->map_priv_2 + from, thislen);
75 to += thislen;
89 static void vmax301_copy_to(struct map_info *map, unsigned long to, cons argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/kernel/
H A Dcompat_signal.c80 int _sys_private; /* not to be passed to user */
81 int _overrun_incr; /* amount to add to overrun */
180 int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from) argument
184 if (!access_ok(VERIFY_WRITE, to, sizeof(struct compat_siginfo)))
190 to avoid security leaks, but must copy the generic
192 err = __put_user(from->si_signo, &to->si_signo);
193 err |= __put_user(from->si_errno, &to->si_errno);
194 err |= __put_user((short)from->si_code, &to
238 copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/asm/
H A Dpage.h25 * These are used to make use of C type-checking..
29 #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
32 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
44 #define pte_copy(to, from) ({ (to).pte_high = (from).pte_high; \
46 (to).pte_low = (from).pte_low; })
75 #define pte_copy(to, from) ((to)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/test/name-test/
H A Dtmp-session-like-system.conf11 <!-- If we fork, keep the user's original umask to avoid affecting
21 <!-- intended to match system bus -->
23 <!-- All users can connect to system bus -->
43 <!-- Allow anyone to talk to the message bus -->
50 <!-- Specific to the test suite -->
71 to worry about. In some cases, we do set the limits lower than
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/life/setup/wince/
H A Dbuild.bat9 REM You Must modify the following directories to point to the correct locations.
20 @echo "Copying binary to ARM_bins..."
31 @echo Copying setup files to the Deliver directory
43 @echo Edit this batch file to point to the correct directories
52 @echo You need to build %lifeARMBinary%.

Completed in 216 milliseconds

1234567891011>>