Home
last modified time | relevance | path

Searched refs:fileContent (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/resources/net_internals/
Dchromeos_view.js11 var fileContent;
33 if (fileContent)
34 g_browser.importONCFile(fileContent, passcode);
71 fileContent = result;
76 jsonObject = JSON.parse(fileContent);
189 fileContent = undefined;
Dbrowser_bridge.js272 importONCFile: function(fileContent, passcode) { argument
273 this.send('importONCFile', [fileContent, passcode]);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
Dsplit-file-by-class49 my $fileContent = "";
62 $fileContent .= "###CLASS###$currentClassName\n";
64 $fileContent .= $line;
95 my @lines = split("\n", $fileContent);
/external/smack/src/org/jivesoftware/smackx/entitycaps/cache/
DSimpleDirectoryPersistentCache.java144 String fileContent = null; in restoreInfoFromFile() local
150 fileContent = dis.readUTF(); in restoreInfoFromFile()
154 if (fileContent == null) in restoreInfoFromFile()
157 Reader reader = new StringReader(fileContent); in restoreInfoFromFile()
/external/chromium_org/v8/tools/sodium/
Dsodium.js57 var fileContent = "";
95 return fileContent.substring(code.sourceBegin, code.sourceEnd);
101 return fileContent.substring(code.asmBegin, code.asmEnd);
190 processLines(fileContent, fileContent.length, processLine);
379 fileContent = e.target.result;
/external/chromium/webkit/glue/
Dwebdropdata.cc33 WebData contents = drag_data.fileContent(); in WebDropData()