/bootable/diskinstaller/ |
android_img_layout.conf | 16 active y 24 active y 32 active y
|
installer_img_layout.conf | 15 active y
|
/external/clang/test/CodeGen/ |
2007-09-17-WeakRef.c | 6 int active (void) function
|
2008-09-03-WeakAlias.c | 5 int active (void) function
|
/external/webkit/Source/WebCore/bindings/generic/ |
BindingSecurityBase.h | 47 static bool canAccess(DOMWindow* active, DOMWindow* target);
|
/external/netcat/data/ |
nfs-0.d | 1 # UDP NFS null-proc call; finds active NFS listeners on port 2049.
|
/build/target/board/vbox_x86/ |
disk_layout.conf | 27 active y 35 active y 43 active y
|
/external/chromium/chrome/browser/resources/options/ |
subpages_tab_controls.css | 12 .subpages-nav-tabs .active-tab { 23 * active label. Only one is visible at a time, but the bold label is used to 26 .subpages-nav-tabs .active-tab-label { 40 .subpages-nav-tabs .active-tab-label, 41 .subpages-nav-tabs .active-tab .tab-label { 45 /* .tab is not removed when .active-tab is added, so we must 46 * override the hidden visibility above in the active tab case. 48 .subpages-nav-tabs .active-tab .active-tab-label { 64 .active-tab-contents [all...] |
/external/chromium/chrome/browser/chromeos/status/ |
status_area_button.h | 41 void set_active(bool active) { active_ = active; } 42 bool active() const { return active_; } function in class:chromeos::StatusAreaButton
|
status_area_view.cc | 106 void StatusAreaView::MakeButtonsActive(bool active) { 107 clock_view()->set_active(active); 108 input_method_view()->set_active(active); 109 network_view()->set_active(active); 110 power_view()->set_active(active);
|
status_area_view.h | 30 void MakeButtonsActive(bool active);
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_selection_model.h | 15 // active: the index of the currently visible tab in the tab strip. 20 // anchor and active index correspond to the same thing. 35 // See class description for details of active. 36 void set_active(int active) { active_ = active; } 37 int active() const { return active_; } function in class:TabStripSelectionModel 47 // updates the anchor and active indices. 57 // Sets the anchor, active and selection to |index|. 63 // Adds |index| to the selection. This does not change the active or anchor 67 // Removes |index| from the selection. This does not change the active o [all...] |
/frameworks/base/core/java/android/os/ |
RemoteCallbackList.java | 199 * be active at a time, so you must be sure to always call this from the 237 Object[] active = mActiveBroadcast; local 238 if (active == null || active.length < N) { 239 mActiveBroadcast = active = new Object[N]; 243 active[i++] = cb; 250 * Retrieve an item in the active broadcast that was previously started 297 Object[] active = mActiveBroadcast; local 298 if (active != null) { 301 active[i] = null [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
IInputMethodClient.aidl | 29 void setActive(boolean active);
|
/frameworks/base/opengl/java/android/opengl/ |
ManagedEGLContext.java | 98 ArrayList<ManagedEGLContext> active; local 105 // If there are no active managed contexts, we will not even 127 active = new ArrayList<ManagedEGLContext>(sActive); 131 for (int i = 0; i < active.size(); i++) { 132 active.get(i).execTerminate();
|
/system/core/nexus/ |
WifiScanner.h | 38 int start(bool active);
|
/development/tools/axl/ |
chewie.py | 63 active = {"http0": [], 106 active[thread].append(record) 109 record = active[thread][-1] 115 record = active[thread][0] 119 record = active[thread][0] 123 del active[thread][0] 126 record = active[thread][0] 129 del active[thread][0]
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_active.c | 30 /* These are static for our active event handling code */ 36 /* Start completely active */ 69 /* Update internal active state */ 78 event.active.gain = gain; 79 event.active.state = state;
|
/external/webkit/Source/WebCore/wml/ |
WMLDoElement.h | 53 void setActive(bool active) { m_isActive = active; }
|
/external/chromium/chrome/browser/net/ |
service_providers_win.h | 16 bool active; member in struct:WinsockNamespaceProvider
|
/external/webkit/Source/WebCore/rendering/ |
HitTestRequest.h | 31 Active = 1 << 2, 46 bool active() const { return m_requestType & Active; } function in class:WebCore::HitTestRequest
|
/external/webkit/Source/WebKit/chromium/public/ |
WebWidgetClient.h | 54 virtual void didActivateAcceleratedCompositing(bool active) { }
|
/system/core/toolbox/ |
schedtop.c | 28 size_t active; member in struct:thread_table 69 if (table->active >= table->allocated) 71 return table->data + table->active; 76 table->active++; 175 for (i = 0; i < last_threads.active; i++) { 180 for (j = 0; j < threads.active; j++) 183 if (j == threads.active) 206 proc_info = &processes.data[processes.active - 1]; 215 printf("Processes: %d, Threads %d\n", processes.active, threads.active); [all...] |
/external/skia/src/animator/ |
SkDisplayList.cpp | 35 void SkDisplayList::append(SkActive* active) { 36 *fActiveList.append() = active; 46 SkActive* active = *activePtr; local 47 active->reset(); 134 void SkDisplayList::remove(SkActive* active) { 135 int index = fActiveList.find(active); 138 SkASSERT(fActiveList.find(active) < 0);
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 90 char *active; /* Pointer to non-consumed part of text. */ 91 size_t length; /* Length of text (or active, if used). */ 92 size_t alloc; /* Allocated space for active. */ 213 inactive = lb->active - lb->text; 219 MEMMOVE(lb->text, lb->active, lb->length); 220 lb->alloc += lb->active - lb->text; 221 lb->active = lb->text; 235 lb->active = lb->text + inactive; 250 MEMCPY(to->active + to->length, string, length); 331 n = WCRTOMB (to->active + to->length, wc, &to->mbstate) 89 char *active; \/* Pointer to non-consumed part of text. *\/ member in struct:line [all...] |