HomeSort by relevance Sort by last modified time
    Searched defs:script (Results 126 - 150 of 432) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openfst/src/script/
fst-class.cc 21 #include <fst/script/fst-class.h>
22 #include <fst/script/register.h>
29 namespace script { namespace in namespace:fst
144 } // namespace script
text-io.cc 17 #include <fst/script/text-io.h>
28 namespace script { namespace in namespace:fst
94 } // namespace script
  /external/v8/test/cctest/
test-func-name-inference.cc 43 using ::v8::internal::Script;
62 static void CheckFunctionName(v8::Handle<v8::Script> script,
65 // Get script source.
66 Handle<Object> obj = v8::Utils::OpenHandle(*script);
75 Handle<Script> i_script(Script::cast(shared_function->script()));
106 static v8::Handle<v8::Script> Compile(const char* src) {
107 return v8::Script::Compile(v8::String::New(src))
115 v8::Handle<v8::Script> script = Compile( local
127 v8::Handle<v8::Script> script = Compile( local
139 v8::Handle<v8::Script> script = Compile( local
153 v8::Handle<v8::Script> script = Compile( local
167 v8::Handle<v8::Script> script = Compile( local
183 v8::Handle<v8::Script> script = Compile( local
201 v8::Handle<v8::Script> script = Compile( local
219 v8::Handle<v8::Script> script = Compile( local
233 v8::Handle<v8::Script> script = Compile( local
249 v8::Handle<v8::Script> script = Compile( local
262 v8::Handle<v8::Script> script = Compile( local
277 v8::Handle<v8::Script> script = Compile( local
290 v8::Handle<v8::Script> script = Compile( local
306 v8::Handle<v8::Script> script = Compile( local
320 v8::Handle<v8::Script> script = Compile( local
336 v8::Handle<v8::Script> script = Compile( local
355 v8::Handle<v8::Script> script = Compile( local
370 v8::Handle<v8::Script> script = Compile( local
388 v8::Handle<v8::Script> script = Compile( local
    [all...]
  /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...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 112 ScriptC_yuv script = new ScriptC_yuv(mRS); local
113 script.invoke_makeRef(ay, au, av, aref);
126 ScriptC_yuv script = new ScriptC_yuv(mRS); local
150 script.invoke_makeRef(ay, au, av, aref);
156 script.set_mInput(ta);
157 script.forEach_cvt(aout);
169 ScriptC_yuv script = new ScriptC_yuv(mRS); local
195 script.invoke_makeRef(ay, au, av, aref);
201 script.set_mInput(ta);
202 script.forEach_cvt(aout)
    [all...]
  /bootable/recovery/updater/
updater.c 31 // Where in the package we expect to find the edify script to execute.
32 // (Note it's "updateR-script", not the older "update-script".)
33 #define SCRIPT_NAME "META-INF/com/google/android/updater-script"
66 // Extract the script from the package.
84 char* script = malloc(script_entry->uncompLen+1); local
85 if (!mzReadZipEntry(&za, script_entry, script, script_entry->uncompLen)) {
86 printf("failed to read script from package\n");
89 script[script_entry->uncompLen] = '\0';
98 // Parse the script
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_helper_browsertest.cc 63 // Add default expectations for a client redirection initiated by script,
65 // that the tab receives news of the redirect before the script returns.
83 // page's script. If |wait_for_response| is true, this method will not
87 std::string script = base::StringPrintf("runTestCase(%d);", local
93 host, L"", ASCIIToWide(script)));
95 script += "window.domAutomationController.setAutomationId(0);"
97 host->ExecuteJavascriptInWebFrame(ASCIIToUTF16(""), ASCIIToUTF16(script));
  /external/chromium_org/chrome/browser/extensions/
convert_user_script.cc 43 *error = ASCIIToUTF16("User script must be UTF8 encoded.");
47 UserScript script; local
49 &script)) {
50 *error = ASCIIToUTF16("Invalid script header.");
70 if (!script.name().empty() && !script.name_space().empty())
71 script_name = script.name_space() + "/" + script.name();
77 // its unique identity, and we need one of those. A user script's unique
86 // The script may not have a name field, but we need one for an extension. I
    [all...]
user_script_master_unittest.cc 36 // Test bringing up a master on a specific directory, putting a script
50 // Register for all user script notifications.
88 // Updated to the script shared memory when we get notified.
105 "// This is my awesome script\n"
108 "// @name foobar script\n"
121 UserScript script; local
123 text, &script));
124 ASSERT_EQ(3U, script.globs().size());
125 EXPECT_EQ("*mail.google.com*", script.globs()[0]);
126 EXPECT_EQ("*mail.yahoo.com*", script.globs()[1])
133 UserScript script; local
146 UserScript script; local
163 UserScript script; local
177 UserScript script; local
190 UserScript script; local
204 UserScript script; local
222 UserScript script; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptState.cpp 113 return ScriptState::forContext(frame->script().mainWorldContext());
118 WorkerScriptController* script = workerGlobalScope->script(); local
119 if (!script)
122 v8::HandleScope handleScope(script->isolate());
123 return ScriptState::forContext(script->context());
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.cpp 179 String WorkerScriptLoader::script() function in class:WebCore::WorkerScriptLoader
  /external/chromium_org/third_party/harfbuzz-ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
locid.h 83 * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
385 * Returns the locale's ISO-15924 abbreviation script code.
515 * Fills in "dispScript" with the name of this locale's script in a format suitable
516 * for user display in the default locale. For example, if the locale's script code
528 * script code is "LATN" and displayLocale's language code is "en", this function would set
531 * words, if the locale's script code is "LATN", passing
717 char script[ULOC_SCRIPT_CAPACITY]; member in class:Locale
758 return script;
  /external/chromium_org/v8/src/
messages.h 69 MessageLocation(Handle<Script> script,
72 : script_(script),
77 Handle<Script> script() const { return script_; } function in class:v8::internal::MessageLocation
82 Handle<Script> script_;
  /external/harfbuzz_ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /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/icu4c/common/unicode/
locid.h 85 * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
388 * Returns the locale's ISO-15924 abbreviation script code.
518 * Fills in "dispScript" with the name of this locale's script in a format suitable
519 * for user display in the default locale. For example, if the locale's script code
531 * script code is "LATN" and displayLocale's language code is "en", this function would set
534 * words, if the locale's script code is "LATN", passing
723 char script[ULOC_SCRIPT_CAPACITY]; member in class:Locale
764 return script;
  /external/icu4c/samples/layout/
ScriptCompositeFontInstance.cpp 39 le_int32 script = LE_GET_SUB_FONT(glyph); local
40 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
53 le_int32 script = LE_GET_SUB_FONT(glyph); local
54 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
74 const LEFontInstance *result = fFontMap->getScriptFont(script, success);
86 // look in all the fonts in some order, script code order being the most obvious...
91 le_int32 script = uscript_getScript(ch, &error) local
    [all...]
  /external/openfst/src/include/fst/script/
arg-packs.h 36 namespace script { namespace in namespace:fst
237 } // namespace script
compile.h 20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/compile-impl.h>
25 namespace script { namespace in namespace:fst
89 } // namespace script
prune.h 23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
30 namespace script { namespace in namespace:fst
48 // converts a script::PruneOptions into a fst::PruneOptions.
148 } // namespace script
script-impl.h 103 #include <fst/script/fst-class.h>
105 #include <fst/script/arg-packs.h>
110 namespace script { namespace in namespace:fst
172 static fst::script::Operation<ArgPack>::Registerer \
203 } // namespace script
  /external/v8/src/
messages.h 69 MessageLocation(Handle<Script> script,
72 : script_(script),
77 Handle<Script> script() const { return script_; } function in class:v8::internal::MessageLocation
82 Handle<Script> script_;
  /bootable/recovery/edify/
expr.h 37 // The source of the original script. Must be NULL-terminated,
40 char* script; member in struct:__anon782
  /external/chromium_org/chrome/browser/chromeos/extensions/
virtual_keyboard_browsertest.cc 128 std::string script = "!!chrome.virtualKeyboardPrivate"; local
131 "window.domAutomationController.send(" + script + ");",
158 std::string script; local
159 ASSERT_TRUE(base::ReadFileToString(path, &script));
160 EXPECT_TRUE(content::ExecuteScript(keyboard_rvh, script));

Completed in 513 milliseconds

1 2 3 4 56 7 8 91011>>