Searched refs:component (Results 51 - 75 of 145) sorted by relevance

123456

/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DVariableTranslator.java99 * Inserts dots between each component in the path.
105 for (JavaExpression component : in) {
109 out.add(component);
/external/replicaisland/src/com/replica/replicaisland/
H A DFadeDrawableComponent.java68 // Complexity++, but it lets this component handle several
109 // If a texture is set then we supply a drawable to the render component.
148 /** If set to something non-null, this component will overwrite the drawable on the target render component. **/
153 public void setRenderComponent(RenderComponent component) { argument
154 mRenderComponent = component;
H A DHitReactionComponent.java25 * A general-purpose component that responds to dynamic collision notifications. This component
27 * it can be derived for entirely different responses. This component must exist on an object for
297 public void setPossessionComponent(ChangeComponentsComponent component) { argument
298 mPossessionComponent = component;
305 public void setLauncherComponent(LauncherComponent component, int launchHitType) { argument
306 mLauncherComponent = component;
/external/webkit/Source/WebCore/platform/qt/
H A DFileSystemQt.cpp81 String pathByAppendingComponent(const String& path, const String& component) argument
83 return QDir::toNativeSeparators(QDir(path).filePath(component));
/external/webkit/Source/WebCore/platform/wx/
H A DFileSystemWx.cpp93 String pathByAppendingComponent(const String& path, const String& component) argument
95 return wxFileName(path, component).GetFullPath();
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
H A Dloupe.js110 function readPixelComponent(x, y, component) {
111 var offset = (y * sourceImageData.width + x) * 4 + component;
/external/webp/src/enc/
H A Dbackward_references.h150 int component) {
152 return (p->argb_or_distance >> (component * 8)) & 0xff;
149 PixOrCopyLiteral(const PixOrCopy* const p, int component) argument
/external/chromium/webkit/glue/
H A Dwebfileutilities_impl.h29 const WebKit::WebString& path, const WebKit::WebString& component);
/external/clang/test/CodeGen/
H A Dinit.c36 double component[3]; member in union:vec3
/external/v8/src/
H A Duri.js277 function URIDecodeComponent(component) {
279 var string = ToString(component);
327 function URIEncodeComponent(component) {
344 var string = ToString(component);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DScenarioStatusTable.java27 private String component; field in class:ScenarioStatusTable
36 this.component = name;
46 List scenarios = performanceResults.getComponentScenarios(this.component);
194 this.stream.print("The following table gives a complete but compact view of performance results for the component.<br>\n");
/external/proguard/src/proguard/gui/
H A DFilterDialog.java302 * given key, to the given component.
304 private static JComponent tip(JComponent component, String messageKey) argument
306 component.setToolTipText(msg(messageKey));
308 return component;
H A DListPanel.java323 * given key, to the given component.
325 private static JComponent tip(JComponent component, String messageKey) argument
327 component.setToolTipText(msg(messageKey));
329 return component;
H A DOptimizationsDialog.java233 * given key, to the given component.
235 private static JComponent tip(JComponent component, String messageKey) argument
237 component.setToolTipText(msg(messageKey));
239 return component;
H A DClassPathPanel.java300 * given key, to the given component.
302 private static JComponent tip(JComponent component, String messageKey) argument
304 component.setToolTipText(msg(messageKey));
306 return component;
/external/webkit/Source/WebCore/platform/gtk/
H A DFileSystemGtk.cpp143 String pathByAppendingComponent(const String& path, const String& component) argument
146 return path + component;
148 return path + G_DIR_SEPARATOR_S + component;
/external/webkit/Source/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp183 String pathByAppendingComponent(const String& path, const String& component) argument
186 return path + component;
188 return path + "/" + component;
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtKeyInput.java57 private Component component; field in class:AwtKeyInput
70 if (component != null){
71 component.removeKeyListener(this);
74 component = comp;
75 component.addKeyListener(this);
/external/chromium/googleurl/src/
H A Durl_parse.cc447 int DoParsePort(const CHAR* spec, const Component& component) { argument
450 if (!component.is_nonempty())
454 Component digits_comp(component.end(), 0);
455 for (int i = 0; i < component.len; i++) {
456 if (spec[component.begin + i] != '0') {
457 digits_comp = MakeRange(component.begin + i, component.end());
632 // When there is a ref and we get here, the component we wanted was before
H A Durl_util.cc95 const url_parse::Component& component,
97 if (!component.is_nonempty())
98 return compare_to[0] == 0; // When component is empty, match empty scheme.
99 return LowerCaseEqualsASCII(&spec[component.begin],
100 &spec[component.end()],
94 CompareSchemeComponent(const CHAR* spec, const url_parse::Component& component, const char* compare_to) argument
/external/clang/include/clang/Basic/
H A DMakefile36 $(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
/external/guava/guava/src/com/google/common/io/
H A DFiles.java720 for (String component : components) {
721 if (component.equals(".")) {
723 } else if (component.equals("..")) {
730 path.add(component);
/external/kernel-headers/original/asm-arm/arch/
H A Dboard.h153 char component[12]; member in struct:omap_version_config
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dsheriffircbot_unittest.py82 expected_stderr = ("MOCK: irc.post: Preparing rollout for r--component=Tools...\n"
84 "MOCK: irc.post: Invalid svn revision number \"--component=Tools\".\n")
87 "--component=Tools 21654"],
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py41 component = make_option("--component", action="store", type="string", dest="component", help="Component for the new bug.") variable in class:Options

Completed in 1558 milliseconds

123456