/external/chromium/net/http/ |
http_chunked_decoder_unittest.cc | 14 void RunTest(const char* inputs[], size_t num_inputs, 24 std::string input = inputs[i]; 36 // Feed the inputs to the decoder, until it returns an error. 37 void RunTestUntilFailure(const char* inputs[], 44 std::string input = inputs[i]; 58 const char* inputs[] = { local 61 RunTest(inputs, arraysize(inputs), "hello", true, 0); 65 const char* inputs[] = { local 68 RunTest(inputs, arraysize(inputs), "hello", false, 0) 72 const char* inputs[] = { local 82 const char* inputs[] = { local 102 const char* inputs[] = { local 112 const char* inputs[] = { local 120 const char* inputs[] = { local 131 const char* inputs[] = { local 140 const char* inputs[] = { local 151 const char* inputs[] = { local 162 const char* inputs[] = { local 174 const char* inputs[] = { local 184 const char* inputs[] = { local 195 const char* inputs[] = { local 206 const char* inputs[] = { local 217 const char* inputs[] = { local 228 const char* inputs[] = { local 236 const char* inputs[] = { local 245 const char* inputs[] = { local 253 const char* inputs[] = { local 264 const char* inputs[] = { local 273 const char* inputs[] = { local 280 const char* inputs[] = { local 287 const char* inputs[] = { local 304 const char* inputs[] = { local [all...] |
/system/media/mca/filterfw/java/android/filterfw/core/ |
Program.java | 27 public abstract void process(Frame[] inputs, Frame output); 30 Frame[] inputs = new Frame[1]; local 31 inputs[0] = input; 32 process(inputs, output);
|
NativeProgram.java | 98 public void process(Frame[] inputs, Frame output) { 102 NativeFrame[] nativeInputs = new NativeFrame[inputs.length]; 103 for (int i = 0; i < inputs.length; ++i) { 104 if (inputs[i] == null || inputs[i] instanceof NativeFrame) { 105 nativeInputs[i] = (NativeFrame)inputs[i]; 173 private native boolean callNativeProcess(NativeFrame[] inputs, NativeFrame output);
|
FilterFunction.java | 66 // Setup the inputs 96 public Frame executeWithArgList(Object... inputs) { 97 return execute(KeyValueMap.fromKeyValues(inputs));
|
ShaderProgram.java | 88 public void process(Frame[] inputs, Frame output) { 97 GLFrame[] glInputs = new GLFrame[inputs.length]; 98 for (int i = 0; i < inputs.length; ++i) { 99 if (inputs[i] instanceof GLFrame) { 100 glInputs[i] = (GLFrame)inputs[i]; 259 private native boolean shaderProcess(GLFrame[] inputs, GLFrame output);
|
/build/tools/ |
check_builds.sh | 61 local inputs= 64 inputs="$inputs $TEST_BUILD_DIR/golden-$1/installed-files.txt" 65 inputs="$inputs $TEST_BUILD_DIR/dist-$1/installed-files.txt" 68 build/tools/compare_fileslist.py $inputs > $TEST_BUILD_DIR/sizes.html 80 local inputs= 90 build/tools/compare_fileslist.py $inputs > $TEST_BUILD_DIR/sizes.html
|
compare_fileslist.py | 32 inputs = argv[1:] 35 for input in inputs: 84 for input in inputs:
|
/system/media/mca/filterpacks/imageproc/native/ |
invert.c | 19 int invert_process(const char** inputs, 34 const char* input_ptr = inputs[0];
|
to_rgba.c | 19 int gray_to_rgb_process(const char** inputs, 34 const char* input_ptr = inputs[0]; 50 int rgba_to_rgb_process(const char** inputs, 65 const char* input_ptr = inputs[0]; 82 int gray_to_rgba_process(const char** inputs, 97 const char* input_ptr = inputs[0]; 114 int rgb_to_rgba_process(const char** inputs, 129 const char* input_ptr = inputs[0];
|
brightness.c | 48 int brightness_process(const char** inputs, 67 const int* input_ptr = (int*)inputs[0];
|
contrast.c | 43 int contrast_process(const char** inputs, 62 const char* input_ptr = inputs[0];
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ProgramVertexTest.java | 42 // Build elements for shader inputs 163 Element[] inputs = new Element[1]; local 164 inputs[0] = mAttrPosElem; 165 ProgramVertex pv = buildShader(inputs, null, simpleAttr); 171 inputs[0] = mAttrPosNormTexElem; 172 pv = buildShader(inputs, null, multiAttr); 178 inputs[0] = mAttrExtra; 179 pv = buildShader(inputs, null, multiAttr2); 185 // Now with constant inputs 187 inputs[0] = mAttrPosElem [all...] |
/external/webkit/Source/WebCore/WebCore.gyp/scripts/ |
action_useragentstylesheets.py | 35 # usage: action_useragentstylesheets.py OUTPUTS -- INPUTS 37 # Multiple OUTPUTS and INPUTS may be listed. The sections are separated by 43 # INPUTS must contain at least two items. The first item must be the path to 80 (outputs, inputs) = sections 86 makeCssFileArrays = inputs[0] 87 styleSheets = inputs[1:]
|
action_maketokenizer.py | 35 # usage: action_maketokenizer.py OUTPUTS -- INPUTS 37 # Multiple INPUTS may be listed. The sections are separated by -- arguments. 41 # INPUTS must contain exactly two items. The first item must be the path to 77 (outputs, inputs) = sections 82 assert len(inputs) == 2 83 maketokenizer = inputs[0] 84 flexInput = inputs[1]
|
rule_binding.py | 35 # usage: rule_binding.py INPUT CPPDIR HDIR -- INPUTS -- OPTIONS 42 # The first item in INPUTS is the path to generate-bindings.pl. Remaining 43 # items in INPUTS are used to build the Perl module include path. 83 (base, inputs, options) = sections 88 assert len(inputs) > 1, inputs 89 generateBindings = inputs[0] 90 perlModules = inputs[1:]
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
video_encoder.h | 10 int inputs; /* number of inputs */ member in struct:video_encoder_capability 16 #define ENCODER_SET_INPUT _IOW('e', 3, int) /* 0 <= input < #inputs */
|
video_decoder.h | 13 int inputs; /* number of inputs */ member in struct:video_decoder_capability 35 #define DECODER_SET_INPUT _IOW('d', 4, int) /* 0 <= input < #inputs */
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
user_unittest.py | 55 def run_prompt_test(inputs, expected_result, can_choose_multiple=False): 57 return inputs.pop(0) 66 self.assertEqual(len(inputs), 0) 90 expected, inputs = test_case 94 return inputs[1] 96 result = User().confirm(default=inputs[0],
|
/system/media/mca/filterpacks/imageproc/java/ |
ImageCombineFilter.java | 91 Frame[] inputs = new Frame[mInputNames.length]; local 93 inputs[i++] = pullInput(inputName); 97 Frame output = context.getFrameManager().newFrame(inputs[0].getFormat()); 100 updateProgramWithTarget(inputs[0].getFormat().getTarget(), context); 103 mProgram.process(inputs, output);
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
Liveness.java | 68 if (tb.inputs != null) 83 if (h.inputs[k]) 95 in[k] = usage[k] == UNKNOWN && e.inputs[k]; 100 if (tb.inputs == null) { 101 tb.inputs = in; 106 if (in[i] && !tb.inputs[i]) { 107 tb.inputs[i] = true; 114 if (tb.inputs == null) { 121 tb.inputs = in; 150 if (!tb.inputs[k]) [all...] |
/external/llvm/lib/Transforms/Utils/ |
CodeExtractor.cpp | 85 void findInputsOutputs(Values &inputs, Values &outputs); 87 Function *constructFunction(const Values &inputs, 97 Values &inputs, 103 /// severSplitPHINodes - If a PHI node has multiple inputs from outside of the 206 // findInputsOutputs - Find inputs to, outputs from the code region. 208 void CodeExtractor::findInputsOutputs(Values &inputs, Values &outputs) { 219 inputs.insert(*O); 240 /// constructFunction - make a function based on inputs and outputs, as follows: 243 Function *CodeExtractor::constructFunction(const Values &inputs, 250 DEBUG(dbgs() << "inputs: " << inputs.size() << "\n") 670 Values inputs, outputs; local [all...] |
/sdk/anttasks/src/com/android/ant/ |
BaseTask.java | 114 List<InputPath> inputs, String outputFile) { 125 int count = inputs.size(); 127 InputPath input = inputs.get(i);
|
/system/media/mca/filterfw/native/core/ |
native_program.cpp | 103 bool NativeProgram::CallProcess(const std::vector<const char*>& inputs, 108 return process_function_(const_cast<const char**>(&inputs[0]), 110 inputs.size(),
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
deduplicate_tests_unittest.py | 129 for expected, inputs in test_cases: 131 deduplicate_tests.has_intermediate_results(*inputs)) 205 for expected, inputs in test_cases: 207 deduplicate_tests.get_relative_test_path(*inputs))
|
/external/jsilver/src/com/google/clearsilver/jsilver/values/ |
Value.java | 158 * partiallyEscaped} values of the inputs. 161 * @param inputs Values that were used to compute the integer value. 163 public static Value literalConstant(int value, Value... inputs) { 165 for (Value input : inputs) { 177 * partiallyEscaped} values of the inputs. 180 * @param inputs Values that were used to compute the string value. 182 public static Value literalConstant(String value, Value... inputs) { 184 for (Value input : inputs) { 196 * partiallyEscaped} values of the inputs. 199 * @param inputs Values that were used to compute the boolean value [all...] |