/hardware/ril/mock-ril/src/js/ |
mock_ril.js | 131 * Include the components 188 for(i = 0; i < entry.components.length; i++) { 189 entry.components[i].add(req); 213 * and contains an array of components this request 218 * DispatchTable[RIL_REQUEST_xxx].components = Array of components 224 'components' : [simulatedIccWorker], 228 'components' : [simulatedIccWorker], 232 'components' : [simulatedRadioWorker], 235 'components' : [simulatedRadioWorker] [all...] |
/external/chromium/base/ |
version.cc | 31 std::vector<uint16> other_components = other.components();
|
file_path.h | 138 // Null-terminated array of separators used to separate components in 178 // Returns a vector of all of the components of the provided path. It is 181 void GetComponents(std::vector<FilePath::StringType>* components) const; 258 // paths is well defined, it can handle ASCII path components as well.
|
file_path.cc | 122 void FilePath::GetComponents(std::vector<FilePath::StringType>* components) 124 DCHECK(components); 125 if (!components) 127 components->clear(); 135 // Capture path components. 155 *components = std::vector<FilePath::StringType>(ret_val.rbegin(), 1115 std::vector<FilePath::StringType> components; local [all...] |
/system/core/include/pixelflinger/ |
format.h | 123 uint16_t components; // GGLFormatComponents member in struct:__anon15895
|
/external/protobuf/src/google/protobuf/stubs/ |
strutil.h | 164 // Split a string using a character delimiter. Append the components 174 // the C-string "delim" as a separator between components. There are two 179 LIBPROTOBUF_EXPORT void JoinStrings(const vector<string>& components, 182 inline string JoinStrings(const vector<string>& components, 185 JoinStrings(components, delim, &result);
|
strutil.cc | 144 // Split a string using a character delimiter. Append the components 194 // This merges a vector of string components with delim inserted 195 // as separaters between components. 226 void JoinStrings(const vector<string>& components, 229 JoinStringsIterator(components.begin(), components.end(), delim, result); [all...] |
/frameworks/base/core/java/com/android/internal/content/ |
PackageMonitor.java | 102 public void onPackageChanged(String packageName, int uid, String[] components) { 249 String[] components = intent.getStringArrayExtra( local 254 onPackageChanged(pkg, uid, components);
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
mock.py | 200 components = target.split('.')
201 import_path = components.pop(0)
204 for comp in components:
|
bugzilla.py | 557 def prompt_for_component(self, components): 560 for name in components: 564 return components[result]
|
/external/skia/src/animator/ |
SkAnimateField.cpp | 39 int SkAnimate::components() { function in class:SkAnimate 114 fComponents <<= 2; // four color components
|
SkAnimateBase.cpp | 65 int SkAnimateBase::components() { function in class:SkAnimateBase
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
LayoutTestsAutoTest.java | 180 String[] components = line.split(" "); local 181 mTestList.add(components[0]); 182 mTestListIgnoreResult.add(components.length > 1 && components[1].equals("IGNORE_RESULT"));
|
/external/jhead/ |
exif.c | 509 int Tag, Format, Components; 517 Components = Get32u(DirEntry+4); 525 if ((unsigned)Components > 0x10000){ 526 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag); 530 ByteCount = Components * BytesPerFormat[Format]; 622 // Extract useful components of tag [all...] |
/external/webkit/WebCore/platform/graphics/cg/ |
GraphicsContextCG.cpp | 74 CGFloat components[4]; local 75 color.getRGBA(components[0], components[1], components[2], components[3]); 79 cgColor = CGColorCreate(sRGBColorSpaceRef(), components); 81 cgColor = CGColorCreate(deviceRGBColorSpaceRef(), components); [all...] |
/external/chromium/googleurl/src/ |
url_util.cc | 288 replacements.components().scheme, 300 replacements.components().scheme))) { 312 replacements.components().scheme,
|
url_canon_internal.cc | 108 // for all components once all overrides have been prepared. 310 const url_parse::Parsed& repl_parsed = repl.components(); 344 const url_parse::Parsed& repl_parsed = repl.components(); 373 // pointers for affected components now that the buffer is finalized.
|
/build/tools/droiddoc/templates-sdk/ |
sdkpage.cs | 142 to download all of the SDK components that you need, such as Android platforms, 144 <li>The new approach is modular — you can install only the components you 145 need and update any or all components without affecting other parts of your 156 href="adding-components.html">Adding SDK Components</a>.</p> 171 href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.</p>
|
/external/bluetooth/glib/gio/ |
gcontenttype.c | 1360 gchar **components; member in struct:__anon1999 1374 if (strcmp (name, e->components[depth]) == 0) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509Name.java | 1201 Vector components = new Vector(); local [all...] |
/external/freetype/src/sfnt/ |
ttsbit.c | 1346 TT_SBit_Component components; local [all...] |
/external/webkit/WebKitTools/Scripts/ |
prepare-ChangeLog | 495 my @components = split /:/; 496 pop @components if (scalar @components > 1); 497 $_ = (join ':', map {s/.*[^[:word:]]//; scalar $_;} @components) . ':'; [all...] |
/hardware/ti/omap3/omx/ |
Android.mk | 80 #call to common omx & system components
|
/external/webkit/WebCore/rendering/ |
RenderThemeSafari.cpp | 107 const CGFloat* components = CGColorGetComponents(color); local 108 return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]); [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
CommandRecognizerEngine.java | 331 // We used to store the entire list of components into the grammar. 1156 String[] components = meaning.trim().split(" "); local [all...] |