HomeSort by relevance Sort by last modified time
    Searched full:fileinput (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/ManualTests/
input-file-hidden-open-dialog-on-click.html 9 <input id=fileinput type="file" hidden />
10 <button onclick="document.getElementById('fileinput').click();">Click me</button>
  /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...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
deps.py 32 import fileinput namespace
47 for line in fileinput.FileInput(self._path):
56 for line in fileinput.FileInput(self._path, inplace=1):
  /external/clang/www/
builtins.py 3 import sys, fileinput namespace
148 sys.stderr.write("%s:%d: x86 builtin %s used, replaced with %s\n" % (fileinput.filename(), fileinput.filelineno(), builtin, repl))
151 sys.stderr.write("%s:%d: x86 builtin %s used, too many replacements\n" % (fileinput.filename(), fileinput.filelineno(), builtin))
153 for line in fileinput.input(inplace=1):
  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
vc98_swap.py 10 import os, shutil, string, fileinput, sys namespace
13 for l in fileinput.input(sp, inplace = 1) :
25 for l in fileinput.input(sp, inplace = 1) :
  /external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
example.js 7 document.getElementById('fileInput').addEventListener('change',
35 var file_input = document.getElementById("fileInput");
index.html 22 <input type="file" id="fileInput" multiple>
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonMatchingStrategy.java 44 FileEditorInput fileInput = (FileEditorInput)input;
47 IFile file = fileInput.getFile();
53 return m.matches(editorRef, fileInput);
CommonXmlDelegate.java 134 FileEditorInput fileInput = (FileEditorInput) input;
135 IFile file = fileInput.getFile();
CommonXmlEditor.java 108 IFileEditorInput fileInput = (IFileEditorInput) editorInput;
109 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorMatchingStrategy.java 41 FileEditorInput fileInput = (FileEditorInput)input;
44 IFile file = fileInput.getFile();
56 // if it's a layout, we now check the name of the fileInput against the name of the
LayoutEditorDelegate.java 262 FileEditorInput fileInput = (FileEditorInput)input;
263 editedFile = fileInput.getFile();
762 IFileEditorInput fileInput = (IFileEditorInput) editorInput;
763 IFile file = fileInput.getFile();
    [all...]
  /external/chromium_org/chromeos/ime/
gen_input_methods.py 46 import fileinput namespace
105 for line in fileinput.input(sys.argv[1]):
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportEditor.java 82 FileEditorInput fileInput = (FileEditorInput) input;
83 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesTreePage.java 83 FileEditorInput fileInput = (FileEditorInput)input;
84 IFile iFile = fileInput.getFile();
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
StGUnit.g 89 | fileInput {$in = adapter.createFileInput($fileInput.path);}
98 fileInput returns [String path]
  /external/chromium_org/v8/tools/
tick-processor.html 118 document.getElementById('fileinput').addEventListener(
156 <input type="file" id="fileinput" />
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 116 FileEditorInput fileInput = (FileEditorInput)input;
117 IFile file = fileInput.getFile();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
sampstat 29 import fileinput namespace
73 for line in fileinput.input(files):
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 451 RefPtr<HTMLInputElement> fileInput = m_fileInputElementUnderMouse;
470 if (dragData->containsFiles() && fileInput) {
471 // fileInput should be the element we hit tested for, unless it was made
473 ASSERT(fileInput == element || !fileInput->renderer());
474 if (fileInput->isDisabledFormControl())
477 return fileInput->receiveDroppedFiles(dragData);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 288 FileEditorInput fileInput = (FileEditorInput) input;
289 return fileInput.getFile().getProject();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 405 IFileEditorInput fileInput = (IFileEditorInput) input;
406 return fileInput.getFile();

Completed in 1233 milliseconds

1 2