/external/opencv3/samples/cpp/ |
ufacedetect.cpp | 54 String inputName; 93 inputName = argv[i]; 105 if( inputName.empty() || (isdigit(inputName.c_str()[0]) && inputName.c_str()[1] == '\0') ) 107 int c = inputName.empty() ? 0 : inputName.c_str()[0] - '0'; 113 if( inputName.empty() ) 114 inputName = "../data/lena.jpg"; 115 image = imread( inputName, 1 ).getUMat(ACCESS_READ) [all...] |
facedetect.cpp | 55 string inputName; 94 inputName.assign( argv[i] ); 104 if( inputName.empty() || (isdigit(inputName.c_str()[0]) && inputName.c_str()[1] == '\0') ) 106 capture = cvCaptureFromCAM( inputName.empty() ? 0 : inputName.c_str()[0] - '0' ); 107 int c = inputName.empty() ? 0 : inputName.c_str()[0] - '0' ; 110 else if( inputName.size() [all...] |
smiledetect.cpp | 52 string inputName; 89 inputName.assign( argv[i] ); 105 if( inputName.empty() || (isdigit(inputName.c_str()[0]) && inputName.c_str()[1] == '\0') ) 107 capture = cvCaptureFromCAM( inputName.empty() ? 0 : inputName.c_str()[0] - '0' ); 108 int c = inputName.empty() ? 0 : inputName.c_str()[0] - '0' ; 111 else if( inputName.size() [all...] |
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
ImageCombineFilter.java | 60 for (String inputName : mInputNames) { 61 addMaskedInputPort(inputName, ImageFormat.create(ImageFormat.COLORSPACE_RGBA)); 73 for (String inputName : mInputNames) { 74 if (target != getInputFormat(inputName).getTarget()) { 86 for (String inputName : mInputNames) { 87 inputs[i++] = pullInput(inputName);
|
/frameworks/base/media/mca/effect/java/android/media/effect/ |
SizeChangeEffect.java | 34 String inputName, 37 super(context, name, filterClass, inputName, outputName, finalParameters);
|
SingleFilterEffect.java | 43 * @param inputName The name of the input image port. 50 String inputName, 55 mInputName = inputName;
|
FilterGraphEffect.java | 50 * @param inputName The name of the input GLTextureSource filter. 56 String inputName, 61 mInputName = inputName;
|
/external/proguard/src/proguard/io/ |
ClassRewriter.java | 53 String inputName = dataEntry.getName(); 54 String className = inputName.substring(0, inputName.length() - ClassConstants.CLASS_FILE_EXTENSION.length());
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
OIDName.java | 136 * Return type of constraint inputName places on this name:<ul> 145 * @param inputName to be checked for being constrained 150 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { 152 if (inputName == null) 154 else if (inputName.getType() != NAME_OID) 156 else if (this.equals((OIDName)inputName))
|
GeneralNameInterface.java | 78 * Return type of constraint inputName places on this name:<ul> 87 * @param inputName to be checked for being constrained 92 int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException;
|
OtherName.java | 226 * Return type of constraint inputName places on this name:<ul> 239 * @param inputName to be checked for being constrained 244 public int constrains(GeneralNameInterface inputName) { 246 if (inputName == null) { 248 } else if (inputName.getType() != NAME_ANY) {
|
RFC822Name.java | 178 * @param inputName to be checked for being constrained 183 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { 185 if (inputName == null) 187 else if (inputName.getType() != (GeneralNameInterface.NAME_RFC822)) { 192 (((RFC822Name)inputName).getName()).toLowerCase(Locale.ENGLISH);
|
DNSName.java | 166 * Return type of constraint inputName places on this name:<ul> 190 * @param inputName to be checked for being constrained 195 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { 197 if (inputName == null) 199 else if (inputName.getType() != NAME_DNS) 203 (((DNSName)inputName).getName()).toLowerCase(Locale.ENGLISH);
|
EDIPartyName.java | 228 * @param inputName to be checked for being constrained 233 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { 235 if (inputName == null) 237 else if (inputName.getType() != NAME_EDI)
|
/external/javassist/sample/preproc/ |
Compiler.java | 60 * @param inputname the name of the source file. 62 public Compiler(String inputname) throws CannotCompileException { 64 input = new BufferedReader(new FileReader(inputname)); 67 throw new CannotCompileException("cannot open: " + inputname); 70 String outputname = getOutputFilename(inputname); 71 if (outputname.equals(inputname)) 73 + inputname);
|
/external/opencv3/samples/gpu/ |
cascadeclassifier.cpp | 140 string inputName; 151 inputName = argv[++i]; 156 inputName = argv[++i]; 166 inputName = argv[i]; 189 image = imread(inputName); 194 capture.open(inputName); 199 capture.open(atoi(inputName.c_str()));
|
/hardware/akm/AK8975_FS/libsensors/ |
SensorBase.cpp | 116 int SensorBase::openInput(const char* inputName) { 141 if (!strcmp(name, inputName)) { 151 ALOGE_IF(fd<0, "couldn't find '%s' input device", inputName);
|
SensorBase.h | 38 int openInput(const char* inputName);
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
split-lib.py | 42 def splitScript(inputname, libGenScript, timingScript): 43 rootname = inputname[:-2] 47 infile = open(inputname, "r") 50 print "Splitting %s into %s and %s" % (inputname, callname, libname)
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
split-lib.py | 42 def splitScript(inputname, libGenScript, timingScript): 43 rootname = inputname[:-2] 47 infile = open(inputname, "r") 50 print "Splitting %s into %s and %s" % (inputname, callname, libname)
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
Filter.java | 145 public void setInputFrame(String inputName, Frame frame) { 146 FilterPort port = getInputPort(inputName); 153 public final void setInputValue(String inputName, Object value) { 154 setInputFrame(inputName, wrapInputValue(inputName, value)); 345 * @param inputName the name of the input port, that this output depends on 347 protected void addOutputBasedOnInput(String outputName, String inputName) { 350 port.setBasePort(getInputPort(inputName)); 534 final synchronized void pushInputFrame(String inputName, Frame frame) { 535 FilterPort port = getInputPort(inputName); [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FilterGraph.java | 207 VariableSource assignValueToFilterInput(Object value, String filterName, String inputName) { 215 String valueSourceName = filterName + "." + inputName; 218 + "input '" + inputName + "' exists already!"); 225 ((Filter)valueSource).connect("value", filter, inputName); 227 throw new RuntimeException("Could not connect VariableSource to input '" + inputName 241 String inputName) { 256 connectAndBranch(variable, "value", filter, inputName); 258 throw new RuntimeException("Could not connect VariableSource to input '" + inputName
|
/external/antlr/antlr-3.4/runtime/C/vsrulefiles/ |
antlr3lexerandparser.rules | 11 Outputs="[OutputDirectory]\$(InputName)Parser.c;[OutputDirectory]\$(InputName)Parser.h;[OutputDirectory]\$(InputName)Lexer.c;[OutputDirectory]\$(InputName)Lexer.h"
|
/external/opencv3/samples/tapi/ |
pyrlk_optical_flow.cpp | 105 int inputName = cmd.get<int>("c"); 127 capture.open( inputName ); 131 int c = inputName ;
|
squares.cpp | 164 string inputName = cmd.get<string>("i"); 172 imread(inputName, 1).copyTo(image); 175 cout << "Couldn't load " << inputName << endl;
|