HomeSort by relevance Sort by last modified time
    Searched refs:tree (Results 326 - 350 of 706) sorted by null

<<11121314151617181920>>

  /external/opencv/ml/src/
mlboost.cpp 137 // traverse the tree and scale all the node values
740 // in case of regression tree:
948 CvBoostTree* tree = new CvBoostTree; local
949 if( !tree->train( data, subsample_mask, this ) )
951 delete tree;
955 cvSeqPush( weak, &tree );
956 update_weights( tree );
970 CvBoost::update_weights( CvBoostTree* tree )
979 if( !tree ) // before training the first tree, initialize weights and other parameter
1577 CvBoostTree* tree = new CvBoostTree(); local
1609 CvBoostTree* tree; local
    [all...]
mlrtrees.cpp 262 // Create mask of active variables at the tree nodes
362 CvForestTree* tree = 0; local
365 for( i = 0; i < nsamples; i++ ) //form sample for creation one tree
373 tree = trees[ntrees];
374 CV_CALL(tree->train( data, sample_idx_for_tree, this ));
391 CV_CALL(predicted_node = tree->predict(&sample, &missing, true));
469 predct_resp = tree->predict(&sample, &missing, true)->value;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapPanel.java 65 import org.eclipse.swt.widgets.Tree;
697 Tree detailsTree = new Tree(c, SWT.VIRTUAL | SWT.BORDER | SWT.MULTI);
705 Tree stackTraceTree = new Tree(c, SWT.BORDER | SWT.MULTI);
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 2060 ResXMLTree tree; local
2163 ResXMLTree tree; local
    [all...]
  /development/ndk/platforms/android-9/samples/native-activity/
Android.mk 20 # Android platform build system, inside of its source tree. This
  /development/tools/emulator/system/qemu-props/
Android.mk 21 # smooth builds even if the tree contains both versions.
  /development/tools/emulator/system/sensors/
Android.mk 18 # smooth builds even if the tree contains both versions.
  /external/apache-harmony/
Android.mk 38 # We need to use -maxdepth 4 because there's a non-resource directory called "resources" deeper in the tree.
  /external/dbus/dbus/
Android.mk 54 dbus-object-tree.c \
  /external/webkit/Source/WebCore/inspector/
InspectorPageAgent.cpp 170 for (Frame* frame = m_inspectedPage->mainFrame(); frame; frame = frame->tree()->traverseNext(m_inspectedPage->mainFrame())) {
203 for (Frame* frame = m_inspectedPage->mainFrame(); frame; frame = frame->tree()->traverseNext(m_inspectedPage->mainFrame())) {
  /external/webkit/Source/WebCore/loader/
DocumentWriter.cpp 162 Frame* parentFrame = m_frame->tree()->parent();
176 Frame* parentFrame = m_frame->tree()->parent();
ProgressTracker.cpp 106 LOG(Progress, "Progress started (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree()->uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get());
124 LOG(Progress, "Progress completed (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree()->uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get());
  /external/webkit/Source/WebCore/page/
Frame.h 117 FrameTree* tree() const;
121 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame.
360 inline FrameTree* Frame::tree() const function in class:WebCore::Frame
  /sdk/emulator/gps/
Android.mk 18 # smooth builds even if the tree contains both versions.
  /sdk/emulator/tools/
Android.mk 21 # smooth builds even if the tree contains both versions.
  /external/libvpx/vp8/encoder/arm/armv5te/
vp8_packtokens_mbrow_armv5.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
186 str r10, [sp, #4] ; b->tree
201 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
249 ldr r10, [sp, #4] ; b->tree
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 113 return toJS(exec, static_cast<JSDOMWindow*>(asObject(slotBase))->impl()->frame()->tree()->child(identifierToAtomicString(propertyName))->domWindow());
118 return toJS(exec, static_cast<JSDOMWindow*>(asObject(slotBase))->impl()->frame()->tree()->child(index)->domWindow());
231 if (impl()->frame()->tree()->child(identifierToAtomicString(propertyName))) {
255 if (ok && i < impl()->frame()->tree()->childCount()) {
320 if (impl()->frame()->tree()->child(identifierToAtomicString(propertyName))) {
329 if (ok && i < impl()->frame()->tree()->childCount()) {
472 if (settings->usesDashboardBackwardCompatibilityMode() && !activeFrame->tree()->parent()) {
  /external/bluetooth/glib/tests/
testglib.c 407 GTree *tree; local
411 tree = g_tree_new (my_compare);
416 g_tree_insert (tree, &chars[i], &chars[i]);
421 g_tree_insert (tree, &chars[i], &chars[i]);
426 g_tree_insert (tree, &chars[i], &chars[i]);
429 g_assert_cmpint (g_tree_nnodes (tree), ==, 10 + 26 + 26);
430 g_assert_cmpint (g_tree_height (tree), ==, 6);
434 g_print ("tree: ");
435 g_tree_foreach (tree, my_traverse, NULL);
440 g_tree_remove (tree, &chars[i])
    [all...]
  /external/webkit/Source/WebCore/loader/archive/android/
WebArchiveAndroid.cpp 36 #include <libxml/tree.h>
68 int children = frame->tree()->childCount();
73 subframes.append(create(frame->tree()->child(child)));
  /external/webkit/Source/WebKit/wince/
WebView.cpp 164 coreFrame->tree()->appendChild(childFrame);
165 childFrame->tree()->setName(name);
175 if (!childFrame->tree()->parent())
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 17 package com.android.ide.eclipse.adt.internal.editors.ui.tree;
57 * Details page for the {@link UiElementNode} nodes in the tree view.
63 /** The master-detail part, composed of a main tree and an auxiliary detail part */
75 public UiElementDetail(UiTreeBlock tree) {
76 mTree = tree;
157 * Called by the master part when the tree is refreshed after the framework resources
  /device/samsung/crespo4g/
device.mk 32 # vendor tree and is used by engineers who have access to it. The other
35 # but not to the original vendor tree. Be sure to update both.
  /external/antlr/src/org/antlr/runtime/tree/
TreePatternParser.java 28 package org.antlr.runtime.tree;
  /external/blktrace/
Makefile 65 git-tar-tree HEAD btrace-1.0 > btrace-1.0.tar
  /external/libvpx/vp8/common/arm/armv6/
iwalsh_v6.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.

Completed in 361 milliseconds

<<11121314151617181920>>