/external/chromium_org/chrome/browser/nacl_host/test/ |
gdb_debug_stub_browsertest.cc | 37 // We call python script to reuse GDB RSP protocol implementation. 39 base::FilePath script; local 40 PathService::Get(base::DIR_SOURCE_ROOT, &script); 41 script = script.AppendASCII( 43 cmd.AppendArgPath(script);
|
/external/openfst/src/bin/ |
fstmap.cc | 25 #include <fst/script/map.h> 36 namespace s = fst::script; 37 using fst::script::FstClass; 38 using fst::script::MutableFstClass; 39 using fst::script::VectorFstClass;
|
/external/openfst/src/include/fst/script/ |
randgen.h | 20 #include <fst/script/arg-packs.h> 21 #include <fst/script/fst-class.h> 25 namespace script { namespace in namespace:fst 68 fst::RandGenOptions<fst::script::RandArcSelection>( 69 fst::script::UNIFORM_ARC_SELECTOR)); 71 } // namespace script
|
/external/openfst/src/script/ |
prune.cc | 17 #include <fst/script/fst-class.h> 18 #include <fst/script/script-impl.h> 19 #include <fst/script/prune.h> 22 namespace script { namespace in namespace:fst 75 } // namespace script
|
/external/chromium_org/chrome/browser/extensions/ |
user_script_master.cc | 64 const base::StringPiece& script_text, UserScript* script) { 107 script->add_glob(value); 111 script->add_exclude_glob(value); 113 script->set_name_space(value); 115 script->set_name(value); 119 script->set_version(version.GetString()); 121 script->set_description(value); 126 script->add_url_pattern(pattern); 131 script->add_exclude_url_pattern(exclude); 134 script->set_run_location(UserScript::DOCUMENT_START) 236 UserScript& script = user_scripts->at(i); local 269 const UserScript& script = scripts[i]; local [all...] |
/external/libppp/src/ |
defs.c | 311 MakeArgs(char *script, char **pvect, int maxargs, int flags) 316 while (*script) { 317 script += strspn(script, " \t"); 318 if (*script == '#' && !(flags & PARSE_NOHASH)) { 319 *script = '\0'; 322 if (*script) { 325 *pvect++ = script; 327 script = findblank(script, flags) [all...] |
/external/chromium_org/chrome/renderer/extensions/ |
user_script_slave.cc | 51 // user script to wrap it in an anonymous scope. 177 UserScript* script = scripts_.back(); local 178 script->Unpickle(pickle, &iter); 183 for (size_t j = 0; j < script->js_scripts().size(); ++j) { 187 script->js_scripts()[j].set_external_content( 190 for (size_t j = 0; j < script->css_scripts().size(); ++j) { 194 script->css_scripts()[j].set_external_content( 198 if (only_inject_incognito && !script->is_incognito_enabled()) { 199 // This script shouldn't run in an incognito tab. 200 delete script; 209 UserScript* script = scripts_[i]; local 276 UserScript* script = scripts_[i]; local [all...] |
/bootable/recovery/edify/ |
main.c | 45 state.script = strdup(expr_str); 50 free(state.script); 162 void ExprDump(int depth, Expr* n, char* script) { 164 char temp = script[n->end]; 165 script[n->end] = '\0'; 168 script+n->start); 169 script[n->end] = temp; 172 ExprDump(depth+1, n->argv[i], script); 205 state.script = buffer;
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/ |
mapping_file_provider.cc | 62 void ConstructFullLocale(const string& language, const string& script, const 65 AppendLocalePart(script, full_locale); 95 const string& script, 115 FindBestMatchingLanguageCode(langs, language, script, region, 128 const string& script, const string& region, string* best_match) const { 130 ConstructFullLocale(language, script, region, &full_locale); 145 if (script.empty() != region.empty()) { 150 } else if (!script.empty() && !region.empty()) { 153 lang_with_script.append(script);
|
/external/harfbuzz_ng/test/api/ |
test-ot-tag.c | 37 test_simple_tags (const char *s, hb_script_t script) 42 g_test_message ("Testing script %c%c%c%c: tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s); 45 hb_ot_tags_from_script (script, &t1, &t2); 50 g_assert_cmphex (hb_ot_tag_to_script (tag), ==, script); local 54 test_indic_tags (const char *s1, const char *s2, hb_script_t script) 59 g_test_message ("Testing script %c%c%c%c: new tag %s, old tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s1, s2); 63 hb_ot_tags_from_script (script, &t1, &t2); 68 g_assert_cmphex (hb_ot_tag_to_script (tag1), ==, script); local 69 g_assert_cmphex (hb_ot_tag_to_script (tag2), ==, script); local [all...] |
/external/chromium_org/webkit/renderer/ |
webpreferences_renderer.cc | 33 UScriptCode script) { 34 settings->setStandardFontFamily(font, script); 39 UScriptCode script) { 40 settings->setFixedFontFamily(font, script); 45 UScriptCode script) { 46 settings->setSerifFontFamily(font, script); 51 UScriptCode script) { 52 settings->setSansSerifFontFamily(font, script); 57 UScriptCode script) { 58 settings->setCursiveFontFamily(font, script); 100 int32 script = u_getPropertyValueEnum(UCHAR_SCRIPT, (it->first).c_str()); local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkScript.cpp | 19 ? use standard XML / script notation like document.getElementById("canvas"); 369 bool SkScriptEngine::evaluateDot(const char*& script, bool suppressed) { 370 size_t fieldLength = token_length(++script); // skip dot 375 const char* field = script; 376 script += fieldLength; 382 return evaluateDotParam(script, suppressed, field, fieldLength); 385 bool SkScriptEngine::evaluateDotParam(const char*& script, bool suppressed, 400 while (is_ws(ch = script[0])) 401 script++; 411 success = functionParams(&script, params) 439 const char* script = *scriptPtr; local 519 const char* script = *scriptPtr; local [all...] |
SkAnimatorScript.h | 29 bool evaluate(const char* script, SkScriptValue* , SkDisplayTypes type); 33 static bool EvaluateDisplayable(SkAnimateMaker& , SkDisplayable* , const char* script, SkDisplayable** ); 34 static bool EvaluateFloat(SkAnimateMaker& , SkDisplayable* , const char* script, SkScalar* ); 35 static bool EvaluateInt(SkAnimateMaker& , SkDisplayable* , const char* script, int32_t* ); 36 static bool EvaluateString(SkAnimateMaker& , SkDisplayable* , const char* script, SkString* ); 37 static bool EvaluateString(SkAnimateMaker& , SkDisplayable* , SkDisplayable* parent, const char* script, SkString* );
|
SkDump.cpp | 29 SK_MEMBER(script, String) 40 if (script.size() > 0) 61 const char* cScript = script.c_str(); 63 SkDebugf("%*s<dump script=\"%s\" answer=\" ", SkDisplayList::fIndent, "", script.c_str()); 121 SK_PROPERTY(script) 131 SK_MEMBER_PROPERTY(script, String)
|
/external/skia/src/animator/ |
SkScript.cpp | 19 ? use standard XML / script notation like document.getElementById("canvas"); 369 bool SkScriptEngine::evaluateDot(const char*& script, bool suppressed) { 370 size_t fieldLength = token_length(++script); // skip dot 375 const char* field = script; 376 script += fieldLength; 382 return evaluateDotParam(script, suppressed, field, fieldLength); 385 bool SkScriptEngine::evaluateDotParam(const char*& script, bool suppressed, 400 while (is_ws(ch = script[0])) 401 script++; 411 success = functionParams(&script, params) 439 const char* script = *scriptPtr; local 519 const char* script = *scriptPtr; local [all...] |
SkAnimatorScript.h | 29 bool evaluate(const char* script, SkScriptValue* , SkDisplayTypes type); 33 static bool EvaluateDisplayable(SkAnimateMaker& , SkDisplayable* , const char* script, SkDisplayable** ); 34 static bool EvaluateFloat(SkAnimateMaker& , SkDisplayable* , const char* script, SkScalar* ); 35 static bool EvaluateInt(SkAnimateMaker& , SkDisplayable* , const char* script, int32_t* ); 36 static bool EvaluateString(SkAnimateMaker& , SkDisplayable* , const char* script, SkString* ); 37 static bool EvaluateString(SkAnimateMaker& , SkDisplayable* , SkDisplayable* parent, const char* script, SkString* );
|
SkDump.cpp | 29 SK_MEMBER(script, String) 40 if (script.size() > 0) 61 const char* cScript = script.c_str(); 63 SkDebugf("%*s<dump script=\"%s\" answer=\" ", SkDisplayList::fIndent, "", script.c_str()); 121 SK_PROPERTY(script) 131 SK_MEMBER_PROPERTY(script, String)
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/ |
background.js | 5 // Called when a message is passed. We assume that the content script 8 // Show the page action for the tab that the sender (content script) 16 // Listen for the content script to send a message to the background page.
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/ |
SConscript | 63 script = GLAPI + 'gen/gl_x86_asm.py', 65 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET' 76 script = GLAPI + 'gen/gl_x86-64_asm.py', 78 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET' 89 script = GLAPI + 'gen/gl_SPARC_asm.py', 91 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
/external/e2fsprogs/config/ |
parse-types.sh | 3 cat > sed.script << "EOF" 20 sed -f sed.script | grep '^#' > asm_types.h 22 rm sed.script
|
/external/mesa3d/src/mapi/glapi/ |
SConscript | 63 script = GLAPI + 'gen/gl_x86_asm.py', 65 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET' 76 script = GLAPI + 'gen/gl_x86-64_asm.py', 78 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET' 89 script = GLAPI + 'gen/gl_SPARC_asm.py', 91 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompiler.cpp | 32 bool RSCompiler::addInternalizeSymbolsPass(Script &pScript, llvm::PassManager &pPM) { 35 RSScript &script = static_cast<RSScript &>(pScript); local 36 const RSInfo *info = script.getInfo(); 90 bool RSCompiler::addExpandForEachPass(Script &pScript, llvm::PassManager &pPM) { 91 // Script passed to RSCompiler must be a RSScript. 92 RSScript &script = static_cast<RSScript &>(pScript); local 93 const RSInfo *info = script.getInfo(); 94 llvm::Module &module = script.getSource().getModule(); 106 if (script.getEmbedInfo()) 112 bool RSCompiler::beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
genk-timing.py | 7 """Used to generate a bash script which will invoke the toy and time it""" 175 """ Generate a random Kaleidoscope script based on the given parameters """ 180 script = KScriptGenerator(filename) 181 script.setCallWeighting(callWeighting) 182 script.writeComment("===========================================================================") 183 script.writeComment("Auto-generated script") 184 script.writeComment(" %d functions, %d elements per function, %d functions between execution" 186 script.writeComment(" call weighting = %f" % callWeighting) 187 script.writeComment("===========================================================================" [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
genk-timing.py | 7 """Used to generate a bash script which will invoke the toy and time it""" 180 """ Generate a random Kaleidoscope script based on the given parameters """ 185 script = KScriptGenerator(filename) 186 script.setCallWeighting(callWeighting) 187 script.writeComment("===========================================================================") 188 script.writeComment("Auto-generated script") 189 script.writeComment(" %d functions, %d elements per function, %d functions between execution" 191 script.writeComment(" call weighting = %f" % callWeighting) 192 script.writeComment("===========================================================================" [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
genk-timing.py | 7 """Used to generate a bash script which will invoke the toy and time it""" 175 """ Generate a random Kaleidoscope script based on the given parameters """ 180 script = KScriptGenerator(filename) 181 script.setCallWeighting(callWeighting) 182 script.writeComment("===========================================================================") 183 script.writeComment("Auto-generated script") 184 script.writeComment(" %d functions, %d elements per function, %d functions between execution" 186 script.writeComment(" call weighting = %f" % callWeighting) 187 script.writeComment("===========================================================================" [all...] |