HomeSort by relevance Sort by last modified time
    Searched refs:cls (Results 1 - 25 of 498) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/win/
ForEachCoClass.cpp 39 LPCOLESTR progIDForClass(WebKitClass cls)
41 ASSERT(cls < WebKitClassSentinel);
42 return s_progIDs[cls];
  /external/quake/quake/src/WinQuake/
cl_demo.cpp 47 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.demofile)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_literal_info.java 9 package com.vladium.jcd.cls.constant;
CONSTANT_Class_info.java 9 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)
58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
  /external/webkit/Source/WebCore/platform/mac/
WebCoreObjCExtras.h 35 void WebCoreObjCFinalizeOnMainThread(Class cls);
39 bool WebCoreObjCScheduleDeallocateOnMainThread(Class cls, id object);
WebCoreObjCExtras.mm 44 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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowComponentName.java 21 private String cls; field in class:ShadowComponentName
23 public void __constructor__(String pkg, String cls) {
25 if (cls == null) throw new NullPointerException("class name is null");
27 this.cls = cls;
30 public void __constructor__(Context pkg, String cls) {
31 if (cls == null) throw new NullPointerException("class name is null");
33 this.cls = cls;
36 public void __constructor__(Context pkg, Class<?> cls) {
57 String cls = in.readString(); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/config/
ports.py 42 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...]
  /frameworks/support/v4/java/android/support/v4/util/
DebugUtils.java 27 public static void buildShortClassTag(Object cls, StringBuilder out) {
28 if (cls == null) {
31 String simpleName = cls.getClass().getSimpleName();
33 simpleName = cls.getClass().getName();
41 out.append(Integer.toHexString(System.identityHashCode(cls)));
  /external/emma/core/java12/com/vladium/jcd/cls/
AbstractClassDefVisitor.java 9 package com.vladium.jcd.cls;
22 public Object visit (final ClassDef cls, final Object ctx)
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);
IClassDefConstants.java 9 package com.vladium.jcd.cls;
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassResourceLoader.java 53 private final Class<?> cls; field in class:ClassResourceLoader
56 public ClassResourceLoader(Class<?> cls) {
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) {
66 this.cls = cls;
72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name)
    [all...]
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 33 * @param cls Class object of the class that handles the menu ite,.
37 public static int getMenuIdentifier(Class cls, String identifier) {
40 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
AttributeElementFactory.java 9 package com.vladium.jcd.cls.attribute;
SourceFileAttribute_info.java 9 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)
45 return (CONSTANT_Utf8_info) cls.getConstants ().get (m_sourcefile_index);
  /external/quake/quake/src/QW/client/
cl_demo.c 47 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.demofile)
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 38 def get_contact_info(cls, username):
40 query = cls.gql('WHERE handle = :1', username)
45 def get_contact_last_updated(cls, username):
47 query = cls.gql('WHERE handle = :1', username)
52 def get_contact_id(cls, username):
54 query = cls.gql('WHERE handle = :1', username)
59 def get_contact_status(cls, username):
61 query = cls.gql('WHERE handle = :1', username)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
P.java 33 private String findProp(Class cls, String key) {
36 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
40 if (ret == null && !cls.equals(Object.class) && !cls.isPrimitive()) {
41 ret = findProp(cls.getSuperclass(), key);
  /libcore/luni/src/test/java/tests/api/java/util/support/
P.java 16 private String findProp(Class cls, String key) {
19 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
23 if (ret == null && !cls.equals(Object.class) && !cls.isPrimitive()) {
24 ret = findProp(cls.getSuperclass(), key);
  /external/webkit/Tools/TestResultServer/model/
jsonresults.py 54 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_json, incremental_json
    [all...]
  /external/protobuf/python/google/protobuf/
service_reflection.py 64 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.CallMethod = _WrapCallMetho
    [all...]
reflection.py 101 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/
layouttestresults.py 87 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, table)
    [all...]
  /bionic/libc/kernel/common/linux/
transport_class.h 36 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
42 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /development/ndk/platforms/android-3/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }

Completed in 867 milliseconds

1 2 3 4 5 6 7 8 91011>>