Home
last modified time | relevance | path

Searched refs:_input (Results 1 – 25 of 38) sorted by relevance

12

/external/python/cpython2/Lib/email/
Dfeedparser.py164 self._input = BufferedSubFile()
177 self._input.push(data)
188 self._input.close()
222 for line in self._input:
231 self._input.unreadline(line)
243 line = self._input.readline()
259 self._input.push_eof_matcher(NLCRE.match)
269 self._input.pop_eof_matcher()
275 line = self._input.readline()
281 line = self._input.readline()
[all …]
/external/libxcam/modules/isp/
Daiq_handler.cpp344 xcam_mem_clear (_input); in AiqAeHandler()
345 _input.num_exposures = 1; in AiqAeHandler()
346 _input.frame_use = _aiq_compositor->get_frame_use(); in AiqAeHandler()
347 _input.flash_mode = ia_aiq_flash_mode_off; in AiqAeHandler()
348 _input.operation_mode = ia_aiq_ae_operation_mode_automatic; in AiqAeHandler()
349 _input.metering_mode = ia_aiq_ae_metering_mode_evaluative; in AiqAeHandler()
350 _input.priority_mode = ia_aiq_ae_priority_mode_normal; in AiqAeHandler()
351 _input.flicker_reduction_mode = ia_aiq_ae_flicker_reduction_auto; in AiqAeHandler()
352 _input.sensor_descriptor = NULL; in AiqAeHandler()
353 _input.exposure_window = NULL; in AiqAeHandler()
[all …]
Daiq_handler.h150 ia_aiq_ae_input_params _input; variable
188 ia_aiq_awb_input_params _input; variable
/external/python/cpython3/Lib/email/
Dfeedparser.py162 self._input = BufferedSubFile()
175 self._input.push(data)
186 self._input.close()
224 for line in self._input:
235 self._input.unreadline(line)
247 line = self._input.readline()
263 self._input.push_eof_matcher(NLCRE.match)
273 self._input.pop_eof_matcher()
279 line = self._input.readline()
285 line = self._input.readline()
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dsegment_reduction_ops_test.py37 def _input(self, input_shape, dtype=dtypes_lib.int32): member in SegmentReductionHelper
115 tf_x, np_x = self._input(shape, dtype=dtype)
129 tf_x, _ = self._input(shape)
138 tf_x, _ = self._input(shape)
149 tf_x, _ = self._input(shape, dtype=dtypes_lib.float32)
158 tf_x, np_x = self._input(shape, dtype=dtypes_lib.float32)
169 tf_x, np_x = self._input(shape, dtype=dtypes_lib.float32)
179 tf_x, _ = self._input(shape)
190 tf_x, _ = self._input(shape)
199 tf_x, _ = self._input(shape)
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs77 private IIntStream _input; field in Antlr.Runtime.RecognitionException
145 this._input = input; in RecognitionException()
180 if (_input is ITokenStream) {
184 ITreeNodeStream treeNodeStream = _input as ITreeNodeStream;
205 return _input;
208 _input = value;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs79 private IIntStream _input; field in Antlr.Runtime.RecognitionException
153 this._input = input; in RecognitionException()
204 if ( _input is ITokenStream )
209 ITreeNodeStream treeNodeStream = _input as ITreeNodeStream;
236 return _input;
240 _input = value;
/external/libxcam/modules/ocl/
Dcl_geo_map_handler.cpp259_input[NV12PlaneYIdx] = convert_to_climage (context, input, cl_desc, in_info.offsets[NV12PlaneYIdx… in prepare_parameters()
266_input[NV12PlaneUVIdx] = convert_to_climage (context, input, cl_desc, in_info.offsets[NV12PlaneUVI… in prepare_parameters()
279 _input[NV12PlaneYIdx].ptr () && _input[NV12PlaneYIdx]->is_valid () && in prepare_parameters()
280 _input[NV12PlaneUVIdx].ptr () && _input[NV12PlaneUVIdx]->is_valid () && in prepare_parameters()
313 _input[i].release (); in execute_done()
Dcl_fisheye_handler.cpp249_input[NV12PlaneYIdx] = convert_to_climage (context, input, cl_desc, in_info.offsets[NV12PlaneYIdx… in prepare_parameters()
256_input[NV12PlaneUVIdx] = convert_to_climage (context, input, cl_desc, in_info.offsets[NV12PlaneUVI… in prepare_parameters()
281 _input[NV12PlaneYIdx].ptr () && _input[NV12PlaneYIdx]->is_valid () && in prepare_parameters()
282 _input[NV12PlaneUVIdx].ptr () && _input[NV12PlaneUVIdx]->is_valid () && in prepare_parameters()
534 _input[i].release (); in execute_done()
Dcl_fisheye_handler.h112 return _input [index]; in get_input_image()
153 SmartPtr<CLImage> _input[NV12PlaneMax]; variable
Dcl_geo_map_handler.h103 return _input [index]; in get_geo_input_image()
144 SmartPtr<CLImage> _input[NV12PlaneMax]; variable
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DCommonToken.as37 protected var _input:CharStream;
61 token._input = input;
93 if ( _input==null ) {
96 _text = _input.substring(_start, _stop);
158 return _input;
162 _input = input;
/external/tensorflow/tensorflow/python/debug/cli/
Dreadline_ui.py44 self._input = raw_input
46 self._input = input
84 return self._input(self.CLI_PROMPT).strip()
/external/parameter-framework/upstream/utility/
DTokenizer.cpp38 : _input(input), _delimiters(delimiters), _mergeDelimiters(mergeDelimiters) in Tokenizer()
48 for (const auto character : _input) { in split()
DTokenizer.h66 const std::string _input; //< string to be tokenized
/external/toolchain-utils/automation/common/
Dcommand.py146 self._input = kwargs.get('input', None)
156 if self._input:
157 pipe.insert(str(Shell('cat', self._input), 0))
/external/python/cpython3/Lib/
Dsubprocess.py602 self._input = None
1480 if self._input:
1481 input_view = memoryview(self._input)
1512 if self._input_offset >= len(self._input):
1549 if self.stdin and self._input is None:
1551 self._input = input
1554 self._input = self._input.encode(self.stdin.encoding,
/external/walt/ios/WALT/
DMIDIClient.m164 MIDIPortRef _input;
191 if (!_input) { // Lazily create the input port.
196 &_input);
206 result = MIDIPortConnectSource(_input, source.endpoint, (__bridge void *)self);
/external/tensorflow/tensorflow/core/kernels/hexagon/
Dgraph_transferer_test.cc104 auto _input = ops::AsNodeOut(scope, input); in BuildConv2DOps() local
111 .Input(_input) in BuildConv2DOps()
128 auto _input = ops::AsNodeOut(scope, input); in BuildMaxPoolOps() local
133 .Input(_input) in BuildMaxPoolOps()
/external/selinux/python/sepolgen/src/sepolgen/
Dlex.py842 _input = lexer.input
844 _input = input
845 _input(data)
/external/doclava/src/com/google/doclava/parser/
DJavaParser.java16035 public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { in specialStateTransition() argument
16036 TokenStream input = (TokenStream)_input; in specialStateTransition()
16130 public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { in specialStateTransition() argument
16131 TokenStream input = (TokenStream)_input; in specialStateTransition()
16459 public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { in specialStateTransition() argument
16460 TokenStream input = (TokenStream)_input; in specialStateTransition()
16718 public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { in specialStateTransition() argument
16719 TokenStream input = (TokenStream)_input; in specialStateTransition()
16986 public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { in specialStateTransition() argument
16987 TokenStream input = (TokenStream)_input; in specialStateTransition()
[all …]
/external/libmojo/third_party/ply/
Dlex.py1026 _input = lexer.input
1028 _input = input
1029 _input(data)
/external/tensorflow/tensorflow/python/training/
Dtraining.py137 from tensorflow.python.training import input as _input unknown
/external/ply/ply/ply/
Dlex.py1067 _input = lexer.input
1069 _input = input
1070 _input(data)
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
DActionScript.stg964 …private function DFA<dfa.decisionNumber>_specialStateTransition(dfa:DFA, s:int, _input:IntStream):…
966 var input:IntStream = _input;
969 var input:TokenStream = TokenStream(_input);
972 var input:TreeNodeStream = TreeNodeStream(_input);

12