/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/ |
D | tst_qdeclarativewebview.cpp | 96 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/basic.qml")); in basicProperties() local 97 checkNoErrors(component); in basicProperties() 100 QObject* wv = component.create(); in basicProperties() 139 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/elements.qml")); in elementAreaAt() local 140 checkNoErrors(component); in elementAreaAt() 141 QDeclarativeWebView* wv = qobject_cast<QDeclarativeWebView*>(component.create()); in elementAreaAt() 161 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/basic.qml")); in historyNav() local 162 checkNoErrors(component); in historyNav() 165 QObject* wv = component.create(); in historyNav() 236 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/javaScript.qml")); in javaScript() local [all …]
|
/external/libselinux/src/ |
D | context.c | 14 char *(component[4]); member 38 n->current_str = n->component[0] = n->component[1] = n->component[2] = in context_new() 39 n->component[3] = 0; in context_new() 62 n->component[3] = 0; in context_new() 71 n->component[i] = (char *)malloc(p - tok + 1); in context_new() 72 if (n->component[i] == 0) in context_new() 74 strncpy(n->component[i], tok, p - tok); in context_new() 75 n->component[i][p - tok] = '\0'; in context_new() 108 conditional_free(&n->component[i]); in context_free() 128 if (n->component[i]) { in hidden_def() [all …]
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | MultiArrayType.java | 27 private MultiType component; field in MultiArrayType 30 public MultiArrayType(MultiType component, int dims) { in MultiArrayType() argument 32 this.component = component; in MultiArrayType() 37 CtClass clazz = component.getCtClass(); in getCtClass() 55 return component.popChanged(); in popChanged() 63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1); in getComponent() 114 return component.isAssignableTo(typeRoot); in isAssignableTo() 122 return component.equals(multi.component) && dims == multi.dims; in equals() 127 return arrayName(component.toString(), dims); in toString()
|
/external/proguard/src/proguard/gui/ |
D | TabbedPane.java | 71 public Component add(final String title, Component component) in add() argument 137 cardPanel.add(title, component); in add() 139 return component; in add() 158 JButton component = new JButton(new ImageIcon(image)); in addImage() local 159 component.setFocusPainted(false); in addImage() 160 component.setFocusable(false); in addImage() 161 component.setRequestFocusEnabled(false); in addImage() 162 component.setRolloverEnabled(false); in addImage() 163 component.setMargin(new Insets(0, 0, 0, 0)); in addImage() 164 component.setHorizontalAlignment(JButton.LEFT); in addImage() [all …]
|
/external/libyuv/files/include/libyuv/ |
D | mjpeg_decoder.h | 82 int GetHorizSampFactor(int component); 84 int GetVertSampFactor(int component); 86 int GetHorizSubSampFactor(int component); 88 int GetVertSubSampFactor(int component); 94 int GetComponentScanlinesPerImcuRow(int component); 97 int GetComponentWidth(int component); 100 int GetComponentHeight(int component); 103 int GetComponentStride(int component); 106 int GetComponentSize(int component); 162 int GetComponentScanlinePadding(int component);
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/ |
D | AwtMouseInput.java | 65 private Component component; field in AwtMouseInput 100 if (component != null){ in setInputSource() 101 component.removeMouseListener(this); in setInputSource() 102 component.removeMouseMotionListener(this); in setInputSource() 103 component.removeMouseWheelListener(this); in setInputSource() 119 component = comp; in setInputSource() 120 component.addMouseListener(this); in setInputSource() 121 component.addMouseMotionListener(this); in setInputSource() 122 component.addMouseWheelListener(this); in setInputSource() 152 component.setCursor(newVisible ? null : getTransparentCursor()); in setCursorVisible() [all …]
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | macutils.cc | 155 ComponentInstance component = NULL; in RunAppleScript() local 166 component = OpenDefaultComponent(kOSAComponentType, typeAppleScript); in RunAppleScript() 167 if (component == NULL) { in RunAppleScript() 173 CloseComponent(component); in RunAppleScript() 178 err = OSACompile(component, &script_desc, kOSAModeCanInteract, &script_id); in RunAppleScript() 182 OSADispose(component, script_id); in RunAppleScript() 184 CloseComponent(component); in RunAppleScript() 189 err = OSAExecute(component, script_id, kOSANullScript, kOSAModeCanInteract, in RunAppleScript() 195 OSAScriptError(component, kOSAErrorMessage, typeChar, &result_data); in RunAppleScript() 208 OSADispose(component, script_id); in RunAppleScript() [all …]
|
/external/llvm/utils/ |
D | llvm-compilers-check | 163 for component in components: 164 component = component.rstrip("2") 165 compsrc = src + "/" + component 277 def execute(self, command, execdir, env, component): argument 278 prefix = self.component_abbrev[component.replace("-", "_")] 447 for component in components: 448 comp = component[:] 452 self.logger.info("Skipping " + component + " in " 468 self.logger.info("Configuring " + component + " in " + builddir) 469 configrc = self.configure(component, srcdir, builddir, [all …]
|
/external/libyuv/files/source/ |
D | mjpeg_decoder.cc | 199 int MJpegDecoder::GetHorizSampFactor(int component) { in GetHorizSampFactor() argument 200 return decompress_struct_->comp_info[component].h_samp_factor; in GetHorizSampFactor() 203 int MJpegDecoder::GetVertSampFactor(int component) { in GetVertSampFactor() argument 204 return decompress_struct_->comp_info[component].v_samp_factor; in GetVertSampFactor() 207 int MJpegDecoder::GetHorizSubSampFactor(int component) { in GetHorizSubSampFactor() argument 209 GetHorizSampFactor(component); in GetHorizSubSampFactor() 212 int MJpegDecoder::GetVertSubSampFactor(int component) { in GetVertSubSampFactor() argument 214 GetVertSampFactor(component); in GetVertSubSampFactor() 221 int MJpegDecoder::GetComponentScanlinesPerImcuRow(int component) { in GetComponentScanlinesPerImcuRow() argument 222 int vs = GetVertSubSampFactor(component); in GetComponentScanlinesPerImcuRow() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | ChangeComponentsComponent.java | 64 GameComponent component = unrelasedComponents.get(x); in reset() local 65 if (!component.shared) { in reset() 66 factory.releaseComponent(component); in reset() 95 public void addSwapInComponent(GameComponent component) { in addSwapInComponent() argument 96 mComponentsToInsert.add(component); in addSwapInComponent() 99 public void addSwapOutComponent(GameComponent component) { in addSwapOutComponent() argument 100 mComponentsToRemove.add(component); in addSwapOutComponent()
|
/external/harfbuzz_ng/src/hb-old/ |
D | harfbuzz-buffer-private.h | 52 HB_UShort component, 58 HB_UShort component, 81 #define IN_COMPONENT( pos ) (buffer->in_string[(pos)].component) 90 #define ADD_String( buffer, num_in, num_out, glyph_data, component, ligID ) \ argument 93 (glyph_data), (component), (ligID) \ 95 #define ADD_Glyph( buffer, glyph_index, component, ligID ) \ argument 97 (glyph_index), (component), (ligID) \
|
D | harfbuzz-buffer.c | 188 glyph->component = 0; in HB_Buffer_add_glyph() 272 HB_UShort component, in _hb_buffer_add_output_glyphs() argument 293 if ( component == 0xFFFF ) in _hb_buffer_add_output_glyphs() 294 component = buffer->in_string[buffer->in_pos].component; in _hb_buffer_add_output_glyphs() 305 item->component = component; in _hb_buffer_add_output_glyphs() 321 HB_UShort component, in _hb_buffer_add_output_glyph() argument 327 &glyph_data, component, ligID ); in _hb_buffer_add_output_glyph()
|
/external/harfbuzz/src/ |
D | harfbuzz-buffer-private.h | 52 HB_UShort component, 58 HB_UShort component, 81 #define IN_COMPONENT( pos ) (buffer->in_string[(pos)].component) 90 #define ADD_String( buffer, num_in, num_out, glyph_data, component, ligID ) \ argument 93 (glyph_data), (component), (ligID) \ 95 #define ADD_Glyph( buffer, glyph_index, component, ligID ) \ argument 97 (glyph_index), (component), (ligID) \
|
D | harfbuzz-buffer.c | 188 glyph->component = 0; in hb_buffer_add_glyph() 272 HB_UShort component, in _hb_buffer_add_output_glyphs() argument 293 if ( component == 0xFFFF ) in _hb_buffer_add_output_glyphs() 294 component = buffer->in_string[buffer->in_pos].component; in _hb_buffer_add_output_glyphs() 305 item->component = component; in _hb_buffer_add_output_glyphs() 321 HB_UShort component, in _hb_buffer_add_output_glyph() argument 327 &glyph_data, component, ligID ); in _hb_buffer_add_output_glyph()
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t012lexerXML.output | 3 ROOTELEMENT: component 5 <!ELEMENT component (PCDATA|sub)*> 6 <!ATTLIST component 13 Start Tag: component 39 End Tag: component
|
/external/llvm/docs/ |
D | LLVMBuild.rst | 37 one main component per each subdirectory. Each such directory contains 38 an ``LLVMBuild.txt`` which contains the component definitions. 40 The component descriptions for the project as a whole are automatically 42 source directory structure to find all of the component description 76 *components*. Every component is typically grouped into its own 77 subdirectory. Generally, a component is organized around a coherent 92 component libraries. Most LLVM tools are small and are primarily 96 that define the component. See the `LLVMBuild Format Reference`_ section 126 properties. An typical component description file for a library 127 component would look typically look like the following example: [all …]
|
/external/clang/include/clang/Basic/ |
D | CMakeLists.txt | 1 macro(clang_diag_gen component) 2 clang_tablegen(Diagnostic${component}Kinds.inc 3 -gen-clang-diags-defs -clang-component=${component} 5 TARGET ClangDiagnostic${component})
|
/external/chromium/chrome/browser/profiles/ |
D | profile_dependency_manager.cc | 18 ProfileKeyedServiceFactory* component) { in AddComponent() argument 19 all_components_.push_back(component); in AddComponent() 24 ProfileKeyedServiceFactory* component) { in RemoveComponent() argument 27 component), in RemoveComponent() 36 if (temp->first == component || temp->second == component) in RemoveComponent()
|
/external/chromium/googleurl/src/ |
D | url_canon_ip.cc | 121 const url_parse::Component& component, in IPv4ComponentToNumber() argument 126 if (spec[component.begin] == '0') { in IPv4ComponentToNumber() 128 if (component.len == 1) { in IPv4ComponentToNumber() 130 } else if (spec[component.begin + 1] == 'X' || in IPv4ComponentToNumber() 131 spec[component.begin + 1] == 'x') { in IPv4ComponentToNumber() 143 while (base_prefix_len < component.len && in IPv4ComponentToNumber() 144 spec[component.begin + base_prefix_len] == '0') in IPv4ComponentToNumber() 154 for (int i = component.begin + base_prefix_len; i < component.end(); i++) { in IPv4ComponentToNumber() 477 const url_parse::Component& component) { in IPv6HexComponentToNumber() argument 478 DCHECK(component.len <= 4); in IPv6HexComponentToNumber() [all …]
|
D | url_parse_unittest.cc | 107 const url_parse::Component& component) { in ComponentMatches() argument 109 EXPECT_TRUE(component.len >= 0 || component.len == -1); in ComponentMatches() 112 EXPECT_LE(0, component.begin); in ComponentMatches() 116 return component.len == -1; in ComponentMatches() 117 if (component.len < 0) in ComponentMatches() 120 if (strlen(reference) != static_cast<size_t>(component.len)) in ComponentMatches() 124 return strncmp(reference, &input[component.begin], component.len) == 0; in ComponentMatches() 127 void ExpectInvalidComponent(const url_parse::Component& component) { in ExpectInvalidComponent() argument 128 EXPECT_EQ(0, component.begin); in ExpectInvalidComponent() 129 EXPECT_EQ(-1, component.len); in ExpectInvalidComponent() [all …]
|
/external/webkit/Source/JavaScriptCore/wtf/url/api/ |
D | ParsedURL.cpp | 83 String ParsedURL::segment(const URLComponent& component) const in segment() 85 if (!component.isValid()) in segment() 87 return m_spec.string().substring(component.begin(), component.length()); in segment()
|
/external/emma/core/java12/com/vladium/jcd/lib/ |
D | Types.java | 515 Class component; in arrayOf() local 519 component = arrayOf (typedescriptor.substring (1)); in arrayOf() 522 …component = Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length()… in arrayOf() 525 component = primitive (first); in arrayOf() 528 Object array = Array.newInstance (component, 0); in arrayOf() 573 String component; in arrayOf() local 577 component = arrayOf (typedescriptor.substring (1)); in arrayOf() 580 … component = vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1)); in arrayOf() 582 component = primitive (first); in arrayOf() 584 String array = component + " []"; in arrayOf()
|
/external/skia/legacy/include/core/ |
D | SkUnPreMultiply.h | 45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument 46 SkASSERT(component <= 255); in ApplyScale() 47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
|
/external/skia/include/core/ |
D | SkUnPreMultiply.h | 45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument 46 SkASSERT(component <= 255); in ApplyScale() 47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | createbug.py | 38 Options.component, 52 …ate["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=…
|