HomeSort by relevance Sort by last modified time
    Searched refs:m_obj (Results 1 - 16 of 16) sorted by null

  /external/webkit/WebKit/android/jni/
WebCoreJni.h 39 if (m_obj)
40 m_env->DeleteLocalRef(m_obj);
43 return m_obj;
48 jobject obj = m_obj;
49 m_obj = 0;
58 , m_obj(obj) {}
60 jobject m_obj; member in class:android::AutoJObject
WebViewCore.cpp 230 jweak m_obj; member in struct:android::WebViewCore::JavaGlue
275 return getRealObject(env, m_obj);
321 m_javaGlue->m_obj = env->NewWeakGlobalRef(javaWebViewCore);
384 if (m_javaGlue->m_obj) {
386 env->DeleteWeakGlobalRef(m_javaGlue->m_obj);
387 m_javaGlue->m_obj = 0;
684 LOG_ASSERT(m_javaGlue->m_obj,
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/objects/
XStringForChars.java 89 fsb.append((char[])m_obj, m_start, m_length);
112 m_strCache = new String((char[])m_obj, m_start, m_length);
143 ch.characters((char[])m_obj, m_start, m_length);
158 lh.comment((char[])m_obj, m_start, m_length);
187 return ((char[])m_obj)[index+m_start];
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
XBoolean.java 135 if(null == m_obj)
137 return m_obj;
XObject.java 56 protected Object m_obj; // This may be NULL!!! field in class:XObject
75 m_obj = obj;
121 if (null != m_obj)
301 return (m_obj != null) ? m_obj.toString() : "";
399 return m_obj;
476 return (NodeSetDTM) m_obj;
510 result = m_obj;
642 if (null != m_obj)
644 return m_obj.equals(obj2.m_obj)
    [all...]
XRTreeFragSelectWrapper.java 53 ((Expression)m_obj).fixupVariables(vars, globalsSize);
69 m_selected = ((Expression)m_obj).execute(xctxt);
XNumber.java 379 if(null == m_obj)
381 return m_obj;
XNodeSet.java 87 setObject(val.m_obj);
113 ((NodeSetDTM) m_obj).addNode(n);
291 if(null == m_obj)
294 return m_obj;
429 if(m_obj instanceof NodeSetDTM)
431 mnl = (NodeSetDTM) m_obj;
XRTreeFrag.java 240 if (m_obj instanceof NodeList)
241 return (NodeList) m_obj;
XNodeSetForDOM.java 46 ((NodeSetDTM) m_obj).addNode(dtmHandle);
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
83 // m_obj = new org.apache.xpath.NodeSetDTM(nodeIter, xctxt);
XString.java 169 return (null != m_obj) ? ((String) m_obj) : "";
    [all...]
XStringForFSB.java 90 return ((FastStringBuffer) m_obj);
  /libcore/luni/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 55 Expression expr = ((ElemVariable)m_obj).getSelect().getExpression();
XUnresolvedVariable.java 120 ElemVariable velem = (ElemVariable)m_obj;
  /external/webkit/WebKitTools/DumpRenderTree/win/
UIDelegate.cpp 53 , m_obj(obj)
64 m_target->invoke(m_actionName, m_obj.get());
70 COMPtr<IUnknown> m_obj; member in class:DRTUndoObject
  /external/webkit/WebKit/android/nav/
WebView.cpp 105 jweak m_obj; member in struct:android::WebView::JavaGlue
131 return getRealObject(env, m_obj);
140 m_javaGlue.m_obj = env->NewWeakGlobalRef(javaWebView);
185 if (m_javaGlue.m_obj)
188 env->DeleteWeakGlobalRef(m_javaGlue.m_obj);
189 m_javaGlue.m_obj = 0;
588 LOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
602 LOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
611 LOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
620 LOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!")
    [all...]

Completed in 80 milliseconds