Searched refs:state (Results 251 - 275 of 2419) sorted by relevance

<<11121314151617181920>>

/external/kernel-headers/original/linux/
H A Dtextsearch.h21 * struct ts_state - search state
69 * @state: search state
74 * a new search. May store/read persistant values in state->cb.
79 struct ts_state *state);
84 * @state: search state
90 struct ts_state *state);
96 * @state: search state
105 textsearch_next(struct ts_config *conf, struct ts_state *state) argument
124 textsearch_find(struct ts_config *conf, struct ts_state *state) argument
[all...]
/external/srtp/crypto/include/
H A Dprng.h24 v128_t state; /* state data */ member in struct:__anon9955
43 aes_icm_ctx_t state; /* state data */ member in struct:__anon9956
/external/webkit/Source/WebCore/bindings/generic/
H A DGenericBinding.h43 // Class to represent execution state for each language binding.
47 // Common notion of execution state for language bindings.
54 KURL completeURL(State<Binding>* state, const String& relativeURL) argument
58 Frame* frame = state->firstFrame();
/external/webkit/Source/WebCore/dom/
H A DTraversal.cpp41 short Traversal::acceptNode(ScriptState* state, Node* node) const argument
51 return m_filter->acceptNode(state, node);
/external/webkit/Source/WebCore/platform/efl/
H A DLoggingEfl.cpp53 channel->state = WTFLogChannelOn;
61 LogNotYetImplemented.state = WTFLogChannelOn;
/external/webkit/Source/WebCore/platform/gtk/
H A DLoggingGtk.cpp54 channel->state = WTFLogChannelOn;
61 LogNotYetImplemented.state = WTFLogChannelOn;
/external/webkit/Source/WebCore/platform/qt/
H A DLoggingQt.cpp47 channel->state = WTFLogChannelOn;
52 LogNotYetImplemented.state = WTFLogChannelOn;
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
H A Dcombo.edc80 state: "default" 0.0;
89 state: "default" 0.0;
103 state: "default" 0.0;
111 state: "disabled" 0.0;
116 state: "hovered" 0.0;
124 state: "focused" 0.0;
132 state: "pressed" 0.0;
146 state: "default" 0.0;
163 state: "default" 0.0;
172 state
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dcpu_mac.cc45 for (int state = 0; state < 2; state++)
47 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
110 for (int state = 0; state < 2; state++)
112 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
/external/opencv/cvaux/src/
H A Dcvhmm1d.cpp89 /* set initial state probabilities */
168 obs->state = (int*)icvAlloc( 2 * total * sizeof(int) );
184 icvFree( &(obs_info->state) );
252 hmm->u.state = all_states;
273 icvFree( &(hmm->u.state->mu) );
274 icvFree( &(hmm->u.state) );
291 first_state = hmm->u.state;
296 int state = (i * hmm->num_states)/obs_info->obs_x;
297 obs_info->state[i] = state;
[all...]
/external/elfutils/libelf/
H A Delf32_newehdr.c59 if (elf->state.ELFW(elf,LIBELFBITS).ehdr == NULL)
62 elf->state.ELFW(elf,LIBELFBITS).ehdr =
63 &elf->state.ELFW(elf,LIBELFBITS).ehdr_mem;
66 memset (elf->state.ELFW(elf,LIBELFBITS).ehdr, '\0',
70 elf->state.ELFW(elf,LIBELFBITS).ehdr_flags |= ELF_F_DIRTY;
73 result = elf->state.ELFW(elf,LIBELFBITS).ehdr;
H A Delf_nextscn.c45 || (offsetof (Elf, state.elf32.scns)
46 == offsetof (Elf, state.elf64.scns)))
48 if (elf->state.elf32.scns.cnt > 1)
49 result = &elf->state.elf32.scns.data[1];
53 if (elf->state.elf64.scns.cnt > 1)
54 result = &elf->state.elf64.scns.data[1];
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddomconfigschematype1.js86 var state;
98 state = domConfig.getParameter(parameter);
118 state = domConfig.getParameter(parameter);
119 assertEquals("setDTDEffective",dtdType,state);
143 state = domConfig.getParameter(parameter);
144 assertEquals("setSchemaEffective",xmlSchemaType,state);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dupdatechangelogswithreviewer.py54 def run(self, state):
55 bug_id = state.get("bug_id")
56 if not bug_id and state.get("patch"):
57 bug_id = state.get("patch").bug_id()
71 for changelog_path in self.cached_lookup(state, "changelogs"):
75 self.did_modify_checkout(state)
/external/dropbear/libtomcrypt/src/mac/pelican/
H A Dpelican.c15 Pelican MAC, initialize state, by Tom St Denis
25 Initialize a Pelican state
26 @param pelmac The Pelican state to initialize
48 zeromem(pelmac->state, 16);
49 aes_ecb_encrypt(pelmac->state, pelmac->state, &pelmac->K);
60 LOAD32H(s0, pelmac->state );
61 LOAD32H(s1, pelmac->state + 4);
62 LOAD32H(s2, pelmac->state + 8);
63 LOAD32H(s3, pelmac->state
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_vendor_test.c26 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
30 static const char * eap_vendor_test_state_txt(int state) argument
32 switch (state) {
48 int state)
51 eap_vendor_test_state_txt(data->state),
52 eap_vendor_test_state_txt(state));
53 data->state = state;
64 data->state = INIT;
91 wpabuf_put_u8(req, data->state
47 eap_vendor_test_state(struct eap_vendor_test_data *data, int state) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_vendor_test.c26 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
30 static const char * eap_vendor_test_state_txt(int state) argument
32 switch (state) {
48 int state)
51 eap_vendor_test_state_txt(data->state),
52 eap_vendor_test_state_txt(state));
53 data->state = state;
64 data->state = INIT;
91 wpabuf_put_u8(req, data->state
47 eap_vendor_test_state(struct eap_vendor_test_data *data, int state) argument
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_vendor_test.c26 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
30 static const char * eap_vendor_test_state_txt(int state) argument
32 switch (state) {
48 int state)
51 eap_vendor_test_state_txt(data->state),
52 eap_vendor_test_state_txt(state));
53 data->state = state;
64 data->state = INIT;
91 wpabuf_put_u8(req, data->state
47 eap_vendor_test_state(struct eap_vendor_test_data *data, int state) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_vendor_test.c26 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
30 static const char * eap_vendor_test_state_txt(int state) argument
32 switch (state) {
48 int state)
51 eap_vendor_test_state_txt(data->state),
52 eap_vendor_test_state_txt(state));
53 data->state = state;
64 data->state = INIT;
91 wpabuf_put_u8(req, data->state
47 eap_vendor_test_state(struct eap_vendor_test_data *data, int state) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp111 const ProgramState *state = Pred->getState(); local
115 SVal V = state->getSVal(tempExpr);
121 state = state->bindLoc(loc::MemRegionVal(R), V);
122 MakeNode(Dst, ME, Pred, state->BindExpr(ME, loc::MemRegionVal(R)));
188 const ProgramState *state = (*NI)->getState();
191 state = state->bindLoc(loc::MemRegionVal(ThisR), loc::MemRegionVal(Dest));
192 if (ExplodedNode *N = Builder->generateNode(Loc, state, *NI))
207 const ProgramState *state local
234 const ProgramState *state = Pred->getState(); local
255 const ProgramState *state = Pred->getState(); local
274 const ProgramState *state = (*I)->getState(); local
323 const ProgramState *state = (*I)->getState(); local
336 const ProgramState *state = Pred->getState(); local
[all...]
/external/chromium/chrome/browser/geolocation/
H A Dgeolocation_settings_state_unittest.cc27 GeolocationSettingsState state(&profile);
34 state.DidNavigate(load_committed_details);
38 state.OnGeolocationPermissionSet(url_0, true);
43 state.OnGeolocationPermissionSet(url_1, false);
46 state.state_map();
51 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
74 state.OnGeolocationPermissionSet(url_0, false);
78 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
100 state.OnGeolocationPermissionSet(url_0, true);
103 state
[all...]
/external/chromium/chrome/browser/ui/views/
H A Daccessibility_event_router_views.cc118 ui::AccessibleViewState state; local
119 view->GetAccessibleState(&state);
120 return UTF16ToUTF8(state.name);
239 ui::AccessibleViewState state; local
240 view->GetAccessibleState(&state);
241 ui::AccessibilityTypes::Role role = state.role;
254 ui::AccessibleViewState state; local
255 view->GetAccessibleState(&state);
256 std::string name = UTF16ToUTF8(state.name);
258 std::string value = UTF16ToUTF8(state
265 ui::AccessibleViewState state; local
278 ui::AccessibleViewState state; local
289 ui::AccessibleViewState state; local
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h50 // final weight even if the state is non-final to mark it as
89 // Gets a state from its ID; state must exist.
97 // Gets a state from its ID; state must exist.
105 // Gets a state from its ID; return 0 if it doesn't exist.
115 // Gets a state from its ID; add it if necessary.
118 return cache_first_state_; // Return 1st cached state
120 cache_first_state_id_ = s; // Remember 1st cached state
125 cache_first_state_id_ = s; // Reuse 1st cached state
165 S *state = ExtendState(s); local
171 S *state = ExtendState(s); local
177 S *state = ExtendState(s); local
199 S *state = ExtendState(s); local
208 const S *state = CheckState(s); local
219 const S *state = CheckState(s); local
229 const S *state = GetState(s); local
234 const S *state = GetState(s); local
239 const S *state = GetState(s); local
244 const S *state = GetState(s); local
250 const S *state = GetState(s); local
285 S* state = VectorFstBaseImpl<S>::GetState(s); local
[all...]
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/progressbar/
H A Dprogressbar.edc51 state: "default" 0.0;
61 state: "default" 0.0;
65 state: "hidden" 0.0;
76 state: "default" 0.0;
98 state: "default" 0.0;
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/cancel/
H A Dsearch_cancel.edc57 state: "default" 0.0;
66 state: "disabled" 0.0;
71 state: "hovered" 0.0;
75 state: "focused" 0.0;
79 state: "pressed" 0.0;

Completed in 4689 milliseconds

<<11121314151617181920>>