HomeSort by relevance Sort by last modified time
    Searched defs:script (Results 276 - 300 of 471) sorted by null

<<111213141516171819

  /external/chromium_org/third_party/icu/source/common/
loclikely.cpp 117 * Create a tag string from the supplied parameters. The lang, script and region
121 * If any of the language, script or region parameters are empty, and the alternateTags
122 * parameter is not NULL, it will be parsed for potential language, script and region tags
138 * @param script The script tag to use.
139 * @param scriptLength The length of the script tag.
154 const char* script,
179 * script and region code without worrying about overrunning
244 script,
251 * Parse the alternateTags string for the script
849 char script[ULOC_SCRIPT_CAPACITY]; local
953 char script[ULOC_SCRIPT_CAPACITY]; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
gendata.cpp 139 UnicodeString script_attr = UNICODE_STRING_SIMPLE("script");
151 char *script = getCString(testCase->getAttribute(script_attr)); local
168 uscript_getCode(script, &scriptCode, 1, &status);
170 printf("Error: invalid script name: %s.\n", script);
182 fprintf(outputFile, " <test-case id=\"%s\" script=\"%s\" lang=\"%s\">\n", id, script, lang);
184 fprintf(outputFile, " <test-case id=\"%s\" script=\"%s\">\n", id, script);
286 freeCString(script);
    [all...]
xmlreader.cpp 155 UnicodeString script_attr = UNICODE_STRING_SIMPLE("script");
169 char *script = getCString(testCase->getAttribute(script_attr)); local
184 uscript_getCode(script, &scriptCode, 1, &status);
186 log_err("invalid script name: %s.\n", script);
250 freeCString(script);
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
LookupKey.java 55 * Script types. This is used for countries that do not use Latin script, but accept it for
56 * transcribing their addresses. For example, you can write a Japanese address in Latin script
66 * The script that uses Roman characters like ABC (as opposed to scripts like Cyrillic or
73 * Saudi Arabia, it's Arabic. Notice that for US, the local script is actually Latin script
74 * (The same goes for other countries that use Latin script). For these countries, we do not
75 * provide two set of data (Latin and local) since they use only Latin script. You have to
110 this.mScriptType = builder.script;
155 newKeyBuilder.script = mScriptType
284 private ScriptType script = ScriptType.LOCAL; field in class:LookupKey.Builder
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateMaker.cpp 77 const char* script; local
78 if (findKey(displayable, &script) == false)
80 return SkAnimatorScript::EvaluateString(*this, displayable, parent, script, newID);
SkMemberInfo.cpp 233 SkASSERT(sizeof("string") == sizeof("script"));
235 memcpy(&stringHeader[1], "script", sizeof("script") - 1);
240 if (strncmp(rawValue, "#script:", sizeof("#script:") - 1) != 0)
245 case SkType_MSec: // for the purposes of script, MSec is treated as a Scalar
251 const char* script = valueStr.c_str(); local
252 success = engine.evaluateScript(&script, &scriptValue);
278 goto writeStruct; // real structs have already been written by script
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py 260 script = ''
262 script = script + 'cd "%s"\n' % \
267 script = script + "\n".join(
289 script = script + 'exec ' + command_prefix + '%s\nexit 1\n' % \
294 'shellScript': script,
738 # Add custom shell script phases for "actions" sections.
740 # There's no need to write anything into the script to ensure that th
1153 script = 'exec ' + action_string_sh + '\\nexit 1\\n' variable
    [all...]
  /external/chromium_org/v8/samples/
lineprocessor.cc 43 * script. The script is specified with command line parameters.
50 * --main-cycle-in-cpp option. Script must declare a function named
52 * for processing every time. This is a sample script:
60 * --main-cycle-in-js option. Script gets run one time at all and gets
62 * and print converted lines to output itself. This a sample script:
86 bool RunCppCycle(v8::Handle<v8::Script> script,
135 printf("Script is not specified\n");
139 printf("Only one script may be specified\n")
166 v8::Handle<v8::Script> script; local
    [all...]
shell.cc 321 v8::Handle<v8::Script> script = v8::Script::Compile(source, &origin); local
322 if (script.IsEmpty()) {
328 v8::Handle<v8::Value> result = script->Run();
  /external/chromium_org/v8/src/
allocation-tracker.cc 274 if (shared->script()->IsScript()) {
275 Script* script = Script::cast(shared->script()); local
276 if (script->name()->IsName()) {
277 Name* name = Name::cast(script->name());
280 info->script_id = script->id()->value();
284 script,
308 Script* script, int start, FunctionInfo* info
    [all...]
cpu-profiler.cc 238 if (shared->script()->IsScript()) {
239 ASSERT(Script::cast(shared->script()));
240 Script* script = Script::cast(shared->script()); local
241 rec->entry->set_script_id(script->id()->value());
270 ASSERT(Script::cast(shared->script()));
271 Script* script = Script::cast(shared->script()); local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 250 // Regression 236. Calling InitLineEnds on a Script with undefined
258 Handle<Script> script = factory->NewScript(factory->empty_string()); local
259 script->set_source(CcTest::heap()->undefined_value());
260 CHECK_EQ(-1, Script::GetLineNumber(script, 0));
261 CHECK_EQ(-1, Script::GetLineNumber(script, 100));
262 CHECK_EQ(-1, Script::GetLineNumber(script, -1))
    [all...]
test-decls.cc 152 Local<Script> script = local
153 Script::Compile(String::NewFromUtf8(CcTest::isolate(), source));
155 CHECK(script.IsEmpty());
158 CHECK(!script.IsEmpty());
159 Local<Value> result = script->Run();
734 Local<Script> script = local
735 Script::Compile(String::NewFromUtf8(context_->GetIsolate(), source));
737 CHECK(script.IsEmpty())
    [all...]
test-lockers.cc 52 using ::v8::Script;
671 v8::Handle<Script> script = v8::Script::Compile(source); local
672 v8::Handle<Value> result = script->Run();
test-log.cc 311 // Script needs to have a name in order to trigger InitLineEnds execution.
314 v8::Handle<v8::Script> evil_script = CompileWithOrigin(source, origin);
472 v8::Handle<v8::Script> script = CompileWithOrigin(source_str, ""); local
473 if (script.IsEmpty()) {
478 v8::Handle<v8::Value> result = script->Run();
test-profile-generator.cc 638 v8::Handle<v8::Script> script_a = v8::Script::Compile(v8::String::NewFromUtf8(
641 v8::Handle<v8::Script> script_b =
642 v8::Script::Compile(v8::String::NewFromUtf8(env->GetIsolate(),
740 v8::Handle<v8::Script> script = local
741 v8::Script::Compile(v8::String::NewFromUtf8(env->GetIsolate(),
754 script->Run();
test-serialize.cc 346 v8::Local<v8::Script> script = v8::Script::Compile(source); local
347 CHECK_EQ(4, script->Run()->Int32Value());
364 v8::Local<v8::Script> script = v8::Script::Compile(source); local
365 CHECK_EQ(4, script->Run()->Int32Value());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FetchBaseTask.java 57 String script=getScript(key,properties.get(key).toString()); local
58 entries.put("fetch."+key,script);
141 String script="<project default=\"all.elements\">\n" + local
142 "<!--Ant script which will fetch pre-built plug-ins and features to a location where they\n" +
150 script=script.concat("\t\t<antcall target=\""+keys.nextElement()+"\" />\n");
152 script=script.concat("\t</target>");
155 script=script.concat("\n\n"+entries.get(keys.nextElement()))
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer.cc 44 a->script == b->script &&
55 (unsigned int) p->script ^
571 /* If script is set to INVALID, guess from buffer contents */
572 if (props.script == HB_SCRIPT_INVALID) {
574 hb_script_t script = unicode->script (info[i].codepoint); local
575 if (likely (script != HB_SCRIPT_COMMON &&
576 script != HB_SCRIPT_INHERITED &&
577 script != HB_SCRIPT_UNKNOWN))
    [all...]
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 28 unsigned char script; member in struct:__anon25483
199 return get_ucd_record(code)->script;
  /external/icu/icu4c/source/common/
brkeng.cpp 112 // Apply the entire script of the character.
113 int32_t script = u_getIntPropertyValue(c, UCHAR_SCRIPT); local
114 fHandled[breakType]->applyIntPropertyValue(UCHAR_SCRIPT, script, status);
252 // TODO: Have to get some characters with script=common handled
283 ICULanguageBreakFactory::loadDictionaryMatcherFor(UScriptCode script, int32_t /* brkType */) {
290 ures_getStringByKeyWithFallback(b, uscript_getShortName(script), &dictnlength, &status);
loclikely.cpp 117 * Create a tag string from the supplied parameters. The lang, script and region
121 * If any of the language, script or region parameters are empty, and the alternateTags
122 * parameter is not NULL, it will be parsed for potential language, script and region tags
138 * @param script The script tag to use.
139 * @param scriptLength The length of the script tag.
154 const char* script,
179 * script and region code without worrying about overrunning
244 script,
251 * Parse the alternateTags string for the script
856 char script[ULOC_SCRIPT_CAPACITY]; local
963 char script[ULOC_SCRIPT_CAPACITY]; local
    [all...]
  /external/icu/icu4c/source/test/letest/
gendata.cpp 180 UnicodeString script_attr = UNICODE_STRING_SIMPLE("script");
192 char *script = getCString(testCase->getAttribute(script_attr)); local
211 uscript_getCode(script, &scriptCode, 1, &status);
213 printf("Error: invalid script name: %s.\n", script);
225 fprintf(outputFile, " <test-case id=\"%s\" script=\"%s\" lang=\"%s\">\n", id, script, lang);
227 fprintf(outputFile, " <test-case id=\"%s\" script=\"%s\">\n", id, script);
246 printf(" Generating: %s, %s, %s, %s\n", id, script, lang, fontName)
    [all...]
xmlreader.cpp 155 UnicodeString script_attr = UNICODE_STRING_SIMPLE("script");
169 char *script = getCString(testCase->getAttribute(script_attr)); local
184 uscript_getCode(script, &scriptCode, 1, &status);
186 log_err("invalid script name: %s.\n", script);
250 freeCString(script);
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 155 UnicodeString script_attr = UNICODE_STRING_SIMPLE("script");
169 char *script = getCString(testCase->getAttribute(script_attr)); local
184 uscript_getCode(script, &scriptCode, 1, &status);
186 log_err("invalid script name: %s.\n", script);
250 freeCString(script);

Completed in 1410 milliseconds

<<111213141516171819