| /external/openfst/src/include/fst/script/ |
| reweight.h | 23 #include <fst/script/arg-packs.h> 24 #include <fst/script/fst-class.h> 25 #include <fst/script/weight-class.h> 29 namespace script { namespace in namespace:fst 50 } // namespace script
|
| synchronize.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 39 } // namespace script
|
| union.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 39 } // namespace script
|
| arcsort.h | 21 #include <fst/script/arg-packs.h> 22 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 46 } // namespace script
|
| compose.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 55 const ComposeOptions &opts = fst::script::ComposeOptions()); 60 } // namespace script
|
| concat.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 49 } // namespace script
|
| convert.h | 22 #include <fst/script/arg-packs.h> 23 #include <fst/script/fst-class.h> 26 namespace script { namespace in namespace:fst 46 } // namespace script
|
| difference.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 22 #include <fst/script/compose.h> // for ComposeFilter 26 namespace script { namespace in namespace:fst 59 const ComposeOptions &opts = fst::script::ComposeOptions()); 62 } // namespace script
|
| encode.h | 22 #include <fst/script/arg-packs.h> 23 #include <fst/script/fst-class.h> 27 namespace script { namespace in namespace:fst 53 } // namespace script
|
| equal.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 41 } // namespace script
|
| equivalent.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 42 } // namespace script
|
| /external/openfst/src/script/ |
| weight-class.cc | 20 #include <fst/script/weight-class.h> 23 namespace script { namespace in namespace:fst 44 } // namespace script
|
| /external/v8/test/mjsunit/ |
| debug-liveedit-2.js | 47 var script = Debug.findScript(ChooseAnimal); variable 50 var patch_pos = script.source.indexOf(orig_animal); 58 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
|
| debug-liveedit-breakpoints.js | 63 var script = Debug.findScript(F25); variable 67 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 1, 1, "true || false || false"); 68 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 6, 1, "true || false || false"); 69 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 14, 1, "true || false || false"); 73 var new_source = script.source.replace(function_z_text, ""); 77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); 83 // One breakpoint gets duplicated in a old version of script. 89 if (breaks[i].script_id() == script.id) {
|
| debug-liveedit-patch-positions-replace.js | 51 var script = Debug.findScript(BeingReplaced); variable 54 var patch_pos = script.source.indexOf(orig_body); 62 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_body.length, new_body_patch, change_log);
|
| /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
| TestCaseInputMultiString.java | 38 private String script; field in class:TestCaseInputMultiString 41 this.script = text; 46 return "<<" + TestCase.convertPreservedChars(script) + ">>"; 49 public void setScript(String script) { 50 this.script = script; 54 return this.script;
|
| TestCaseInputString.java | 37 private String script; field in class:TestCaseInputString 40 this.script = text; 45 return '"' + TestCase.convertPreservedChars(script) + '"'; 50 public void setScript(String script) { 51 this.script = script; 55 return this.script;
|
| TestCaseOutputReturn.java | 31 private String script; field in class:TestCaseOutputReturn 34 this.script = text; 39 return String.format(" returns [%s]", script); 42 public void setScript(String script) { 43 this.script = script; 47 return this.script;
|
| TestCaseOutputStdOut.java | 35 private String script; field in class:TestCaseOutputStdOut 38 this.script = text; 43 return String.format(" -> \"%s\"", script); 46 public void setScript(String script) { 47 this.script = script; 51 return this.script;
|
| /external/chromium_org/chrome/test/webdriver/commands/ |
| execute_async_script_command.cc | 26 std::string script; local 27 if (!GetStringParameter("script", &script)) { 29 kBadRequest, "No script to execute specified")); 36 kBadRequest, "No script arguments specified")); 42 session_->current_target(), script, args, &result); 44 error->AddDetails("Script execution failed. Script: " + script);
|
| execute_command.cc | 27 std::string script; local 28 if (!GetStringParameter("script", &script)) { 29 response->SetError(new Error(kBadRequest, "No script specified")); 36 kBadRequest, "No script arguments specified")); 41 Error* error = session_->ExecuteScript(script, args, &result); 43 error->AddDetails("Script execution failed. Script: " + script);
|
| /external/chromium_org/third_party/WebKit/Source/core/loader/cache/ |
| ScriptResource.cpp | 38 : Resource(resourceRequest, Script) 68 const String& ScriptResource::script() function in class:WebCore::ScriptResource 74 String script = m_decoder->decode(m_data->data(), encodedSize()); local 75 script.append(m_decoder->flush()); 77 // We lie a it here and claim that script counts as encoded data (even though it's really decoded data). 79 // but we can't destroy script in destroyDecodedData because that's our only copy of the data! 80 setEncodedSize(script.sizeInBytes()); 81 m_script = script;
|
| /external/chromium_org/third_party/skia/src/animator/ |
| SkDump.h | 33 SkString script; member in class:SkDump
|
| /external/openfst/src/extensions/far/ |
| farscript.cc | 21 #include <fst/script/script-impl.h> 25 namespace script { namespace in namespace:fst 130 } // namespace script
|
| /external/openfst/src/extensions/pdt/ |
| pdtscript.cc | 20 // See comments in nlp/fst/script/script-impl.h for how the registration 35 #include <fst/script/script-impl.h> 38 namespace script { namespace in namespace:fst 114 } // namespace script
|