HomeSort by relevance Sort by last modified time
    Searched refs:FileInput (Results 1 - 23 of 23) sorted by null

  /frameworks/av/media/img_utils/src/
FileInput.cpp 17 #include <img_utils/FileInput.h>
24 FileInput::FileInput(String8 path) : mFp(NULL), mPath(path), mOpen(false) {}
26 FileInput::~FileInput() {
28 ALOGE("%s: FileInput destroyed without calling close!", __FUNCTION__);
34 status_t FileInput::open() {
48 ssize_t FileInput::read(uint8_t* buf, size_t offset, size_t count) {
69 status_t FileInput::close() {
Android.mk 21 FileInput.cpp \
  /frameworks/av/media/img_utils/include/img_utils/
FileInput.h 34 class ANDROID_API FileInput : public Input {
39 explicit FileInput(String8 path);
41 virtual ~FileInput();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fileinput.py 2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fileinput.py 2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fileinput.py 2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fileinput.py 2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fileinput.py 2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/proto/
analysis.proto 88 repeated FileInput required_input = 3;
113 // When a FileInput F being processed in context C refers to another
114 // FileInput F' at offset O (perhaps because F has an #include directive at O)
126 // case, the associated FileInput was seen to exist in some context C, but
138 message FileInput {
143 // The file's metadata. It is invalid to provide a FileInput without both
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
93 """Return an instance of the FileInput class, which can be iterated.
95 The parameters are passed to the constructor of the FileInput class.
102 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/misc/common/robolectric/lib/
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 

Completed in 844 milliseconds