HomeSort by relevance Sort by last modified time
    Searched full:state (Results 351 - 375 of 11839) sorted by null

<<11121314151617181920>>

  /external/v8/src/
ic.h 76 // Alias the inline cache state type to make the IC code more readable.
77 typedef InlineCacheState State;
90 // Get the call-site target; used for determining the state.
94 // Compute the current IC state based on the target stub, receiver and name.
95 static State StateFrom(Code* target, Object* receiver, Object* name);
97 // Clear the inline cache to initial state.
146 State old_state,
198 MUST_USE_RESULT MaybeObject* LoadFunction(State state,
212 State state
    [all...]
  /bootable/bootloader/legacy/libc/
sha.c 51 A = ctx->state[0];
52 B = ctx->state[1];
53 C = ctx->state[2];
54 D = ctx->state[3];
55 E = ctx->state[4];
76 ctx->state[0] += A;
77 ctx->state[1] += B;
78 ctx->state[2] += C;
79 ctx->state[3] += D;
80 ctx->state[4] += E
    [all...]
  /dalvik/libdex/
sha1.h 8 unsigned long state[5]; member in struct:SHA1_CTX
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_RESTORE_STATE.S 2 * This handler restores state following a selfVerification memory access.
  /device/moto/stingray/ril/
wrigley-fetch-mpr.sh 7 for cmd in "state" "-d logs" "files" "-d panic" "atvc"; do
  /external/chromium/chrome/browser/search_engines/
search_provider_install_state_message_filter.h 15 // Handles messages regarding search provider install state on the I/O thread.
28 // Figures out the install state for the search provider.
33 // Starts handling the message requesting the search provider install state.
38 // Sends the reply message about the search provider install state.
  /external/chromium/chrome/browser/sync/
backend_migrator.h 25 enum State {
50 State state() const;
55 State state_;
  /external/chromium/chrome/browser/sync/glue/
frontend_data_type_controller_unittest.cc 152 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
154 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state());
167 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
169 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state());
183 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
185 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
197 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
199 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
208 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
210 EXPECT_EQ(DataTypeController::NOT_RUNNING, frontend_dtc_->state());
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/extension/isAllowedAccess/
popup.html 29 chrome.extension.isAllowedFileSchemeAccess(function(state) {
31 el.textContent = el.className = state ? 'true': 'false';
33 chrome.extension.isAllowedIncognitoAccess(function(state) {
35 el.textContent = el.className = state ? 'true': 'false';
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/
manifest.json 4 "description": "Creates a keyboard shortcut (C + Shift + P) to toggle the pinned state of the currently selected tab",
  /external/chromium/webkit/glue/
p2p_transport.h 19 enum State {
32 // Called when readable of writable state of the stream changes.
33 virtual void OnStateChange(State state) = 0;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 107 /// checker state changes).
114 ExplodedNode *generateNode(const ProgramState *state,
119 ExplodedNode *N = generateNodeImpl(state, isSink, pred, tag);
124 ExplodedNode *generateNode(const ProgramState *state,
127 ExplodedNode *N = generateNodeImpl(state, false, 0, tag);
133 ExplodedNode *generateSink(const ProgramState *state = 0) {
134 return generateNodeImpl(state ? state : getState(), true);
137 void addTransition(const ProgramState *state,
139 assert(state);
    [all...]
  /external/expat/lib/
xmlrole.h 88 int (PTRCALL *handler) (struct prolog_state *state,
107 #define XmlTokenRole(state, tok, ptr, end, enc) \
108 (((state)->handler)(state, tok, ptr, end, enc))
  /external/icu4c/data/mappings/
noop-cns-11643.ucm 23 # (state 0) lead byte, selects the CNS plane (0x80 + plane number)
24 <icu:state> 81-90:1
27 <icu:state> 21-7e:2
28 <icu:state> 21-7e.u
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
HtmlStripFunction.java 35 // The state the strip function can be, normal, in an amp escaped entity or
37 private enum State {
100 State state = State.DEFAULT; local
105 switch (state) {
110 state = State.IN_AMP;
113 state = State.IN_TAG
    [all...]
  /external/kernel-headers/original/asm-arm/
hw_irq.h 14 if (system_timer->dyn_tick->state & DYN_TICK_ENABLED) \
  /external/mesa3d/docs/
openvg.html 3 <TITLE>OpenVG State Tracker</TITLE>
11 <H1>OpenVG State Tracker</H1>
14 The current version of the OpenVG state tracker implements OpenVG 1.0.
22 The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
  /external/oprofile/events/i386/pii/
unit_masks 6 0x08 (M)odified cache state
7 0x04 (E)xclusive cache state
8 0x02 (S)hared cache state
9 0x01 (I)nvalid cache state
  /external/oprofile/events/i386/piii/
unit_masks 6 0x08 (M)odified cache state
7 0x04 (E)xclusive cache state
8 0x02 (S)hared cache state
9 0x01 (I)nvalid cache state
  /external/qemu/
migration.c 180 dprintf("setting error state\n");
181 s->state = MIG_STATE_ERROR;
256 if (s->state != MIG_STATE_ACTIVE) {
257 dprintf("put_ready returning because of non-active state\n");
263 int state; local
270 state = MIG_STATE_ERROR;
272 state = MIG_STATE_COMPLETED;
275 s->state = state;
282 return s->state;
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.cpp 34 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query)
36 ScriptCallback callback(state, m_value);
38 callback.appendArgument(toJS(state, query));
41 v8::Handle<v8::Context> context = state->context();
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 80 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: "disabled" 0.0
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.cpp 162 GetSitesWithDataState* state = new GetSitesWithDataState(this, callbackID); local
163 m_pendingGetSitesWithData.set(callbackID, state);
164 state->getSitesWithDataForNextPlugin();
223 ClearSiteDataState* state = new ClearSiteDataState(this, sitesVector, flags, maxAgeInSeconds, callbackID); local
224 m_pendingClearSiteData.set(callbackID, state);
225 state->clearSiteDataForNextPlugin();
262 GetSitesWithDataState* state = m_pendingGetSitesWithData.get(callbackID); local
263 ASSERT(state);
265 state->didGetSitesWithDataForSinglePlugin(sites);
270 OwnPtr<GetSitesWithDataState> state = adoptPtr(m_pendingGetSitesWithData.take(callbackID)) local
278 ClearSiteDataState* state = m_pendingClearSiteData.get(callbackID); local
286 OwnPtr<ClearSiteDataState> state = adoptPtr(m_pendingClearSiteData.take(callbackID)); local
    [all...]
  /frameworks/base/cmds/ip-up-vpn/
ip-up-vpn.c 68 FILE *state = fopen(DIR ".tmp", "wb"); local
69 if (!state) {
70 LOGE("Cannot create state: %s", strerror(errno));
76 fprintf(state, "%s\n", argv[1]);
77 fprintf(state, "%s/32\n", argv[4]);
78 fprintf(state, "0.0.0.0/0\n");
79 fprintf(state, "%s %s\n", env("DNS1"), env("DNS2"));
80 fprintf(state, "\n");
137 fprintf(state, "%s\n", interface);
138 fprintf(state, "%s/%s\n", address, env("INTERNAL_CIDR4"))
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageEventListener.java 26 * Called when the detection state of a USB Mass Storage host has changed.
33 * Called when storage has changed state
35 * @param oldState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
36 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.

Completed in 1453 milliseconds

<<11121314151617181920>>