| /external/chromium_org/tools/perf/measurements/ | 
| loading_timeline.py | 5 from metrics import loading  namespace 27     # recognize loading as a toplevel action.
 30     loading.LoadingMetric().AddResults(tab, results)
 
 | 
| loading_trace.py | 4 from metrics import loading  namespace 27     # recognize loading as a toplevel action.
 30     loading.LoadingMetric().AddResults(tab, results)
 
 | 
| loading_profile.py | 8 from metrics import loading  namespace 46     loading.LoadingMetric().AddResults(tab, results)
 
 | 
| /external/chromium/chrome/browser/ui/views/tabs/ | 
| tab_renderer_data.h | 17   // may be used to alter the UI (e.g. show different kinds of loading 45   bool loading;  member in struct:TabRendererData
 
 | 
| /external/chromium_org/chrome/browser/ui/views/tabs/ | 
| tab_renderer_data.h | 18   // may be used to alter the UI (e.g. show different kinds of loading 45   bool loading;  member in struct:TabRendererData
 
 | 
| /external/chromium_org/content/renderer/media/ | 
| buffered_data_source_unittest.cc | 34 // Also keeps track of whether said MockWebURLLoader is actively loading. 57     // Keep track of active loading state via loadAsynchronously() and cancel().
 69   bool loading() { return loading_; }  function in class:content::MockBufferedDataSource
 70   void set_loading(bool loading) { loading_ = loading; }
 78   // Whether the resource load has starting loading but yet to been cancelled.
 145     if (data_source_->loading()) {
 228   EXPECT_TRUE(data_source_->loading());
 239   EXPECT_TRUE(data_source_->loading());
 248   EXPECT_FALSE(data_source_->loading());
 [all...]
 | 
| /external/chromium/chrome/browser/ui/gtk/tabs/ | 
| tab_renderer_gtk.h | 53       Data(int loading, int waiting, int waiting_to_loading); 69     // Advance the loading animation to the next frame, or hide the animation if
 70     // the tab isn't loading. Returns |true| if the icon area needs to be
 110   // TabContents. If only the loading state was updated, the loading_only flag
 169   // Advance the loading animation to the next frame, or hide the animation if
 170   // the tab isn't loading.  Returns |true| if the icon area needs to be
 261           loading(false),
 274     bool loading;  member in struct:TabRendererGtk::TabData
 431   // Contains the loading animation state.
 
 | 
| /external/chromium_org/chrome/browser/ui/gtk/tabs/ | 
| tab_renderer_gtk.h | 56       Data(int loading, int waiting, int waiting_to_loading); 70     // Advance the loading animation to the next frame, or hide the animation if
 71     // the tab isn't loading. Returns |true| if the icon area needs to be
 109   // WebContents. If only the loading state was updated, the loading_only flag
 169   // Advance the loading animation to the next frame, or hide the animation if
 170   // the tab isn't loading.  Returns |true| if the icon area needs to be
 255     bool loading;  member in struct:TabRendererGtk::TabData
 426   // Contains the loading animation state.
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/loader/ | 
| DocumentLoader.cpp | 221     // (This can happen when there's a single XMLHttpRequest currently loading and stopLoading causes it 222     // to stop loading. Because of this, we need to save it so we don't return early.
 223     bool loading = isLoading();  local
 226         // Attempt to stop the frame if the document loader is loading, or if it is done loading but
 230         if (loading || doc->parsing())
 236     if (!loading)
 243         // The main resource loader already finished loading. Set the cancelled error on the
 371     // Don't ask if we are loading an empty URL.
 379     // If we're loading content into a subframe, check against the parent's Content Security Polic
 [all...]
 | 
| /system/core/init/ | 
| devices.c | 716     char *root, *loading, *data, *file1 = NULL, *file2 = NULL, *file3 = NULL;  local 720     INFO("firmware: loading '%s' for '%s'\n",
 727     l = asprintf(&loading, "%sloading", root);
 747     loading_fd = open(loading, O_WRONLY);
 794     free(loading);
 
 | 
| /external/chromium_org/chrome/browser/extensions/api/tabs/ | 
| tabs_api.cc | 839   bool loading = params->query_info.status ==  local [all...]
 | 
| /frameworks/ex/common/java/com/android/common/contacts/ | 
| BaseEmailAddressAdapter.java | 104         public boolean loading;  field in class:BaseEmailAddressAdapter.DirectoryPartition 159      * An asynchronous filter used for loading two data sets: email rows from the local
 310         return partition.loading ? 1 : 0;
 317         if (partition.loading) {
 329         if (directoryPartition.loading) {
 354         return ((DirectoryPartition)getPartition(partitionIndex)).loading;
 440             // Show non-default directories as "loading"
 447                     if (!partition.loading) {
 448                         partition.loading = true;
 452                     partition.loading = false
 [all...]
 | 
| /packages/apps/Camera2/src/com/android/camera/crop/ | 
| CropActivity.java | 184             final View loading = findViewById(R.id.loading);  local 185             loading.setVisibility(View.VISIBLE);
 198         final View loading = findViewById(R.id.loading);  local
 199         loading.setVisibility(View.GONE);
 234      * Display toast for image loading failure.
 243      * AsyncTask for loading a bitmap into memory.
 334         final View loading = findViewById(R.id.loading);  local
 342  final View loading = findViewById(R.id.loading);  local
 [all...]
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ | 
| CropActivity.java | 187             final View loading = findViewById(R.id.loading);  local 188             loading.setVisibility(View.VISIBLE);
 201         final View loading = findViewById(R.id.loading);  local
 202         loading.setVisibility(View.GONE);
 237      * Display toast for image loading failure.
 246      * AsyncTask for loading a bitmap into memory.
 337         final View loading = findViewById(R.id.loading);  local
 345  final View loading = findViewById(R.id.loading);  local
 [all...]
 | 
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ | 
| TimelinePresentationModel.js | 49         loading: new WebInspector.TimelineCategory("loading", WebInspector.UIString("Loading"), 0, "#5A8BCC", "#8EB6E9", "#70A2E3"), 71     recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] };
 87     recordStyles[recordTypes.ParseHTML] = { title: WebInspector.UIString("Parse HTML"), category: categories["loading"] };
 94     recordStyles[recordTypes.ResourceSendRequest] = { title: WebInspector.UIString("Send Request"), category: categories["loading"] };
 95     recordStyles[recordTypes.ResourceReceiveResponse] = { title: WebInspector.UIString("Receive Response"), category: categories["loading"] };
 96     recordStyles[recordTypes.ResourceFinish] = { title: WebInspector.UIString("Finish Loading"), category: categories["loading"] };
 98     recordStyles[recordTypes.ResourceReceivedData] = { title: WebInspector.UIString("Receive Data"), category: categories["loading"] };
 [all...]
 | 
| /external/guava/guava-tests/test/com/google/common/cache/ | 
| LocalCacheTest.java | 711     // already loading 2601  boolean loading = false;  field in class:LocalCacheTest.DummyValueReference
 [all...]
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ | 
| FilterShowActivity.java | 780         final View loading = findViewById(R.id.loading);  local 782         loading.setVisibility(View.VISIBLE);
 786         final View loading = findViewById(R.id.loading);  local
 787         loading.setVisibility(View.GONE);
 [all...]
 | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.equinox.preferences_3.3.0.v20100503.jar |  | 
| /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/ | 
| findbugs-2.0.1.jar |  |