/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
AbstractDisplayItem.java | 94 private boolean inState(int states) { 99 if (!inState(STATE_UPDATING | STATE_CANCELING)) { 108 return mImageRequested && inState(STATE_UPDATING | STATE_CANCELING);
|
/external/webkit/Source/WebKit/mac/Carbon/ |
CarbonUtils.m | 36 static void PoolCleaner( EventLoopTimerRef inTimer, EventLoopIdleTimerMessage inState, void *inUserData ); 79 PoolCleaner( EventLoopTimerRef inTimer, EventLoopIdleTimerMessage inState, void *inUserData ) 81 if ( inState == kEventLoopIdleTimerStarted ) {
|
/packages/apps/Browser/src/com/android/browser/ |
TabControl.java | 341 long canRestoreState(Bundle inState, boolean restoreIncognitoTabs) { 342 final long[] ids = (inState == null) ? null : inState.getLongArray(POSITIONS); 346 final long oldcurrent = inState.getLong(CURRENT); 348 if (restoreIncognitoTabs || (hasState(oldcurrent, inState) && !isIncognito(oldcurrent, inState))) { 353 if (hasState(id, inState) && !isIncognito(id, inState)) { 379 * @param inState The saved state of all the tabs. 384 void restoreState(Bundle inState, long currentId [all...] |
/frameworks/base/core/java/android/webkit/ |
SslErrorHandlerImpl.java | 111 /* package */ synchronized boolean restoreState(Bundle inState) { 112 boolean success = (inState != null); 114 success = inState.containsKey("ssl-error-handler"); 116 mSslPrefTable = inState.getBundle("ssl-error-handler");
|
Network.java | 333 * @param inState The in-state to load (read) from. 336 public boolean restoreState(Bundle inState) { 341 return mSslErrorHandler.restoreState(inState);
|
WebView.java | [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
IconMenuPresenter.java | 143 public void restoreHierarchyState(Bundle inState) { 144 SparseArray<Parcelable> viewStates = inState.getSparseParcelableArray(VIEWS_TAG); 148 int subMenuId = inState.getInt(OPEN_SUBMENU_KEY, 0);
|
ListMenuPresenter.java | 187 public void restoreHierarchyState(Bundle inState) { 188 SparseArray<Parcelable> viewStates = inState.getSparseParcelableArray(VIEWS_TAG);
|
/external/libxml2/ |
HTMLparser.c | 77 (ctxt->instate == XML_PARSER_EOF)) 81 ctxt->instate = XML_PARSER_EOF; 110 (ctxt->instate == XML_PARSER_EOF)) 137 (ctxt->instate == XML_PARSER_EOF)) 306 if (ctxt->instate == XML_PARSER_EOF) [all...] |
parser.c | 245 (ctxt->instate == XML_PARSER_EOF)) 281 (ctxt->instate == XML_PARSER_EOF)) 487 (ctxt->instate == XML_PARSER_EOF)) 517 (ctxt->instate == XML_PARSER_EOF)) 547 (ctxt->instate == XML_PARSER_EOF)) 579 (ctxt->instate == XML_PARSER_EOF)) 610 (ctxt->instate == XML_PARSER_EOF)) 639 (ctxt->instate == XML_PARSER_EOF)) 668 (ctxt->instate == XML_PARSER_EOF)) 695 (ctxt->instate == XML_PARSER_EOF) 6287 xmlParserInputState instate; local [all...] |
parserInternals.c | 109 (ctxt->instate == XML_PARSER_EOF)) 113 ctxt->instate = XML_PARSER_EOF; 142 (ctxt->instate == XML_PARSER_EOF)) 169 (ctxt->instate == XML_PARSER_EOF)) 198 (ctxt->instate == XML_PARSER_EOF)) 450 if ((ctxt == NULL) || (ctxt->instate == XML_PARSER_EOF) || 457 (ctxt->instate != XML_PARSER_COMMENT)) { 616 if (ctxt->instate == XML_PARSER_EOF) [all...] |
SAX2.c | 64 ctxt->instate = XML_PARSER_EOF; 86 (ctxt->instate == XML_PARSER_EOF)) 124 (ctxt->instate == XML_PARSER_EOF)) 155 (ctxt->instate == XML_PARSER_EOF)) 180 (ctxt->instate == XML_PARSER_EOF)) 204 (ctxt->instate == XML_PARSER_EOF)) 977 ctxt->instate = XML_PARSER_EOF; [all...] |
xmlwriter.c | [all...] |
xmlreader.c | [all...] |
xmlIO.c | 462 (ctxt->instate == XML_PARSER_EOF)) [all...] |
/external/libvpx/vp8/encoder/ |
picklpf.c | 197 // Re-instate the unfiltered frame 215 // Re-instate the unfiltered frame 251 // Re-instate the unfiltered frame 357 // Re-instate the unfiltered frame 397 // Re-instate the unfiltered frame 437 // Re-instate the unfiltered frame
|
rdopt.c | [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
StateManager.java | 236 public void restoreFromState(Bundle inState) { 238 mLaunchGalleryOnTop = inState.getBoolean(KEY_LAUNCH_GALLERY_ON_TOP, false); 239 Parcelable list[] = inState.getParcelableArray(KEY_MAIN);
|
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
WebView.java | 106 public WebBackForwardList restoreState(Bundle inState) {
|
/external/libxml2/include/libxml/ |
parser.h | 220 xmlParserInputState instate; /* current type of input */ member in struct:_xmlParserCtxt [all...] |
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParserLibxml2.cpp | 528 parser->instate = XML_PARSER_CONTENT; // We are parsing a CONTENT [all...] |
/external/webkit/Source/WebCore/loader/ |
FTPDirectoryParser.cpp | 517 * to re-instate it. [all...] |