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

  /packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/
DmtPathUtils.java 42 * @param nodePath path to the node.
45 public static String getNodeName(String nodePath) {
46 String[] data = splitPath(nodePath);
55 * @param nodePath full path to the node.
58 public static String getSubNodeName(String rootPath, String nodePath) {
59 if (!isValidPath(rootPath) || !isValidPath(nodePath)) {
65 if (!nodePath.startsWith(prefix)) {
69 int nameEnd = nodePath.indexOf('/', prefix.length());
71 return nodePath.substring(prefix.length());
73 return nodePath.substring(prefix.length(), nameEnd)
    [all...]
DmtManagementObject.java 49 * @param nodePath path to the node.
52 protected boolean isNodeExist(String nodePath) {
53 return (mNodes.get(nodePath) != null);
59 * @param nodePath path to the new node.
63 protected final int createLeafNode_(String nodePath, DmtData nodeValue) {
68 String[] data = DmtPathUtils.splitPath(nodePath);
77 if (isNodeExist(nodePath)) {
78 return updateLeafNode_(nodePath, nodeValue);
91 mNodes.put(nodePath, new DmtPluginNode(nodePath, nodeValue))
    [all...]
  /packages/apps/OMA-DM/plugins/pluginhelper/com/android/omadm/pluginhelper/
DmtMoBuilder.java 48 * @param nodePath path to the node.
51 public boolean isNodeExist(String nodePath) {
53 return (mNodes.get(nodePath) != null);
59 * @param nodePath path to the new node.
63 public int createLeafNode(String nodePath, DmtData nodeValue) {
69 Log.d(TAG, "--ENTER-- DmtMoBuilder.createLeafNode(" + nodePath + "," + nodeValue.getString() + ")");
71 String[] data = DmtPathUtils.splitPath(nodePath);
80 if (isNodeExist(nodePath)) {
81 return updateLeafNode(nodePath, nodeValue);
94 mNodes.put(nodePath, new DmtPluginNode(nodePath, nodeValue))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstPathTest.java 50 SimplePath nodePath = new SimplePath(node, rootPath);
51 assertTrue(nodePath.hasPrefix());
52 assertEquals(rootPath, nodePath.prefixOrNull());
53 assertEquals(rootPath, nodePath.getPrefix());
  /external/deqp/framework/common/
tcuTestExecutor.cpp 237 string nodePath = "";
242 nodePath += ".";
243 nodePath += iter.node->getName();
257 if (!(isLeaf ? m_cmdLine.checkTestCaseName(nodePath.c_str()) : m_cmdLine.checkTestGroupName(nodePath.c_str())))
268 case NODETYPE_PACKAGE: enterTestPackage(static_cast<TestPackage*>(node), nodePath.c_str()); break;
269 case NODETYPE_GROUP: enterGroupNode(static_cast<TestCaseGroup*>(node), nodePath.c_str()); break;
273 case NODETYPE_SELF_VALIDATE: enterOk = enterTestCase(static_cast<TestCase*>(node), nodePath.c_str()); break;
322 fprintf(m_testCaseListFile, "TEST: %s\n", nodePath.c_str());
324 fprintf(m_testCaseListFile, "GROUP: %s\n", nodePath.c_str())
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_gen_tool/com/mot/dm/tool/
Diff.java 83 String nodePath = (String) keys[i];
85 if (!map2.containsKey(nodePath)) {
86 presentInFirstOnly.add(nodePath);
89 parms1 = (HashMap) map1.get(nodePath);
90 parms2 = (HashMap) map2.get(nodePath);
94 differentValues.put(nodePath, arr);
96 map2.remove(nodePath);
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ssession/src/
dm_ua_handlecommand.cc     [all...]
  /packages/apps/OMA-DM/engine/dmlib/plugin/src/
dmtRWPlugin.cc 188 DMString nodePath;
200 dm_stat = oChildren[i]->GetPath(nodePath);
203 dm_stat = this->RemoveNode(nodePath);
215 dm_stat = ptrNode->GetPath(nodePath);
217 dm_stat = this->RemoveNode(nodePath);
    [all...]
SyncML_PlugIn_WBXMLLog.cc 435 DMString nodePath;
438 ret_code = oChildren[i]->GetPath(nodePath);
443 nodePath.c_str(),
    [all...]
  /packages/apps/OMA-DM/engine/jni/
DMTreeManager.cc 73 JNIEXPORT jstring JNICALL setStringNode(JNIEnv* jenv, jclass, jstring nodePath, jstring value)
77 const char* szNodePath = jenv->GetStringUTFChars(nodePath, NULL);
83 jenv->ReleaseStringUTFChars(nodePath, szNodePath);
312 LOGI("NodePath=%s,Byte Data=0x%X,0x%X,0x%X,0x%X,0x%X,0x%X,0x%X\n", szNode, pData[0], pData[1],
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js 30 var nodePath = require('path');
32 filename = nodePath['normalize'](filename);
35 if (!ret && filename != nodePath['resolve'](filename)) {
    [all...]
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js 88 var nodePath = require('path');
90 filename = nodePath['normalize'](filename);
93 if (!ret && filename != nodePath['resolve'](filename)) {
    [all...]

Completed in 440 milliseconds