Searched refs:component (Results 26 - 50 of 145) sorted by relevance

123456

/external/webkit/Source/WebCore/platform/chromium/
H A DFileSystemChromium.cpp70 String pathByAppendingComponent(const String& path, const String& component) argument
72 return PlatformBridge::pathByAppendingComponent(path, component);
/external/valgrind/main/coregrind/
H A Dm_libcassert.c250 Char* component; local
263 component = "valgrind";
266 component = VG_(details).name;
276 component, file, line, fn );
279 component, file, line, fn, expr );
282 VG_(printf)("%s: %s\n", component, buf );
/external/webkit/Source/WebCore/platform/wince/
H A DFileSystemWinCE.cpp124 String pathByAppendingComponent(const String& path, const String& component) argument
126 if (component.isEmpty())
134 && component[0] != L'\\' && component[0] != L'/')
137 buffer.append(component.characters(), component.length());
/external/chromium/googleurl/src/
H A Durl_parse_unittest.cc107 const url_parse::Component& component) {
108 // If the component is nonexistant (length == -1), it should begin at 0.
109 EXPECT_TRUE(component.len >= 0 || component.len == -1);
112 EXPECT_LE(0, component.begin);
114 // A NULL reference means the component should be nonexistant.
116 return component.len == -1;
117 if (component.len < 0)
120 if (strlen(reference) != static_cast<size_t>(component.len))
124 return strncmp(reference, &input[component
105 ComponentMatches(const char* input, const char* reference, const url_parse::Component& component) argument
127 ExpectInvalidComponent(const url_parse::Component& component) argument
169 Parsed::ComponentType component; member in struct:CountCase
[all...]
/external/mesa3d/docs/OLD/
H A DMESA_packed_depth_stencil.spec86 DEPTH_COMPONENT Depth Depth component
87 RED Color R component
88 GREEN Color G component
89 BLUE Color B component
90 ALPHA Color A component
97 LUMINANCE Color Luminance component
99 DEPTH_STENCIL Depth, Depth component, stencil index.
/external/chromium/third_party/libjingle/source/talk/site_scons/
H A Dtalk.py378 def ExtendComponent(env, component, **kwargs):
387 component: The environment's builder function, e.g. ComponentProgram
389 to the call to component, or which control execution.
393 The output node returned by the call to component, or a subsequent signed
405 if 'ComponentLibrary' == component:
422 if not srcs or not hasattr(env, component):
472 builder = getattr(env, component)
484 if ('ComponentProgram' == component or
485 ('ComponentLibrary' == component and
501 builder = getattr(env_64bit, component)
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java220 * Returns the array component if this type is an array. If the type
223 * @return the array component if an array, otherwise null
229 CtClass component;
231 component = this.clazz.getComponentType();
236 Type type = (Type)prims.get(component);
237 return (type != null) ? type : new Type(component);
335 String arrayName(String component, int dims) { argument
338 int i = component.length();
341 component.getChars(0, i, string, 0);
346 component
[all...]
H A DExecutor.java649 Type component = array.getComponent();
651 if (component == null)
652 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component);
654 component = zeroExtend(component);
656 verifyAssignable(expectedComponent, component);
658 simplePush(component, frame);
671 Type component = array.getComponent();
673 if (component == null)
674 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component);
[all...]
/external/webkit/Source/WebCore/platform/brew/
H A DFileSystemBrew.cpp88 String pathByAppendingComponent(const String& path, const String& component) argument
90 if (component.isEmpty())
97 if (buffer.last() != L'/' && component[0] != L'/')
100 buffer.append(component.characters(), component.length());
/external/chromium/base/
H A Dfile_path.h40 // final path component (BaseName), and appending a relative pathname string
148 // A special path component meaning "this directory."
151 // A special path component meaning "the parent directory."
182 // equivalent to calling DirName().value() on the path's root component,
183 // and BaseName().value() on each child component.
204 // named by this object, stripping away the file component. If this object
205 // only contains one component, returns a FilePath identifying
210 // Returns a FilePath corresponding to the last path component of this
252 // component to this object's path. Append takes care to avoid adding
255 // only to |component| i
[all...]
H A Dversion.cc97 uint16 component = static_cast<uint16>(num);
98 components_.push_back(component);
/external/proguard/src/proguard/gui/
H A DClassSpecificationsPanel.java170 * given key, to the given component.
172 private static JComponent tip(JComponent component, String messageKey) argument
174 component.setToolTipText(msg(messageKey));
176 return component;
H A DMemberSpecificationsPanel.java268 * given key, to the given component.
270 private static JComponent tip(JComponent component, String messageKey) argument
272 component.setToolTipText(msg(messageKey));
274 return component;
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelBuilder.java190 GameComponent component = (GameComponent)backgroundObject.get(x);
191 if (component instanceof RenderComponent) {
192 RenderComponent render = (RenderComponent)component;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DIPAddress.java99 private static boolean isMaskValue(String component, int size) argument
103 int value = Integer.parseInt(component);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java34 static Pattern component = Pattern.compile("(....|\\.\\.)(\\[(.*)\\])?"); field in class:Path
79 Matcher m = component.matcher(now);
/external/clang/tools/scan-view/
H A DReporter.py197 component = parameters.get('Component', '')
204 if not component.strip():
205 component = 'Bugs found by clang Analyzer'
210 args = ['osascript', script, component, componentVersion, classification, personID, report.title,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DbuildNotes.php46 $component = $parts[0]; variable
47 $line = "<td>Component: <a href=\"buildnotes/$anEntry\">$component</a></td>";
/external/harfbuzz/src/
H A Dharfbuzz-buffer.h43 HB_UShort component; member in struct:HB_GlyphItemRec_
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DSkiaUtils.cpp129 static U8CPU InvScaleByte(U8CPU component, uint32_t scale) argument
131 SkASSERT(component == (uint8_t)component);
132 return (component * scale + 0x8000) >> 16;
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileUtilities.h58 virtual WebString pathByAppendingComponent(const WebString& path, const WebString& component) { return WebString(); } argument
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLParser.h341 static int parsePort(const CHAR* spec, const URLComponent& component) argument
345 if (component.isEmptyOrInvalid())
348 URLComponent nonZeroDigits(component.end(), 0);
349 for (int i = 0; i < component.length(); ++i) {
350 if (spec[component.begin() + i] != '0') {
351 nonZeroDigits = URLComponent::fromRange(component.begin() + i, component.end());
/external/chromium/chrome/browser/themes/
H A Dtheme_service.cc390 const char* component = comp.c_str(); local
392 if (base::strcasecmp(component, kAlignmentTop) == 0)
394 else if (base::strcasecmp(component, kAlignmentBottom) == 0)
397 if (base::strcasecmp(component, kAlignmentLeft) == 0)
399 else if (base::strcasecmp(component, kAlignmentRight) == 0)
419 const char* component = tiling.c_str(); local
421 if (base::strcasecmp(component, kTilingRepeatX) == 0)
423 if (base::strcasecmp(component, kTilingRepeatY) == 0)
425 if (base::strcasecmp(component, kTilingRepeat) == 0)
/external/webkit/Source/WebCore/dom/
H A DStyledElement.cpp357 int component = 0; local
360 while (component < 3) {
364 colors[component] <<= 4;
366 colors[component] += toASCIIHexValue(color[pos]);
373 colors[component] <<= 4;
374 component++;
/external/chromium/webkit/glue/
H A Dwebfileutilities_impl.cc78 FilePath component(WebStringToFilePathString(webkit_component));
79 FilePath combined_path = path.Append(component);

Completed in 1523 milliseconds

123456