HomeSort by relevance Sort by last modified time
    Searched refs:getRepresentation (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
AbstractListChromosome.java 70 protected List<T> getRepresentation() {
79 return getRepresentation().size();
102 return String.format("(f=%s %s)", getFitness(), getRepresentation());
BinaryChromosome.java 85 for (int i=0; i< getRepresentation().size(); i++) {
86 if (!(getRepresentation().get(i).equals(anotherBc.getRepresentation().get(i))))
BinaryMutation.java 41 List<Integer> newRepr = new ArrayList<Integer>(origChrom.getRepresentation());
46 newRepr.set(geneIndex, origChrom.getRepresentation().get(geneIndex) == 0 ? 1 : 0);
OnePointCrossover.java 91 List<T> parent1Rep = first.getRepresentation();
92 List<T> parent2Rep = second.getRepresentation();
RandomKeyMutation.java 48 List<Double> repr = originalRk.getRepresentation();
RandomKey.java 84 List<Double> sortedRepr = new ArrayList<Double> (getRepresentation());
89 decodeGeneric(baseSequence(getLength()), getRepresentation(), sortedRepresentation)
106 return decodeGeneric(sequence, getRepresentation(), sortedRepresentation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
BaseFiltersManager.java 89 public FilterRepresentation getRepresentation(Class c) {
289 mEffects.add(getRepresentation(ImageFilterTinyPlanet.class));
290 mEffects.add(getRepresentation(ImageFilterWBalance.class));
291 mEffects.add(getRepresentation(ImageFilterExposure.class));
292 mEffects.add(getRepresentation(ImageFilterVignette.class));
293 mEffects.add(getRepresentation(ImageFilterGrad.class));
294 mEffects.add(getRepresentation(ImageFilterContrast.class));
295 mEffects.add(getRepresentation(ImageFilterShadows.class));
296 mEffects.add(getRepresentation(ImageFilterHighlights.class));
297 mEffects.add(getRepresentation(ImageFilterVibrance.class))
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
GenericKey.java 37 public Object getRepresentation()
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 157 if (action.getRepresentation() != null
158 && action.getRepresentation()
160 return action.getRepresentation();
169 if (action.getRepresentation() != null
170 && action.getRepresentation()
216 FilterRepresentation itemRep = getItem(i).getRepresentation();
Action.java 100 public FilterRepresentation getRepresentation() {
192 if (getRepresentation().getFilterType() == FilterRepresentation.TYPE_BORDER) {
CategoryView.java 156 activity.showRepresentation(mAction.getRepresentation());
160 activity.showRepresentation(mAction.getRepresentation());
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java 150 public String getRepresentation() {
156 return "Version: " + getRepresentation();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
UserPresetsAdapter.java 64 FilterRepresentation rep = action.getRepresentation();
73 FilterRepresentation rep = action.getRepresentation();
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 376 NestedNameSpecifier *getRepresentation() const { return Representation; }
  /external/llvm/lib/DebugInfo/CodeView/
TypeTableBuilder.cpp 87 Builder.writeUInt16(static_cast<uint16_t>(M.getRepresentation()));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 442 mVersions.remove(action.getRepresentation());
448 (FilterUserPresetRepresentation) action.getRepresentation();
636 FilterRepresentation representation = copy.getRepresentation(filterRepresentation);
672 if (preset.getRepresentation(representation) != null) {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateView.java 333 && preset.getRepresentation(representation) != null) {

Completed in 584 milliseconds

1 2 3 4 5