HomeSort by relevance Sort by last modified time
    Searched full:representation (Results 76 - 100 of 7513) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/src/arm/
lithium-arm.cc 546 Representation LChunk::LookupLiteralRepresentation(
548 return graph_->LookupValue(operand->index())->representation();
835 if (instr->representation().IsTagged()) {
836 ASSERT(instr->left()->representation().IsTagged());
837 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble())
    [all...]
  /external/chromium_org/crypto/
p224.h 26 // representation. The external point representation is an (x, y) pair of a
31 // ToString returns an external representation of the Point.
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ObjectIdentifier.java 61 * Creates ObjectIdentifier(OID) from string representation.
128 * Returns string representation of OID.
134 * @return oid string representation
148 * Gets ObjectIdentifier (OID) from string representation.
150 * String representation is defined by the following syntax:
154 * @param str string representation of OID
164 * (OID) representation.
166 * String representation is defined as for {@link #toIntArray}.
168 * @param str string representation of OID
176 * Gets ObjectIdentifier (OID) from string representation
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
package.html 2 <p>Implementation of <code>cf.iface.*</code> based on a direct representation
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot.h 19 // Grabs a snapshot of the designated window and stores a PNG representation
  /external/chromium_org/sync/internal_api/public/util/
sync_string_conversions.h 16 // Returns the string representation of a PassphraseRequiredReason value.
  /external/chromium_org/third_party/sqlite/src/test/
types3.test 21 # A variable with only a string representation comes in as TEXT
28 # A variable with an integer representation comes in as INTEGER
52 # A byte-array variable comes in a BLOB if it has no string representation
53 # or as TEXT if there is a string representation.
  /external/chromium_org/ui/compositor/
layer_type.h 11 // A layer that has no onscreen representation (note that its children will
  /external/chromium_org/v8/src/
property.h 88 Representation representation,
92 details_(attributes, type, representation, field_index) { }
103 Representation representation)
105 FIELD, representation, field_index) {}
125 Representation::Tagged()) {}
187 details_(NONE, NONEXISTENT, Representation::None()) {
208 return value->FitsRepresentation(details_.representation());
213 details_ = PropertyDetails(NONE, TRANSITION, Representation::None())
259 Representation representation() { function in class:v8::internal::BASE_EMBEDDED
    [all...]
hydrogen-infer-representation.cc 28 #include "hydrogen-infer-representation.h"
34 if (current->representation().IsTagged()) return;
147 // Lastly: any instruction that we don't have representation information
154 if (phi->representation().IsNone()) {
155 phi->ChangeRepresentation(Representation::Tagged());
160 if (current->representation().IsNone() &&
163 current->ChangeRepresentation(Representation::Double());
165 current->ChangeRepresentation(Representation::Tagged());
  /frameworks/base/docs/html/tools/help/
hierarchy-viewer.jd 7 interface. It provides a visual representation of the layout's View hierarchy
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
Action.java 61 public Action(FilterShowActivity context, FilterRepresentation representation, int type,
63 this(context, representation, type);
69 public Action(FilterShowActivity context, FilterRepresentation representation, int type) {
71 setRepresentation(representation);
80 public Action(FilterShowActivity context, FilterRepresentation representation) {
81 this(context, representation, CROP_VIEW);
104 public void setRepresentation(FilterRepresentation representation) {
105 mRepresentation = representation;
106 mName = representation.getName();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDrawRepresentation.java 188 FilterDrawRepresentation representation = new FilterDrawRepresentation(); local
189 copyAllParameters(representation);
190 return representation;
194 protected void copyAllParameters(FilterRepresentation representation) {
195 super.copyAllParameters(representation);
196 representation.useParametersFrom(this);
207 FilterDrawRepresentation representation = (FilterDrawRepresentation) a; local
208 mParamColor.copyPalletFrom(representation.mParamColor);
210 if (representation.mCurrent != null) {
211 mCurrent = (StrokeData) representation.mCurrent.clone()
    [all...]
  /external/chromium_org/courgette/
ensemble.h 6 // input is transformed into a new representation, patching occurs in the new
152 // representation, and to 'Reform' - to transform from the new representation
173 // Third step: transforms element from original representation into alternate
174 // representation.
178 // Final step: transforms element back from alternate representation into
179 // original representation.
218 // file representation to the alternate representation.
221 // Writes both |old_element| and |new_element| in the new representation
    [all...]
  /external/kernel-headers/original/linux/
ktime.h 31 * internal representation of time values in scalar nanoseconds. The
36 * On 32-bit CPUs an optimized representation of the timespec structure
43 * plain scalar nanosecond based representation can be selected by the
63 * ktime_t definitions when using the 64-bit scalar representation:
73 * Return the ktime_t representation of the value
124 * representation. The macros are sometimes ugly - their actual use is
132 * same representation which is used by timespecs.
137 /* Set a ktime_t variable to a value in sec/nsec representation: */
224 * Returns the timespec representation of the ktime value
236 * Returns the timeval representation of the ktime valu
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 309 // * representation. Both trinomial (TPB) and pentanomial (PPB) polynomial
311 // * representation is not supported.
318 // * Indicates gaussian normal basis representation (GNB). Number chosen
324 // * Indicates trinomial basis representation (TPB). Number chosen
330 // * Indicates pentanomial basis representation (PPB). Number chosen
338 // private int representation;
398 // this.representation = TPB;
412 // this.representation = PPB;
459 // * (having the same representation).
465 // * representation).
797 private int representation; field in class:ECFieldElement.F2m
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 442 hydrogen()->value()->representation().IsDouble());
748 if (instr->representation().IsTagged()) {
749 ASSERT(instr->left()->representation().IsSmiOrTagged());
750 ASSERT(instr->right()->representation().IsSmiOrTagged());
759 ASSERT(instr->representation().IsSmiOrInteger32());
760 ASSERT(instr->left()->representation().Equals(instr->representation()));
761 ASSERT(instr->right()->representation().Equals(instr->representation()));
774 if (instr->representation().IsSmi() && constant_value > 0)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 30 /** {@code non-null;} the human-oriented string representation */
36 * @param human {@code non-null;} the human-oriented string representation
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 30 /** {@code non-null;} the human-oriented string representation */
36 * @param human {@code non-null;} the human-oriented string representation
  /external/chromium/chrome/browser/extensions/
extension_proxy_api.h 21 // Class to convert between the representation of proxy settings used
22 // in the Proxy Settings API and the representation used in the PrefStores.
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_helpers.h 29 // Returns a string representation of a ContentSettingsType.
37 // Returns a string representation of a ContentSetting.
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api.h 25 // Class to convert between the representation of proxy settings used
26 // in the Proxy Settings API and the representation used in the PrefStores.
  /external/chromium_org/third_party/leveldatabase/src/util/
crc32c.h 26 // Return a masked representation of crc.
36 // Return the crc whose masked representation is masked_crc.
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTableTypes.h 25 //16.16 Signed fixed point representation.
27 //2.14 Signed fixed point representation.
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationVisibility.java 30 /** {@code non-null;} the human-oriented string representation */
36 * @param human {@code non-null;} the human-oriented string representation

Completed in 859 milliseconds

1 2 34 5 6 7 8 91011>>