/external/chromium/chrome/browser/profiles/ |
profile_dependency_manager.h | 21 // Adds/Removes a component from our list of live components. Removing will 23 void AddComponent(ProfileKeyedServiceFactory* component); 24 void RemoveComponent(ProfileKeyedServiceFactory* component);
|
profile_dependency_manager.cc | 18 ProfileKeyedServiceFactory* component) { 19 all_components_.push_back(component); 24 ProfileKeyedServiceFactory* component) { 27 component), 30 // Remove all dependency edges that contain this component. 36 if (temp->first == component || temp->second == component)
|
/external/chromium_org/chrome/browser/component_updater/pnacl/ |
pnacl_updater_observer.cc | 34 // If the component updater says there is an UPDATE_READY w/ source 41 // If the component updater sleeps before an UPDATE_READY for this 42 // component, then requests for installs were likely skipped,
|
pnacl_component_installer.h | 25 // Component installer responsible for Portable Native Client files. 42 // Register a PNaCl component for the first time. 46 // Check the PNaCl version again and re-register with the component 72 // Ask the component updater service to do a first-install for PNaCl. 94 // Component updater service observer, to determine when an on-demand
|
/external/chromium_org/url/ |
url_canon_query.cc | 45 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) { 72 const url_parse::Component& query, 86 const url_parse::Component& query, 94 const url_parse::Component& query, 119 const url_parse::Component& query, 122 url_parse::Component* out_query) { 124 *out_query = url_parse::Component(); 139 const url_parse::Component& query, 142 url_parse::Component* out_query) { 148 const url_parse::Component& query [all...] |
url_canon.h | 255 // corresponding URL component to the given std::string. The spec and the 256 // previously-identified range of that component are the input. The range of 257 // the canonicalized component will be written to the output component. 267 // Scheme: Appends the scheme and colon to the URL. The output component will 277 const url_parse::Component& scheme, 279 url_parse::Component* out_scheme); 281 const url_parse::Component& scheme, 283 url_parse::Component* out_scheme); 296 const url_parse::Component& username [all...] |
/external/libvpx/libvpx/vp8/common/ |
entropymv.h | 19 mv_max = 1023, /* max absolute value of a MV component */ 21 mvfp_max = 255, /* max absolute value of a full pixel MV component */ 27 /* probability offsets for coding each MV component */
|
/frameworks/base/core/java/android/content/pm/ |
ComponentInfo.java | 33 * Global information about the application/package this component is a 39 * The name of the process this component should run in. 47 * a user-readable description of the component. From the "description" 53 * Indicates whether or not this component may be instantiated. Note that this value can be 59 * Set to true if this component is available for use by other applications. 103 * Return whether this component and its enclosing application are enabled. 110 * Return the icon resource identifier to use for this component. If 111 * the component defines an icon, that is used; else, the application 114 * @return The icon associated with this component. 121 * Return the logo resource identifier to use for this component. I [all...] |
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
CompoundTransform.java | 34 public static abstract class Component { 40 Component(int type, String name) { 74 public static class TranslateComponent extends Component { 90 public static class RotateComponent extends Component { 114 public static class ScaleComponent extends Component { 131 public ArrayList<Component> mTransformComponents; 134 mTransformComponents = new ArrayList<Component>(); 155 public void addComponent(Component c) { 165 public void setComponent(int index, Component c) { 170 throw new IllegalArgumentException("Invalid component index") [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/ |
UnifiedContentBorder.java | 28 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { 38 public Insets getBorderInsets(Component component) {
|
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_input_unittest.cc | 171 using url_parse::Component; 172 Component kInvalidComponent(0, -1); 175 const Component scheme; 176 const Component host; 182 { ASCIIToUTF16("foo/bar baz"), kInvalidComponent, Component(0, 3) }, 183 { ASCIIToUTF16("http://foo/bar baz"), Component(0, 4), Component(7, 3) }, 184 { ASCIIToUTF16("link:foo.com"), Component(0, 4), kInvalidComponent }, 185 { ASCIIToUTF16("www.foo.com:81"), kInvalidComponent, Component(0, 11) }, 186 { WideToUTF16(L"\u6d4b\u8bd5"), kInvalidComponent, Component(0, 2) } [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GLView.java | 30 // GLView is a UI component. It can render to a GLCanvas and accept touch 140 public void addComponent(GLView component) { 141 // Make sure the component doesn't have a parent currently. 142 if (component.mParent != null) throw new IllegalStateException(); 148 mComponents.add(component); 149 component.mParent = this; 151 // If this is added after we have a root, tell the component. 153 component.onAttachToRoot(mRoot); 158 public boolean removeComponent(GLView component) { 160 if (mComponents.remove(component)) { 333 GLView component = getComponent(i); local [all...] |
/frameworks/native/include/media/openmax/ |
OMX_Component.h | 43 * the public interface of a component. This header file is intended to 44 * be used by both the application and the component. 131 OMX_NotSuspended, /**< component is not suspended */ 132 OMX_Suspended, /**< component is suspended */ 177 on a component as a resolution to resource conflicts. */ 313 /** The OMX_HANDLETYPE structure defines the component handle. The component 314 * handle is used to access all of the component's public methods and also 315 * contains pointers to the component's private data area. The component [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Color.java | 29 * stored solely in the alpha component, and not in the color components. The 31 * (green << 8) | blue. Each component ranges between 0..255 with 0 32 * meaning no contribution for that component, and 255 meaning 100% 52 * Return the alpha component of a color int. This is the same as saying 60 * Return the red component of a color int. This is the same as saying 68 * Return the green component of a color int. This is the same as saying 76 * Return the blue component of a color int. This is the same as saying 85 * The alpha component is implicity 255 (fully opaque). 86 * These component values should be [0..255], but there is no 89 * @param red Red component [0..255] of the colo [all...] |
/external/bluetooth/bluedroid/stack/include/ |
dyn_mem.h | 31 ** Define memory usage for each CORE component (if not defined in bdroid_buildcfg.h) 32 ** The default for each component is to use static memory allocations. 87 ** Define memory usage for each PROFILE component (if not defined in bdroid_buildcfg.h) 88 ** The default for each component is to use static memory allocations. 172 ** The default for each component is to use static memory allocations.
|
/external/chromium_org/chrome/browser/resources/print_preview/settings/ |
layout_settings.js | 14 * @extends {print_preview.Component} 17 print_preview.Component.call(this); 38 __proto__: print_preview.Component.prototype, 40 /** @param {boolean} isEnabled Whether this component is enabled. */ 48 print_preview.Component.prototype.enterDocument.call(this);
|
/external/replicaisland/src/com/replica/replicaisland/ |
DynamicCollisionComponent.java | 21 * A component to include dynamic collision volumes (such as those produced every frame from 24 * in valid "hits"), this component creates a bounding volume that encompasses the set and submits 25 * it to the dynamic collision system. Including this component in a game object will allow it to 59 public void setHitReactionComponent(HitReactionComponent component) { 60 mHitReactionComponent = component;
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
RecurrenceSet.java | 181 * EXRULE, and EXDATE values extracted from the parsed iCalendar component. 182 * @param component The iCalendar component containing the desired 185 * @return true if the component contained the necessary information 190 public static boolean populateContentValues(ICalendar.Component component, 194 component.getFirstProperty("DTSTART"); 210 String duration = computeDuration(start, component); 211 String rrule = flattenProperties(component, "RRULE"); 212 String rdate = extractDates(component.getFirstProperty("RDATE")) [all...] |
/external/chromium/googleurl/src/ |
url_canon.h | 275 // corresponding URL component to the given std::string. The spec and the 276 // previously-identified range of that component are the input. The range of 277 // the canonicalized component will be written to the output component. 287 // Scheme: Appends the scheme and colon to the URL. The output component will 297 const url_parse::Component& scheme, 299 url_parse::Component* out_scheme); 301 const url_parse::Component& scheme, 303 url_parse::Component* out_scheme); 316 const url_parse::Component& username [all...] |
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
pprof.py | 19 'Usage: %prog pprof [-c COMPONENT] <dump> <policy>') 20 self._parser.add_option('-c', '--component', type='string', 21 dest='component', 22 help='restrict to COMPONENT', metavar='COMPONENT') 29 component = options.component 37 dump, policy_set[target_policy], bucket_set, maps_lines, component, 51 component_name: A name of component for filtering. 76 component_name: A name of component for filtering [all...] |
/frameworks/rs/ |
rsComponent.cpp | 22 Component::Component() { 26 Component::~Component() { 29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) { 188 bool Component::isReference() const { 242 void Component::dumpLOGV(const char *prefix) const { 244 ALOGV("%s Component: %s, %s, vectorSize=%i, bits=%i", 247 ALOGV("%s Component: %s, %s, vectorSize=%i, bits=%i", 252 void Component::serialize(OStream *stream) const [all...] |
/hardware/ti/omap4xxx/domx/omx_core/src/ |
OMX_Core.c | 65 /** Array to hold the DLL pointers for each allocated component */ 68 /** Array to hold the component handles for each allocated component */ 161 * If the component is currently loaded, this method will reutrn the 162 * hadle of existingcomponent or create a new instance of the component. 167 * @param[in] cComponentName Name of the component to load 168 * @param[in] pAppData Used to identify the callbacks of component 216 /* Locate the first empty slot for a component. If no slots 226 /* load the component and check for an error. If filename is not an 257 TIMM_OSAL_Error("non-secure component not supported in secure mode") [all...] |
/external/chromium_org/third_party/skia/include/gpu/ |
GrColor.h | 23 // shift amount to assign a component to a GrColor int 48 // extract a component (byte) from a GrColor int 57 * each component==255 and alpha == 0 to be "illegal" 87 static inline char GrColorComponentFlagToChar(GrColorComponentFlags component) { 88 GrAssert(GrIsPow2(component)); 89 switch (component) { 99 GrCrash("Invalid color component flag.");
|
/external/skia/include/gpu/ |
GrColor.h | 23 // shift amount to assign a component to a GrColor int 48 // extract a component (byte) from a GrColor int 57 * each component==255 and alpha == 0 to be "illegal" 87 static inline char GrColorComponentFlagToChar(GrColorComponentFlags component) { 88 GrAssert(GrIsPow2(component)); 89 switch (component) { 99 GrCrash("Invalid color component flag.");
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/ |
OMX_Core.c | 24 /** determine capabilities of a component before acually using it */ 37 /** Array to hold the DLL pointers for each allocated component */ 40 /** Array to hold the component handles for each allocated component */ 147 * If the component is currently loaded, this method will reutrn the 148 * hadle of existingcomponent or create a new instance of the component. 153 * @param[in] cComponentName Name of the component to load 154 * @param[in] pAppData Used to identify the callbacks of component 196 /* Locate the first empty slot for a component. If no slots 209 //get the index for the component in the tabl [all...] |