HomeSort by relevance Sort by last modified time
    Searched defs:scripts (Results 26 - 42 of 42) sorted by null

12

  /external/chromium_org/third_party/icu/source/i18n/
uspoof.cpp 540 // Compute the set of scripts that every input character has a confusable in.
544 // If the number of such scripts is two or more, and the input consisted of
546 // (The two scripts will be the original script and the one that is confusable)
548 // If the number of such scripts >= one, and the original input contained characters from
563 ScriptSet scripts; local
564 This->wholeScriptCheck(nfdText, &scripts, *status);
565 int32_t confusableScriptCount = scripts.countMembers();
uspoof_impl.cpp 232 // Return the set of scripts, each of which can represent something that is
355 // Given a locale (a language), add all the characters from all of the scripts used with that language
359 UScriptCode scripts[30]; local
361 int32_t numScripts = uscript_getCode(locale, scripts, sizeof(scripts)/sizeof(UScriptCode), &status);
372 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status);
  /external/icu/icu4c/source/i18n/
uspoof.cpp 573 // Compute the set of scripts that every input character has a confusable in.
577 // If the number of such scripts is two or more, and the input consisted of
579 // (The two scripts will be the original script and the one that is confusable)
581 // If the number of such scripts >= one, and the original input contained characters from
596 ScriptSet scripts; local
597 This->wholeScriptCheck(nfdText, &scripts, *status);
598 int32_t confusableScriptCount = scripts.countMembers();
uspoof_impl.cpp 232 // Return the set of scripts, each of which can represent something that is
355 // Given a locale (a language), add all the characters from all of the scripts used with that language
359 UScriptCode scripts[30]; local
361 int32_t numScripts = uscript_getCode(locale, scripts, sizeof(scripts)/sizeof(UScriptCode), &status);
372 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status);
  /external/chromium_org/chrome/browser/extensions/
extension_prefs_unittest.cc 570 scoped_ptr<base::ListValue> scripts(new base::ListValue);
571 scripts->AppendString("test.js");
572 manifest.Set(manifest_keys::kBackgroundScripts, scripts.release());
604 const base::ListValue* scripts; variable
605 ASSERT_TRUE(manifest->GetList(manifest_keys::kBackgroundScripts, &scripts));
606 EXPECT_EQ(1u, scripts->GetSize());
extension_service_unittest.cc 1227 const extensions::UserScriptList& scripts = local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
itspoof.cpp 145 UnicodeString s("xyz"); // Many latin ranges are whole-script confusable with other scripts.
535 ScriptSet scripts; local
536 scripts.parseScripts(UnicodeString(test.fScripts), status);
537 TEST_ASSERT_MSG(scripts == *idInfo.getScripts(), testNumStr);
  /external/icu/icu4c/source/test/intltest/
itspoof.cpp 145 UnicodeString s("xyz"); // Many latin ranges are whole-script confusable with other scripts.
535 ScriptSet scripts; local
536 scripts.parseScripts(UnicodeString(test.fScripts), status);
537 TEST_ASSERT_MSG(scripts == *idInfo.getScripts(), testNumStr);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp 128 // Async scripts do not block the parser so they get the lowest priority and can be
456 // types of resources, like Images, Scripts, and CSS, can be loaded from
1423 unsigned scripts = 0; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cldrtest.c 792 USet *scripts[10]= {0}; local
887 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cldrtest.c 795 USet *scripts[10]= {0}; local
890 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp 550 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad); local
551 if (!scripts) {
552 scripts = JSONObject::create();
553 m_state->setObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad, scripts);
556 // scripts once we restored the scripts from the cookie during navigation.
559 } while (scripts->find(*identifier) != scripts->end());
560 scripts->setString(*identifier, source);
563 m_state->setObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad, scripts);
568 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp 315 } scripts[1]; member in struct:blink::OpenType::ScriptList
320 if (!isValidEnd(buffer, &scripts[count]))
323 if (scripts[i].scriptTag == tag)
324 return validateOffset<ScriptTable>(buffer, scripts[i].scriptOffset);
332 if (!count || !isValidEnd(buffer, &scripts[count]))
337 return validateOffset<ScriptTable>(buffer, scripts[0].scriptOffset);
361 const ScriptList* scripts = scriptList(buffer); local
362 if (!scripts)
364 return scripts->defaultLangSys(buffer);
  /external/chromium_org/ui/gfx/
render_text_harfbuzz.cc 34 // The maximum number of scripts a Unicode character can belong to. This value
36 // character to belong to more scripts.
338 // If the given scripts match, returns the one that isn't USCRIPT_COMMON or
352 // Unicode |codepoint|. Returns the number of written scripts.
353 int GetScriptExtensions(UChar32 codepoint, UScriptCode* scripts) {
358 scripts[0] = uscript_getScript(codepoint, &icu_error);
361 // Fill the rest of |scripts| with the extensions.
362 int count = uscript_getScriptExtensions(codepoint, scripts + 1,
374 UScriptCode scripts[kMaxScripts] = { USCRIPT_INVALID_CODE }; local
375 int count = GetScriptExtensions(codepoint, scripts);
407 UScriptCode scripts[kMaxScripts] = { USCRIPT_INVALID_CODE }; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp 4597 PassRefPtrWillBeRawPtr<HTMLCollection> Document::scripts() function in class:blink::Document
    [all...]
  /external/chromium_org/v8/src/
debug-debugger.js 38 // The different types of scripts matching enum ScriptType in objects.h.
520 var scripts = Debug.scripts();
523 for (var i in scripts) {
524 var script = scripts[i];
679 var scripts = this.scripts();
682 for (var i = 0; i < scripts.length; i++) {
683 if (script_id == scripts[i].id) {
684 break_point.actual_position = %SetScriptBreakPoint(scripts[i], position
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1869 milliseconds

12