HomeSort by relevance Sort by last modified time
    Searched refs:cl (Results 51 - 75 of 724) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/core/nexus/
main.cpp 33 CommandListener *cl = new CommandListener(); local
41 nm->setBroadcaster((SocketListener *) cl);
54 if (cl->startListener()) {
  /external/qemu/android/
hw-sensors.c 183 _hwSensorClient_free( HwSensorClient* cl )
186 if (cl->sensors) {
187 HwSensorClient** pnode = &cl->sensors->clients;
192 if (node == cl) {
193 *pnode = cl->next;
198 cl->next = NULL;
199 cl->sensors = NULL;
203 if (cl->client) {
204 qemud_client_close(cl->client);
205 cl->client = NULL
223 HwSensorClient* cl; local
250 HwSensorClient* cl = opaque; local
258 HwSensorClient* cl = opaque; local
285 HwSensorClient* cl = opaque; local
471 HwSensorClient* cl = _hwSensorClient_new(sensors); local
    [all...]
  /external/clang/test/Analysis/
casts.c 43 unsigned char ch, cl, *p; local
47 cl = *p++;
48 if(!cl)
49 cl = 'a';
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolFactory.java 30 ScopedClassPool create(ClassLoader cl, ClassPool src,
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 30 static cl::opt<unsigned>
31 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
32 cl::desc("The cut-off point for automatic loop unrolling"));
34 static cl::opt<unsigned>
35 UnrollCount("unroll-count", cl::init(0), cl::Hidden,
36 cl::desc("Use this unroll count for all loops, for testing purposes"));
38 static cl::opt<bool>
39 UnrollAllowPartial("unroll-allow-partial", cl::init(false), cl::Hidden
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocketFactory.java 49 ClassLoader cl = Thread.currentThread().getContextClassLoader(); local
50 if (cl == null) {
51 cl = ClassLoader.getSystemClassLoader();
54 final Class<?> ssfc = Class.forName(defaultName, true, cl);
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 44 static cl::opt<std::string>
45 InputFilename(cl::Positional, cl::desc("<input brainf>"));
47 static cl::opt<std::string>
48 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
50 static cl::opt<bool>
51 ArrayBoundsChecking("abc", cl::desc("Enable array bounds checking"));
53 static cl::opt<bool>
54 JIT("jit", cl::desc("Run program Just-In-Time"))
    [all...]
  /external/llvm/tools/opt/
opt.cpp 50 static cl::list<const PassInfo*, bool, PassNameParser>
51 PassList(cl::desc("Optimizations available:"));
55 static cl::opt<std::string>
56 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
57 cl::init("-"), cl::value_desc("filename"));
59 static cl::opt<std::string>
60 OutputFilename("o", cl::desc("Override output filename"),
61 cl::value_desc("filename"))
    [all...]
  /bionic/libc/arch-x86/string/
index.S 15 movb 8(%esp),%cl
19 cmpb %dl,%cl /* found char??? */
  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 34 static cl::list<std::string>
35 InputFilenames(cl::Positional, cl::desc("<input object files>"),
36 cl::ZeroOrMore);
38 static cl::opt<unsigned long long>
39 Address("address", cl::init(-1ULL),
40 cl::desc("Print line information for a given address"));
107 cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n");
  /external/quake/quake/src/QW/server/
sv_main.c 158 client_t *cl; local
166 for (i=0, cl = svs.clients ; i<MAX_CLIENTS ; i++, cl++)
167 if (cl->state >= cs_spawned)
168 Netchan_Transmit (&cl->netchan, net_message.cursize
242 int SV_CalcPing (client_t *cl)
251 for (frame = cl->frames, i=0 ; i<UPDATE_BACKUP ; i++, frame++)
314 void SV_FullClientUpdateToClient (client_t *client, client_t *cl)
316 ClientReliableCheckBlock(cl, 24 + strlen(client->userinfo));
317 if (cl->num_backbuf)
344 client_t *cl; local
508 client_t *cl, *newcl; local
1069 client_t *cl; local
1145 client_t *cl; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 59 static Class findProviderClass(String className, ClassLoader cl,
78 if (cl == null) {
84 // (cl == null) iff current ClassLoader == null
91 providerClass = cl.loadClass(className);
98 } else if (cl != current) {
99 cl = current;
100 providerClass = cl.loadClass(className);
  /external/chromium/chrome/browser/prefs/
command_line_pref_store_unittest.cc 21 explicit TestCommandLinePrefStore(CommandLine* cl)
22 : CommandLinePrefStore(cl) {}
46 CommandLine cl(CommandLine::NO_PROGRAM);
47 cl.AppendSwitchASCII(switches::kLang, "hi-MOM");
48 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl);
60 CommandLine cl(CommandLine::NO_PROGRAM);
61 cl.AppendSwitch(switches::kNoProxyServer);
63 new TestCommandLinePrefStore(&cl);
70 CommandLine cl(CommandLine::NO_PROGRAM);
71 cl.AppendSwitch(unknown_string)
    [all...]
  /external/llvm/include/llvm/Support/
PassNameParser.h 40 public cl::parser<const PassInfo*> {
41 cl::Option *Opt;
46 void initialize(cl::Option &O) {
48 cl::parser<const PassInfo*>::initialize(O);
81 virtual void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const {
84 cl::parser<const PassInfo*>::printOptionInfo(O, GlobalWidth);
119 /// static cl::list<
123 /// PassList(cl::desc("Passes available:"));
  /external/quake/quake/src/QW/client/
block8.h 3 movb (%esi,%ebx,),%cl
12 movb 0x12345678(%ecx),%cl
14 movb %cl,1(%edi) variable
18 movb (%esi,%ebx,),%cl
27 movb 0x12345678(%ecx),%cl
29 movb %cl,1(%edi) variable
33 movb (%esi,%ebx,),%cl
42 movb 0x12345678(%ecx),%cl
44 movb %cl,1(%edi) variable
48 movb (%esi,%ebx,),%cl
59 movb %cl,1(%edi) variable
75 movb %cl,1(%edi) variable
90 movb %cl,1(%edi) variable
106 movb %cl,1(%edi) variable
122 movb %cl,1(%edi) variable
    [all...]
cl_parse.c 125 frame = &cl.frames[i&UPDATE_MASK];
218 ; cl.model_name[cls.downloadnumber][0]
221 s = cl.model_name[cls.downloadnumber];
230 if (!cl.model_name[i][0])
233 cl.model_precache[i] = Mod_ForName (cl.model_name[i], false);
235 if (!cl.model_precache[i])
238 , cl.model_name[i]);
247 cl.worldmodel = cl.model_precache[1];
    [all...]
  /external/quake/quake/src/WinQuake/
block8.h 22 movb (%esi,%ebx,),%cl
31 movb 0x12345678(%ecx),%cl
33 movb %cl,1(%edi) variable
37 movb (%esi,%ebx,),%cl
46 movb 0x12345678(%ecx),%cl
48 movb %cl,1(%edi) variable
52 movb (%esi,%ebx,),%cl
61 movb 0x12345678(%ecx),%cl
63 movb %cl,1(%edi) variable
67 movb (%esi,%ebx,),%cl
78 movb %cl,1(%edi) variable
94 movb %cl,1(%edi) variable
109 movb %cl,1(%edi) variable
125 movb %cl,1(%edi) variable
141 movb %cl,1(%edi) variable
    [all...]
  /external/fsck_msdos/
fat.c 138 checkclnum(struct bootblock *boot, int fat, cl_t cl, cl_t *next)
153 cl, fat,
211 cl_t cl; local
286 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
289 fat[cl].next = p[0] + (p[1] << 8)
291 fat[cl].next &= boot->ClustMask;
292 ret |= checkclnum(boot, no, cl, &fat[cl].next);
293 cl++
410 cl_t cl; local
556 cl_t cl; local
    [all...]
  /external/doclava/src/com/google/doclava/
Hierarchy.java 29 for (ClassInfo cl : classes) {
30 String name = cl.qualifiedName();
38 ClassInfo superclass = cl.superclass();
90 private static boolean exists(ClassInfo cl) {
91 return cl != null && !cl.isHidden() && cl.isIncluded();
101 ClassInfo cl = Converter.obtainClass(name); local
103 hdf.setValue("class.label", cl.name());
104 hdf.setValue("class.qualified", cl.qualifiedName())
    [all...]
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 36 static cl::opt<std::string>
37 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
39 static cl::opt<std::string>
40 OutputFilename("o", cl::desc("Override output filename"),
41 cl::value_desc("filename"));
43 static cl::opt<bool>
44 Force("f", cl::desc("Enable binary output on terminals"));
46 static cl::opt<bool
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 55 * @param cl
58 * if {@code name} or {@code cl} is {@code null}.
60 public ObjectStreamField(String name, Class<?> cl) {
61 if (name == null || cl == null) {
65 this.type = new WeakReference<Class<?>>(cl);
74 * @param cl
80 * if {@code name} or {@code cl} is {@code null}.
83 public ObjectStreamField(String name, Class<?> cl, boolean unshared) {
84 if (name == null || cl == null) {
88 this.type = (cl.getClassLoader() == null) ? cl : new WeakReference<Class<?>>(cl)
176 Class<?> cl = getTypeInternal(); local
307 Class<?> cl = Class.forName(className, false, loader); local
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 43 for (ClassInfo cl : mAllClasses.values()) {
44 ArrayList<String> ifaces = mClassToInterface.get(cl);
49 cl.addInterface(mAllClasses.get(iface));
98 for (ClassInfo cl : pInfo.allClasses().values()) {
99 mAllClasses.put(cl.qualifiedName(), cl); local
104 for (ClassInfo cl : mAllClasses.values()) {
106 if (!cl.qualifiedName().equals("java.lang.Object")) {
107 String scName = mClassToSuper.get(cl);
116 cl.setSuperClass(superclass)
    [all...]
  /frameworks/base/tools/aidl/
Type.h 49 Variable* parcel, Variable** cl);
51 Variable* parcel, Variable** cl);
58 Variable* parcel, Variable** cl);
60 Variable* parcel, Variable** cl);
92 Variable* parcel, Variable** cl);
99 Variable* parcel, Variable** cl);
101 Variable* parcel, Variable** cl);
119 Variable* parcel, Variable** cl);
126 Variable* parcel, Variable** cl);
128 Variable* parcel, Variable** cl);
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 47 Object getValue(ClassLoader cl, ClassPool cp, Method m)
50 return AnnotationImpl.make(cl, getType(cl), cp, value);
53 Class getType(ClassLoader cl) throws ClassNotFoundException {
57 return loadClass(cl, value.getTypeName());
  /external/llvm/tools/llvm-size/
llvm-size.cpp 35 static cl::opt<OutputFormatTy>
37 cl::desc("Specify output format"),
38 cl::values(clEnumVal(sysv, "System V format"),
41 cl::init(berkeley));
43 static cl::opt<OutputFormatTy>
44 OutputFormatShort(cl::desc("Specify output format"),
45 cl::values(clEnumValN(sysv, "A", "System V format"),
48 cl::init(berkeley));
51 static cl::opt<unsigned int>
53 cl::desc("Print size in radix. Only 8, 10, and 16 are valid")
    [all...]

Completed in 596 milliseconds

1 23 4 5 6 7 8 91011>>