Search in sources :

Example 46 with KeyValueMap

use of android.filterfw.core.KeyValueMap in project android_frameworks_base by ResurrectionRemix.

the class Filter method initWithAssignmentList.

public final void initWithAssignmentList(Object... keyValues) {
    KeyValueMap valueMap = new KeyValueMap();
    valueMap.setKeyValues(keyValues);
    initWithValueMap(valueMap);
}
Also used : KeyValueMap(android.filterfw.core.KeyValueMap)

Example 47 with KeyValueMap

use of android.filterfw.core.KeyValueMap in project android_frameworks_base by ResurrectionRemix.

the class FrameFormat method mutableCopy.

public MutableFrameFormat mutableCopy() {
    MutableFrameFormat result = new MutableFrameFormat();
    result.setBaseType(getBaseType());
    result.setTarget(getTarget());
    result.setBytesPerSample(getBytesPerSample());
    result.setDimensions(getDimensions());
    result.setObjectClass(getObjectClass());
    result.mMetaData = mMetaData == null ? null : (KeyValueMap) mMetaData.clone();
    return result;
}
Also used : KeyValueMap(android.filterfw.core.KeyValueMap) MutableFrameFormat(android.filterfw.core.MutableFrameFormat)

Example 48 with KeyValueMap

use of android.filterfw.core.KeyValueMap in project android_frameworks_base by crdroidandroid.

the class FrameFormat method mutableCopy.

public MutableFrameFormat mutableCopy() {
    MutableFrameFormat result = new MutableFrameFormat();
    result.setBaseType(getBaseType());
    result.setTarget(getTarget());
    result.setBytesPerSample(getBytesPerSample());
    result.setDimensions(getDimensions());
    result.setObjectClass(getObjectClass());
    result.mMetaData = mMetaData == null ? null : (KeyValueMap) mMetaData.clone();
    return result;
}
Also used : KeyValueMap(android.filterfw.core.KeyValueMap) MutableFrameFormat(android.filterfw.core.MutableFrameFormat)

Aggregations

KeyValueMap (android.filterfw.core.KeyValueMap)48 GraphIOException (android.filterfw.io.GraphIOException)18 String (java.lang.String)12 Pattern (java.util.regex.Pattern)12 FilterFactory (android.filterfw.core.FilterFactory)6 MutableFrameFormat (android.filterfw.core.MutableFrameFormat)6 PatternScanner (android.filterfw.io.PatternScanner)6 TextGraphReader (android.filterfw.io.TextGraphReader)6 FrameBranch (android.filterpacks.base.FrameBranch)6 Iterator (java.util.Iterator)6 LinkedList (java.util.LinkedList)6