HomeSort by relevance Sort by last modified time
    Searched full:representation (Results 51 - 75 of 7513) 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 25 // Retrieves a histogram and returns a JSON representation of it.
30 // representation of it.
34 // 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/x64/
lithium-x64.cc 406 hydrogen()->value()->representation().IsDouble());
704 if (instr->representation().IsTagged()) {
705 ASSERT(instr->left()->representation().IsTagged());
706 ASSERT(instr->right()->representation().IsTagged());
714 ASSERT(instr->representation().IsSmiOrInteger32());
715 ASSERT(instr->left()->representation().Equals(instr->representation()));
716 ASSERT(instr->right()->representation().Equals(instr->representation()));
754 ASSERT(instr->representation().IsDouble())
    [all...]
  /external/chromium_org/v8/src/
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 }
4069 Representation representation; local
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 388 hydrogen()->value()->representation().IsDouble());
700 if (instr->representation().IsTagged()) {
701 ASSERT(instr->left()->representation().IsTagged());
702 ASSERT(instr->right()->representation().IsTagged());
710 ASSERT(instr->representation().IsSmiOrInteger32());
711 ASSERT(instr->left()->representation().Equals(instr->representation()));
712 ASSERT(instr->right()->representation().Equals(instr->representation()));
725 if (instr->representation().IsSmi() && constant_value > 0)
    [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/chromium_org/chrome/browser/extensions/
extension_icon_image.cc 27 // the image representation, the default icon's representation for the
34 // - The image will be updated with an appropriate image representation when
35 // the |ImageLoader| finishes. The image representation is chosen the same
37 // change, unless the added image representation is transparent (in which
39 // representation).
117 gfx::ImageSkiaRep representation; local
119 representation = host_->LoadImageForScaleFactor(scale_factor);
121 if (!representation.is_null())
122 return representation;
    [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...]

Completed in 643 milliseconds

1 23 4 5 6 7 8 91011>>