HomeSort by relevance Sort by last modified time
    Searched defs:Component (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/rs/
rsComponent.cpp 22 Component::Component() {
26 Component::~Component() {
29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) {
195 bool Component::isReference() const {
249 void Component::dumpLOGV(const char *prefix) const {
251 ALOGV("%s Component: %s, %s, vectorSize=%i, bits=%i",
254 ALOGV("%s Component: %s, %s, vectorSize=%i, bits=%i",
259 void Component::serialize(OStream *stream) const
    [all...]
rsComponent.h 29 class Component {
31 Component();
32 ~Component();
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
speech_rule.js 14 * component describes how to construct a single utterance. Text-to-speech
20 goog.provide('cvox.SpeechRule.Component');
107 * Defines a component within a speech rule.
109 * component in JSON format.
112 cvox.SpeechRule.Component = function(kwargs) {
122 * Parses a valid string representation of a speech component into a Component
125 * @return {cvox.SpeechRule.Component} The resulting component.
127 cvox.SpeechRule.Component.fromString = function(input)
    [all...]
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
36 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
39 public static class Component {
45 * Creates a new component with the provided name.
46 * @param name The name of the component.
48 public Component(String name, Component parent) {
53 * Adds a Property to this component.
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.cc 36 CompositeBitmapGlyph::Component CompositeBitmapGlyph::GetComponent(
40 return CompositeBitmapGlyph::Component(
62 * CompositeBitmapGlyph::Component class
64 CompositeBitmapGlyph::Component::Component(const Component& rhs)
70 bool CompositeBitmapGlyph::Component::operator==(
71 const CompositeBitmapGlyph::Component& rhs) {
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component::operator=
    [all...]
composite_bitmap_glyph.h 27 class Component {
29 Component(const Component& rhs);
36 bool operator==(const Component& rhs);
37 Component& operator=(const Component& rhs);
40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
64 Component GetComponent(int32_t component_num) const;
  /external/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.cc 36 CompositeBitmapGlyph::Component CompositeBitmapGlyph::GetComponent(
40 return CompositeBitmapGlyph::Component(
62 * CompositeBitmapGlyph::Component class
64 CompositeBitmapGlyph::Component::Component(const Component& rhs)
70 bool CompositeBitmapGlyph::Component::operator==(
71 const CompositeBitmapGlyph::Component& rhs) {
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component::operator=
    [all...]
composite_bitmap_glyph.h 27 class Component {
29 Component(const Component& rhs);
36 bool operator==(const Component& rhs);
37 Component& operator=(const Component& rhs);
40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
64 Component GetComponent(int32_t component_num) const;
  /external/llvm/include/llvm/Support/
Path.h 28 /// @name Lexical Component Iterator
41 /// Iteration examples. Each component is separated by ',':
52 StringRef Component; ///< The current component. Not necessarily in Path.
66 reference operator*() const { return Component; }
67 pointer operator->() const { return &Component; }
83 /// @returns Iterator initialized with the first component of \a path.
93 /// @returns Iterator initialized with the first reverse component of \a path.
109 /// @brief Remove the last component from \a path unless it is the root dir.
118 /// @param path A path that is modified to not have a file component
    [all...]
  /external/chromium_org/components/content_settings/core/common/
content_settings_pattern_parser.cc 21 class Component {
23 Component() : start(0), len(0) {}
24 Component(size_t s, size_t l) : start(s), len(l) {}
49 Component scheme_component;
50 Component host_component;
51 Component port_component;
52 Component path_component;
64 scheme_component = Component(start, current_pos);
89 host_component = Component(start, current_pos - start);
92 host_component = Component(start, current_pos - start)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsComponent.h 29 class Component {
31 Component();
32 ~Component();
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsComponent.h 29 class Component {
31 Component();
32 ~Component();
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsComponent.h 29 class Component {
31 Component();
32 ~Component();
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 20 // Component ------------------------------------------------------------------
23 struct Component {
24 Component() : begin(0), len(-1) {}
27 Component(int b, int l) : begin(b), len(l) {}
33 // Returns true if this component is valid, meaning the length is given. Even
39 // Returns true if the given component is specified on false, the component
50 bool operator==(const Component& other) const {
54 int begin; // Byte offset in the string of this component.
55 int len; // Will be -1 if the component is unspecified
    [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...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 450 VTableComponent Component = Components[I];
454 switch (Component.getKind()) {
457 Component.getVCallOffset().getQuantity());
462 Component.getVBaseOffset().getQuantity());
467 Component.getOffsetToTop().getQuantity());
479 switch (Component.getKind()) {
481 llvm_unreachable("Unexpected vtable component kind");
483 GD = Component.getFunctionDecl();
486 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Complete);
489 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Deleting)
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 110 struct Component {
181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
202 } component;//[] last element does not set MORE_COMPONENTS member in struct:SkOTTableGlyphData::Composite
204 /** Comes after the last Component if the last component has WE_HAVE_INSTR. */
  /external/skia/src/sfnt/
SkOTTable_glyf.h 110 struct Component {
181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
202 } component;//[] last element does not set MORE_COMPONENTS member in struct:SkOTTableGlyphData::Composite
204 /** Comes after the last Component if the last component has WE_HAVE_INSTR. */
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 56 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
59 public static class Component {
74 private final Component mParent; // see if we can get rid of this
75 private LinkedList<Component> mChildren = null;
80 * Creates a new component with the provided name.
81 * @param name The name of the component.
83 public Component(String name, Component parent) {
89 * Returns the name of the component.
90 * @return The name of the component
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-api/1.5/
gmaven-feature-api-1.5.jar 
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java     [all...]

Completed in 369 milliseconds

1 2