Searched refs:cls (Results 1 - 25 of 263) sorted by relevance

1234567891011

/external/webkit/Source/WebKit/win/
H A DForEachCoClass.cpp39 LPCOLESTR progIDForClass(WebKitClass cls) argument
41 ASSERT(cls < WebKitClassSentinel);
42 return s_progIDs[cls];
/external/quake/quake/src/WinQuake/
H A Dcl_demo.cpp47 if (!cls.demoplayback)
50 fclose (cls.demofile);
51 cls.demoplayback = false;
52 cls.demofile = NULL;
53 cls.state = ca_disconnected;
55 if (cls.timedemo)
73 fwrite (&len, 4, 1, cls.demofile);
77 fwrite (&f, 4, 1, cls.demofile);
79 fwrite (net_message.data, net_message.cursize, 1, cls.demofile);
80 fflush (cls
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/config/
H A Dports.py42 def script_path(cls, script_name):
46 def script_shell_command(cls, script_name):
47 script_path = cls.script_path(script_name)
81 def name(cls):
85 def flag(cls):
89 def update_webkit_command(cls):
90 return cls.script_shell_command("update-webkit")
93 def check_webkit_style_command(cls):
94 return cls.script_shell_command("check-webkit-style")
97 def prepare_changelog_command(cls)
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_literal_info.java9 package com.vladium.jcd.cls.constant;
H A DCONSTANT_Class_info.java9 package com.vladium.jcd.cls.constant;
13 import com.vladium.jcd.cls.ClassDef;
50 * Returns the JVM class name within the constant pool context of 'cls'
53 * @param cls class that contains this constant
56 public String getName (final ClassDef cls) argument
58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreObjCExtras.h35 void WebCoreObjCFinalizeOnMainThread(Class cls);
39 bool WebCoreObjCScheduleDeallocateOnMainThread(Class cls, id object);
H A DWebCoreObjCExtras.mm44 void WebCoreObjCFinalizeOnMainThread(Class cls)
49 objc_finalizeOnMainThread(cls);
51 UNUSED_PARAM(cls);
76 bool WebCoreObjCScheduleDeallocateOnMainThread(Class cls, id object)
78 ASSERT([object isKindOfClass:cls]);
83 ClassAndIdPair* pair = new ClassAndIdPair(cls, object);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DAbstractClassDefVisitor.java9 package com.vladium.jcd.cls;
22 public Object visit (final ClassDef cls, final Object ctx) argument
24 visit (cls.getConstants (), ctx);
25 visit (cls.getInterfaces (), ctx);
26 visit (cls.getFields (), ctx);
27 visit (cls.getMethods (), ctx);
28 visit (cls.getAttributes (), ctx);
H A DIClassDefConstants.java9 package com.vladium.jcd.cls;
H A DIClassDefVisitor.java9 package com.vladium.jcd.cls;
19 Object visit (ClassDef cls, Object ctx); argument
H A DIFieldCollection.java9 package com.vladium.jcd.cls;
45 * @param cls class definition providing the constant pool against which to
50 * @throws IllegalArgumentException if 'cls' is null
52 int [] get (ClassDef cls, String name); argument
H A DIMethodCollection.java9 package com.vladium.jcd.cls;
43 * @param cls class definition providing the constant pool against which to
48 * @throws IllegalArgumentException if 'cls' is null
50 int [] get (ClassDef cls, String name); argument
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A D__init__.py78 >>> dumps(2 + 1j, cls=ComplexEncoder)
109 allow_nan=True, cls=None, indent=None, separators=None,
146 the ``cls`` kwarg.
151 cls is None and indent is None and separators is None and
155 if cls is None:
156 cls = JSONEncoder
157 iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
167 allow_nan=True, cls=None, indent=None, separators=None,
202 the ``cls`` kwarg.
207 cls i
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DClassResourceLoader.java53 private final Class<?> cls; field in class:ClassResourceLoader
56 public ClassResourceLoader(Class<?> cls) { argument
57 this.cls = cls;
58 this.basePath = "/" + cls.getPackage().getName().replace('.', '/');
63 * relative to the .class file of {@code cls}.
65 public ClassResourceLoader(Class<?> cls, String basePath) { argument
66 this.cls = cls;
72 InputStream stream = cls
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DAttributeElementFactory.java9 package com.vladium.jcd.cls.attribute;
H A DSourceFileAttribute_info.java9 package com.vladium.jcd.cls.attribute;
13 import com.vladium.jcd.cls.ClassDef;
14 import com.vladium.jcd.cls.constant.CONSTANT_Utf8_info;
43 public CONSTANT_Utf8_info getSourceFile (final ClassDef cls) argument
45 return (CONSTANT_Utf8_info) cls.getConstants ().get (m_sourcefile_index);
/external/quake/quake/src/QW/client/
H A Dcl_demo.c47 if (!cls.demoplayback)
50 fclose (cls.demofile);
51 cls.demofile = NULL;
52 cls.state = ca_disconnected;
53 cls.demoplayback = 0;
55 if (cls.timedemo)
80 fwrite (&fl, sizeof(fl), 1, cls.demofile);
83 fwrite (&c, sizeof(c), 1, cls.demofile);
94 fwrite(&cmd, sizeof(cmd), 1, cls.demofile);
99 fwrite (&fl, 4, 1, cls
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
H A DP.java33 private String findProp(Class cls, String key) { argument
36 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
40 if (ret == null && !cls.equals(Object.class) && !cls.isPrimitive()) {
41 ret = findProp(cls.getSuperclass(), key);
/external/webkit/Tools/TestResultServer/model/
H A Djsonresults.py54 def _strip_prefix_suffix(cls, data):
71 def _generate_file_data(cls, json, sort_keys=False):
87 def _load_json(cls, file_data):
98 json_results_str = cls._strip_prefix_suffix(file_data)
111 def _merge_json(cls, aggregated_json, incremental_json, num_runs):
126 if not cls._merge_non_test_data(aggregated_json, incremental_json, num_runs):
133 cls._merge_tests(aggregated_tests, incremental_tests, num_runs)
138 def _merge_non_test_data(cls, aggregated_json, incremental_json, num_runs):
180 cls._merge_one_build(aggregated_json, incremental_json, index, num_runs)
185 def _merge_one_build(cls, aggregated_jso
[all...]
H A Ddashboardfile.py46 def get_files(cls, name, limit=1):
53 def add_file(cls, name, data):
64 def grab_file_from_svn(cls, name):
85 def update_file(cls, name):
86 data = cls.grab_file_from_svn(name)
92 files = cls.get_files(name)
95 if cls.add_file(name, data):
110 def delete_file(cls, name):
111 files = cls.get_files(name)
/external/protobuf/python/google/protobuf/
H A Dservice_reflection.py64 def __init__(cls, name, bases, dictionary):
81 service_builder.BuildService(cls)
94 def __init__(cls, name, bases, dictionary):
104 super(GeneratedServiceStubType, cls).__init__(name, bases, dictionary)
111 service_stub_builder.BuildServiceStub(cls)
133 def BuildService(self, cls):
137 cls: The class that will be constructed.
147 self.cls = cls
148 cls
[all...]
H A Dreflection.py101 def __new__(cls, name, bases, dictionary):
125 superclass = super(GeneratedProtocolMessageType, cls)
126 return superclass.__new__(cls, name, bases, dictionary)
128 def __init__(cls, name, bases, dictionary):
147 cls._decoders_by_tag = {}
148 cls._extensions_by_name = {}
149 cls._extensions_by_number = {}
152 cls._decoders_by_tag[decoder.MESSAGE_SET_ITEM_TAG] = (
153 decoder.MessageSetItemDecoder(cls._extensions_by_number))
162 setattr(descriptor, concrete_class_attr_name, cls)
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults.py87 def _failures_from_row(cls, row, table_title):
88 if table_title == cls.fail_key:
89 return cls._failures_from_fail_row(row)
90 if table_title == cls.crash_key:
92 if table_title == cls.webprocess_crash_key:
94 if table_title == cls.timeout_key:
96 if table_title == cls.missing_key:
101 def _test_result_from_row(cls, row, table_title):
103 failures = cls._failures_from_row(row, table_title)
110 def _parse_results_table(cls, tabl
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dmetastep.py49 def options(cls):
50 return cls._collect_options_from_steps(cls.substeps)
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DShellBrew.h42 static inline PassOwnPtr<T> createInstance(AEECLSID cls) argument
47 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));
54 static inline RefPtr<T> createRefPtrInstance(AEECLSID cls) argument
59 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));

Completed in 429 milliseconds

1234567891011