HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 501 - 525 of 1103) sorted by null

<<21222324252627282930>>

  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_copy.c 250 * \param root Root configuration node
260 snd_config_t *root, snd_config_t *conf,
285 err = snd_pcm_slave_conf(root, slave, &sconf, 0);
288 err = snd_pcm_open_slave(&spcm, root, sconf, stream, mode, conf);
  /external/bluetooth/bluez/audio/
manager.c 232 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
245 root = sdp_list_append(0, &root_uuid);
246 sdp_set_browse_groups(record, root);
280 sdp_list_free(root, 0);
288 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
301 root = sdp_list_append(0, &root_uuid);
302 sdp_set_browse_groups(record, root);
336 sdp_list_free(root, 0);
344 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
366 root = sdp_list_append(0, &root_uuid)
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
currtest.c 230 void addCurrencyTest(TestNode** root);
232 #define TESTCASE(x) addTest(root, &x, "tsformat/currtest/" #x)
234 void addCurrencyTest(TestNode** root)
tracetst.c 38 addUTraceTest(TestNode** root);
41 addUTraceTest(TestNode** root)
43 addTest(root, &TestTraceAPI, "tsutil/TraceTest/TestTraceAPI" );
utexttst.c 25 void addUTextTest(TestNode** root);
29 addUTextTest(TestNode** root)
31 addTest(root, &TestAPI , "tsutil/UTextTest/TestAPI");
udatatst.c 78 void addUDataTest(TestNode** root);
81 addUDataTest(TestNode** root)
83 addTest(root, &TestUDataOpen, "udatatst/TestUDataOpen" );
84 addTest(root, &TestUDataOpenChoiceDemo1, "udatatst/TestUDataOpenChoiceDemo1");
85 addTest(root, &TestUDataOpenChoiceDemo2, "udatatst/TestUDataOpenChoiceDemo2");
86 addTest(root, &TestUDataGetInfo, "udatatst/TestUDataGetInfo" );
87 addTest(root, &TestUDataGetMemory, "udatatst/TestUDataGetMemory" );
88 addTest(root, &TestUDataSetAppData, "udatatst/TestUDataSetAppData" );
89 addTest(root, &TestErrorConditions, "udatatst/TestErrorConditions");
90 addTest(root, &TestAppData, "udatatst/TestAppData" )
    [all...]
cintltst.c 16 /*The main root for C API tests*/
70 TestNode *root; local
191 root = NULL;
192 addAllTests(&root);
195 nerrors = runTestRequest(root, argc, argv);
200 cleanUpTestTree(root);
  /external/chromium/third_party/icu/source/test/iotest/
stream.cpp 283 U_CFUNC void addStreamTests(TestNode** root) {
284 addTest(root, &TestStream, "stream/TestStream");
285 addTest(root, &TestStreamEOF, "stream/TestStreamEOF");
  /external/elfutils/libebl/
eblstrtab.c 57 struct Ebl_Strent *root; member in struct:Ebl_Strtab
228 sep = searchstring (&st->root, newstr);
335 copystrings (st->root, &endp, &copylen);
  /external/freetype/src/raster/
ftrend1.c 144 if ( render->clazz->root.module_name[6] == '1' )
150 if ( render->clazz->root.module_name[6] == '5' )
172 memory = render->root.memory;
  /external/icu4c/test/cintltst/
currtest.c 230 void addCurrencyTest(TestNode** root);
232 #define TESTCASE(x) addTest(root, &x, "tsformat/currtest/" #x)
234 void addCurrencyTest(TestNode** root)
tracetst.c 38 addUTraceTest(TestNode** root);
41 addUTraceTest(TestNode** root)
43 addTest(root, &TestTraceAPI, "tsutil/TraceTest/TestTraceAPI" );
utexttst.c 25 void addUTextTest(TestNode** root);
29 addUTextTest(TestNode** root)
31 addTest(root, &TestAPI , "tsutil/UTextTest/TestAPI");
udatatst.c 82 void addUDataTest(TestNode** root);
85 addUDataTest(TestNode** root)
88 addTest(root, &TestUDataOpen, "udatatst/TestUDataOpen" );
89 addTest(root, &TestUDataOpenChoiceDemo1, "udatatst/TestUDataOpenChoiceDemo1");
90 addTest(root, &TestUDataOpenChoiceDemo2, "udatatst/TestUDataOpenChoiceDemo2");
91 addTest(root, &TestUDataGetInfo, "udatatst/TestUDataGetInfo" );
92 addTest(root, &TestUDataGetMemory, "udatatst/TestUDataGetMemory" );
93 addTest(root, &TestErrorConditions, "udatatst/TestErrorConditions");
94 addTest(root, &TestAppData, "udatatst/TestAppData" );
95 addTest(root, &TestSwapData, "udatatst/TestSwapData" )
    [all...]
  /external/icu4c/test/iotest/
stream.cpp 337 U_CFUNC void addStreamTests(TestNode** root) {
338 addTest(root, &TestStream, "stream/TestStream");
339 addTest(root, &TestStreamEOF, "stream/TestStreamEOF");
  /external/jdiff/src/jdiff/
JDiff.java 25 * @param root a RootDoc object passed by Javadoc
28 public static boolean start(RootDoc root) {
29 if (root != null)
32 return jd.startGeneration(root);
38 * @param root the RootDoc object passed by Javadoc
  /external/webkit/WebCore/bindings/js/
JSNodeCustom.cpp 152 // Find the the root, and the highest ancestor with a wrapper.
153 Node* root = node; local
156 root = current;
162 // case, the root of the detached subtree has a wrapper, so the tree will only
171 for (Node* nodeToMark = root; nodeToMark; nodeToMark = nodeToMark->traverseNextNode())
  /external/webkit/WebCore/editing/
htmlediting.cpp 222 // Since enclosingNodeOfType won't search beyond the highest root editable node,
223 // this code works even if the closest table cell was outside of the root editable node.
671 Node* root = highestEditableRoot(p);
673 if (root && !n->isContentEditable())
677 if (n == root)
689 Node* root = highestEditableRoot(p);
693 if (root && !n->isContentEditable() && onlyReturnEditableNodes)
697 if (n == root)
707 Node* root = highestEditableRoot(p); local
711 if (n == root)
    [all...]
  /external/webkit/WebKit/android/nav/
CachedHistory.cpp 150 void CachedHistory::Debug::print(CachedRoot* root) const
157 int index = root != NULL && root->CachedFrame::mDebug.validate(node) ?
  /frameworks/base/libs/ui/
KeyCharacterMap.cpp 165 const char* root = getenv("ANDROID_ROOT"); local
174 snprintf(path, sizeof(path), "%s/usr/keychars/%s.kcm.bin", root, tmpfn);
185 snprintf(path, sizeof(path), "%s/usr/keychars/qwerty.kcm.bin", root);
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 86 public static File copyFile(File root, String folder, String file) {
89 f = new File(root.toString() + "/" + folder);
95 f = root;
  /packages/apps/Camera/src/com/android/camera/ui/
IndicatorBar.java 41 protected void render(GLRootView root, GL11 gl) {
42 mBackground.draw(root, 0, 0, getWidth(), getHeight());
48 mHighlight.draw(root, bounds.left, bounds.top,
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 247 final View root = view.getRootView(); local
250 true, root.getWidth(), root.getHeight());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 96 ElementDescriptor rootDescriptor = new ElementDescriptor("root", "", "", "",
150 MockXmlNode root = new MockXmlNode(null /* namespace */, "root", Node.ELEMENT_NODE, local
154 root.setPrefix(SdkConstants.NS_RESOURCES, "android");
157 ui.loadFromXmlNode(root);
  /external/e2fsprogs/e2fsck/
pass2.c 135 * Set up the parent pointer for the root directory, if
136 * present. (If the root directory is not present, we will
222 * This test doesn't apply for the root block
320 * This guarantees that the root node of the htree directories are
430 * yet, so we will fill it in with the root
530 struct ext2_dx_root_info *root; local
541 root = (struct ext2_dx_root_info *) (block_buf + 24);
544 printf("Root node dump:\n");
545 printf("\t Reserved zero: %u\n", root->reserved_zero);
546 printf("\t Hash Version: %d\n", root->hash_version)
719 struct ext2_dx_root_info *root; local
    [all...]

Completed in 855 milliseconds

<<21222324252627282930>>