HomeSort by relevance Sort by last modified time
    Searched full:representation (Results 51 - 75 of 7593) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/net/
browser_url_util.h 19 // Writes a string representation of |url| to the system clipboard.
  /external/chromium_org/chrome/browser/chromeos/policy/
device_policy_decoder_chromeos.h 17 // Decodes device policy in ChromeDeviceSettingsProto representation into the a
  /external/chromium_org/chrome/common/net/
url_util.h 18 // Writes a string representation of |url| to the system clipboard.
  /external/llvm/test/MC/Disassembler/AArch64/
a64-ignored-fields.txt 3 # The "Rm" bits are ignored, but the canonical representation has them filled
  /frameworks/av/media/libstagefright/codecs/aacenc/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/amrnb/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/amrwb/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/amrwbenc/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/avc/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/m4v_h263/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /frameworks/av/media/libstagefright/codecs/mp3dec/
patent_disclaimer.txt 4 Google makes no representation or warranty that the codecs for which
  /external/chromium_org/content/renderer/
stats_collection_controller.h 32 // Retrieves a histogram and returns a JSON representation of it.
36 // representation of it.
39 // Returns JSON representation of tab timing information for the current tab.
  /external/chromium_org/ui/gfx/image/
image_util.h 24 // Fills the |dst| vector with JPEG-encoded bytes of the 1x representation of
26 // Returns true if the image has a 1x representation and the 1x representation
  /external/easymock/src/org/easymock/
ArgumentsMatcher.java 46 * Returns a string representation of the arguments.
49 * the arguments to be used in the string representation.
50 * @return a string representation of the arguments.
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryItem.java 30 public HistoryItem(ImagePreset preset, FilterRepresentation representation) {
32 if (representation != null) {
33 mFilterRepresentation = representation.copy();
  /external/chromium_org/v8/src/
hydrogen-representation-changes.cc 28 #include "hydrogen-representation-changes.h"
34 HValue* value, HValue* use_value, int use_index, Representation to) {
35 // Insert the representation change right before its use. For phi-uses we
43 // For constants we try to make the representation change at compile
44 // time. When a representation change is not possible without loss of
52 // Try to create a new copy of the constant with the new representation.
78 Representation r = value->representation();
85 Representation req = use_value->RequiredInputRepresentation(use_index);
113 if (phi->representation().IsInteger32())
    [all...]
hydrogen-instructions.cc 32 #include "hydrogen-infer-representation.h"
71 void HValue::AssumeRepresentation(Representation r) {
74 // The representation of the value is dictated by type feedback and
83 Representation new_rep = RepresentationFromInputs();
87 if (representation().IsSmi() && HasNonSmiUse()) {
89 Representation::Integer32(), h_infer, "use requirements");
94 Representation HValue::RepresentationFromUses() {
95 if (HasNoUses()) return Representation::None();
97 // Array of use counts for each representation.
98 int use_count[Representation::kNumRepresentations] = { 0 }
4301 Representation representation; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CacheProcessing.java 43 public void add(FilterRepresentation representation) {
44 representations.add(representation);
47 public boolean canMergeWith(FilterRepresentation representation) {
49 if (!rep.canMergeWith(representation)) {
74 FilterRepresentation representation = filters.elementAt(i); local
75 if (step.canMergeWith(representation)) {
76 step.add(representation.copy());
80 step.add(representation.copy());
97 for (FilterRepresentation representation : representations) {
98 if (representation.getFilterType() != FilterRepresentation.TYPE_GEOMETRY)
    [all...]
  /external/skia/bench/
bench_util.py 10 # bench representation algorithm constant names
83 """Algorithm for selecting the representation value from a given list.
84 representation is one of the ALGORITHM_XXX representation types."""
85 def __init__(self, data, representation=None):
86 if not representation:
87 representation = ALGORITHM_AVERAGE # default algorithm
90 if representation == ALGORITHM_AVERAGE:
94 if representation == ALGORITHM_MINIMUM:
99 if representation == ALGORITHM_MEDIAN
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 541 Representation LChunk::LookupLiteralRepresentation(
543 return graph_->LookupValue(operand->index())->representation();
834 if (instr->representation().IsTagged()) {
835 ASSERT(instr->left()->representation().IsTagged());
836 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/v8/src/mips/
lithium-mips.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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterVignetteRepresentation.java 100 FilterVignetteRepresentation representation = new FilterVignetteRepresentation(); local
101 copyAllParameters(representation);
102 return representation;
106 protected void copyAllParameters(FilterRepresentation representation) {
107 super.copyAllParameters(representation);
108 representation.useParametersFrom(this);
163 public boolean equals(FilterRepresentation representation) {
164 if (!super.equals(representation)) {
167 if (representation instanceof FilterVignetteRepresentation) {
168 FilterVignetteRepresentation rep = (FilterVignetteRepresentation) representation;
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 539 Representation LChunk::LookupLiteralRepresentation(
541 return graph_->LookupValue(operand->index())->representation();
830 if (instr->representation().IsTagged()) {
831 ASSERT(instr->left()->representation().IsTagged());
832 ASSERT(instr->right()->representation().IsTagged());
840 ASSERT(instr->representation().IsInteger32());
841 ASSERT(instr->left()->representation().IsInteger32());
842 ASSERT(instr->right()->representation().IsInteger32());
877 ASSERT(instr->representation().IsDouble());
878 ASSERT(instr->left()->representation().IsDouble())
    [all...]
  /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.

Completed in 721 milliseconds

1 23 4 5 6 7 8 91011>>