HomeSort by relevance Sort by last modified time
    Searched defs:cl (Results 151 - 175 of 409) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libvncserver/x11vnc/
unixpw.c 2059 rfbClientPtr cl; local
    [all...]
connections.c 89 rfbBool password_check_chat_helper(rfbClientPtr cl, const char* response, int len);
122 rfbClientPtr cl; local
130 while( (cl = rfbClientIteratorNext(iter)) ) {
131 if (cl->state != RFB_NORMAL) {
144 rfbClientPtr cl; local
153 while( (cl = rfbClientIteratorNext(iter)) ) {
154 client_set_net(cl);
171 while( (cl = rfbClientIteratorNext(iter)) ) {
172 ClientData *cd = (ClientData *) cl->clientData;
183 p = tmp_host = strdup(cl->host)
232 rfbClientPtr cl; local
251 rfbClientPtr cl; local
267 rfbClientPtr cl, *cl_list; local
1734 rfbClientPtr cl; local
1845 rfbClientPtr cl; local
2627 rfbClientPtr cl; local
3807 rfbClientPtr cl; local
4318 rfbClientPtr cl; local
    [all...]
cursor.c 1659 rfbClientPtr cl; local
1692 rfbClientPtr cl; local
1728 rfbClientPtr cl; local
1774 rfbClientPtr cl; local
1792 rfbClientPtr cl; local
1810 rfbClientPtr cl; local
1833 rfbClientPtr cl; local
    [all...]
keyboard.c 2456 rfbClientPtr cl; local
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 36 /// cl Namespace - This namespace contains all of the command line option
39 namespace cl { namespace in namespace:llvm
144 CommaSeparated = 0x01, // Should this cl::list split between commas?
145 PositionalEatsArgs = 0x02, // Should this positional cl::list eat -args?
146 Sink = 0x04 // Should this cl::list eat all unknown options?
458 struct OptionValue<cl::boolOrDefault> final
459 : OptionValueCopy<cl::boolOrDefault> {
460 typedef cl::boolOrDefault WrapperType;
464 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); }
465 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 1015 ContentLength cl = (ContentLength) nextHeader.clone(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 449 ClassLoader cl = null; local
451 cl = new PathClassLoader(systemServerClasspath, ClassLoader.getSystemClassLoader());
452 Thread.currentThread().setContextClassLoader(cl);
458 RuntimeInit.zygoteInit(parsedArgs.targetSdkVersion, parsedArgs.remainingArgs, cl);
  /frameworks/base/rs/java/android/renderscript/
ScriptGroup.java 549 final ConnectLine cl = target.mOutputs.get(ct); local
550 if (cl.mToK != null) {
551 Node tn = findNode(cl.mToK.mScript);
557 if (cl.mToF != null) {
558 Node tn = findNode(cl.mToF.mScript);
583 final ConnectLine cl = n.mOutputs.get(ct); local
584 if (cl.mToK != null) {
585 Node tn = findNode(cl.mToK.mScript);
588 if (cl.mToF != null) {
589 Node tn = findNode(cl.mToF.mScript)
690 ConnectLine cl = new ConnectLine(t, from, to); local
725 ConnectLine cl = new ConnectLine(t, from, to); local
797 ConnectLine cl = mLines.get(ct); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest.java 792 Class cl = new Object[0].getClass(); local
793 assertTrue("int[] not resolved", result.field1.getClass() == cl);
816 Class cl = new char[0].getClass(); local
817 assertTrue("int[] not resolved", result.field1.getClass() == cl);
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 1067 ClassLoader cl = provider.getClass().getClassLoader(); local
    [all...]
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 275 ClassLoader cl = ResourceBundle.class.getClassLoader(); local
276 if (cl == null) {
277 cl = ClassLoader.getSystemClassLoader();
279 return cl;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java 342 CellLayout cl = (CellLayout) getChildAt(numCustomPages()); local
343 Rect r = estimateItemPosition(cl, itemInfo, 0, 0, itemInfo.spanX, itemInfo.spanY);
358 public Rect estimateItemPosition(CellLayout cl, ItemInfo pendingInfo,
361 cl.cellToRect(hCell, vCell, hSpan, vSpan, r);
463 CellLayout cl = ((CellLayout) child); local
464 cl.setOnInterceptTouchListener(this);
465 cl.setClickable(true);
466 cl.setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
471 final CellLayout cl = (CellLayout) child; local
474 cl.getShortcutsAndWidgets().getAlpha() > 0 |
651 CellLayout cl = (CellLayout) mDragSourceInternal.getParent(); local
754 final CellLayout cl = mWorkspaceScreens.get(EXTRA_EMPTY_SCREEN_ID); local
801 CellLayout cl = mWorkspaceScreens.get(EXTRA_EMPTY_SCREEN_ID); local
866 CellLayout cl = mWorkspaceScreens.valueAt(i); local
878 CellLayout cl = mWorkspaceScreens.get(id); local
1085 CellLayout cl = (CellLayout) getChildAt(i); local
1785 final CellLayout cl = (CellLayout) getChildAt(i); local
1826 CellLayout cl = (CellLayout) getChildAt(i); local
1939 CellLayout cl = ((CellLayout) getChildAt(i)); local
    [all...]
WorkspaceStateTransitionAnimation.java 314 final CellLayout cl = (CellLayout) mWorkspace.getChildAt(i); local
316 float initialAlpha = cl.getShortcutsAndWidgets().getAlpha();
335 cl.setShortcutAndWidgetAlpha(initialAlpha);
342 mOldBackgroundAlphas[i] = cl.getBackgroundAlpha();
345 cl.setBackgroundAlpha(finalBackgroundAlpha);
346 cl.setShortcutAndWidgetAlpha(finalAlpha);
363 final CellLayout cl = (CellLayout) mWorkspace.getChildAt(i); local
364 float currentAlpha = cl.getShortcutsAndWidgets().getAlpha();
366 cl.setBackgroundAlpha(mNewBackgroundAlphas[i]);
367 cl.setShortcutAndWidgetAlpha(mNewAlphas[i])
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
InstrumentationTest.java 340 ClassLoader cl = getClass().getClassLoader(); local
342 Application app = mInstrumentation.newApplication(cl, className, mContext);
381 ClassLoader cl = getClass().getClassLoader(); local
382 Activity activity = mInstrumentation.newActivity(cl, InstrumentationTestActivity.class
  /external/icu/icu4c/source/test/cintltst/
cucdtst.c 821 int32_t cl, i; local
825 for(cl=0; cl<12; ++cl) {
828 if(posixClasses[cl].fn(posixData[i].c)!=expect) {
830 posixClasses[cl].name, posixData[i].c, expect ? "FALSE" : "TRUE");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUResourceBundleTest.java 739 ClassLoader cl = BreakIterator.class.getClassLoader(); local
740 ICUResourceBundle.getFunctionalEquivalent(ICUResourceBundle.ICU_BRKITR_BASE_NAME, cl, "calendar",
748 private void getFunctionalEquivalentTestCases(String path, ClassLoader cl, String resName, String keyword,
763 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate);
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 290 * @param cl
293 public static boolean isProxyClass(Class cl)
296 return (ProxyObject.class.isAssignableFrom(cl));
419 ClassLoader cl = getClassLoader(); local
422 createClass2(cl);
424 createClass3(cl);
464 private void createClass2(ClassLoader cl) {
472 HashMap cacheForTheLoader = (HashMap)proxyCache.get(cl);
476 proxyCache.put(cl, cacheForTheLoader);
486 createClass3(cl);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebAppContext.java 256 ClassLoader cl = getClassLoader(); local
257 if (cl!=null && cl instanceof WebAppClassLoader && servletContextName!=null)
258 ((WebAppClassLoader)cl).setName(servletContextName);
    [all...]
  /external/libvncserver/libvncserver/
rfbserver.c 105 static void rfbProcessClientProtocolVersion(rfbClientPtr cl);
106 static void rfbProcessClientNormalMessage(rfbClientPtr cl);
107 static void rfbProcessClientInitMessage(rfbClientPtr cl);
110 void rfbIncrClientRef(rfbClientPtr cl)
112 LOCK(cl->refCountMutex);
113 cl->refCount++;
114 UNLOCK(cl->refCountMutex);
117 void rfbDecrClientRef(rfbClientPtr cl)
119 LOCK(cl->refCountMutex);
120 cl->refCount--
246 rfbClientPtr cl; local
287 rfbClientPtr cl,cl_; local
3330 rfbClientPtr cl; local
3355 rfbClientPtr cl; local
3411 rfbClientPtr cl=rfbScreen->udpClient; local
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 56 static cl::opt<bool>
58 cl::desc("Coalesce copies (default=true)"),
59 cl::init(true));
61 static cl::opt<bool> UseTerminalRule("terminal-rule",
62 cl::desc("Apply the terminal rule"),
63 cl::init(false));
66 static cl::opt<bool>
68 cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden);
71 static cl::opt<cl::boolOrDefault
2670 unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size(); local
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 39 using namespace cl;
47 namespace cl { namespace in namespace:llvm
64 } // end namespace llvm::cl
133 if (O->getFormattingFlag() == cl::Positional)
135 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
137 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
139 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
161 if (O->getFormattingFlag() == cl::Positional)
169 else if (O->getMiscFlags() & cl::Sink)
215 void cl::AddLiteralOption(Option &O, const char *Name)
    [all...]
  /frameworks/base/core/java/android/app/
LoadedApk.java 568 java.lang.ClassLoader cl = getClassLoader(); local
574 cl, appClass, appContext);
614 private void rewriteRValues(ClassLoader cl, String packageName, int id) {
617 rClazz = cl.loadClass(packageName + ".R");
877 ClassLoader cl = mReceiver.getClass().getClassLoader(); local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 635 final ConnectLine cl = target.mOutputs.get(ct); local
636 if (cl.mToK != null) {
637 Node tn = findNode(cl.mToK.mScript);
643 if (cl.mToF != null) {
644 Node tn = findNode(cl.mToF.mScript);
669 final ConnectLine cl = n.mOutputs.get(ct); local
670 if (cl.mToK != null) {
671 Node tn = findNode(cl.mToK.mScript);
674 if (cl.mToF != null) {
675 Node tn = findNode(cl.mToF.mScript)
777 ConnectLine cl = new ConnectLine(t, from, to); local
811 ConnectLine cl = new ConnectLine(t, from, to); local
931 ConnectLine cl = mLines.get(ct); local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentSkipListSetTest.java 671 Class cl = ConcurrentSkipListSet.class; local
673 NavigableSet<Integer> set = newSet(cl);
699 static NavigableSet<Integer> newSet(Class cl) throws Exception {
700 NavigableSet<Integer> result = (NavigableSet<Integer>) cl.newInstance();
TreeSetTest.java 675 Class cl = TreeSet.class; local
677 NavigableSet<Integer> set = newSet(cl);
703 static NavigableSet<Integer> newSet(Class cl) throws Exception {
704 NavigableSet<Integer> result = (NavigableSet<Integer>) cl.newInstance();

Completed in 2301 milliseconds

1 2 3 4 5 67 8 91011>>