HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 176 - 200 of 4880) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libxml2/python/tests/
nsdel.py 47 root = doc.newChild(None, "root", None) variable
48 namespace = root.newNs("http://example.com/sample", "s")
49 child = root.newChild(namespace, "child", None)
50 root.removeNsDef("http://example.com/sample")
51 doc.reconciliateNs(root)
  /external/toybox/toys/other/
lsattr.c 139 static int retell_dir(struct dirtree *root)
143 if (root->again) {
147 if (S_ISDIR(root->st.st_mode) && !root->parent)
150 fpath = dirtree_path(root, NULL);
152 if ((root->name[0] != '.') || (toys.optflags & FLAG_a)) {
154 if (S_ISDIR(root->st.st_mode) && (toys.optflags & FLAG_R)
155 && dirtree_notdotdot(root)) {
249 static int update_attr(struct dirtree *root)
255 if (!dirtree_notdotdot(root)) return 0
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator_unittest.cc 5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
34 PartitionTreeNode* root = local
36 EXPECT_TRUE(root->CreateChildren(kMaxSize));
37 ASSERT_TRUE(NULL != root->left_child());
38 ASSERT_TRUE(NULL != root->right_child());
39 EXPECT_EQ(3u, root->left_child()->this_size());
40 EXPECT_EQ(2u, root->right_child()->this_size());
41 EXPECT_EQ(11, root->right_child()->Cost(kPenalty));
42 EXPECT_FALSE(root->left_child()->packet_start())
52 PartitionTreeNode* root = local
83 PartitionTreeNode* root = local
    [all...]
  /packages/apps/Settings/src/com/android/settings/location/
ScanningSettings.java 47 PreferenceScreen root = getPreferenceScreen(); local
48 if (root != null) {
49 root.removeAll();
52 root = getPreferenceScreen();
54 return root;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ViewsTreeModel.java 26 private final ViewNode root; field in class:ViewsTreeModel
28 public ViewsTreeModel(ViewNode root) {
29 this.root = root;
33 return root;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsCache.java 38 import android.provider.DocumentsContract.Root;
95 // Special root for recents
98 flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_IS_CHILD
99 | Root.FLAG_SUPPORTS_CREATE;
131 // Nothing else about the root should ever change.
136 assert(mRecentsRoot.flags == (Root.FLAG_LOCAL_ONLY
137 | Root.FLAG_SUPPORTS_IS_CHILD
138 | Root.FLAG_SUPPORTS_CREATE));
327 final RootInfo root = RootInfo.fromRootsCursor(authority, cursor) local
354 RootInfo root = getRootLocked(authority, rootId); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DensityActivity.java 52 LinearLayout root = new LinearLayout(this); local
53 root.setOrientation(LinearLayout.VERTICAL);
59 addLabelToRoot(root, "Prescaled bitmap in drawable");
60 addChildToRoot(root, layout);
66 addLabelToRoot(root, "Autoscaled bitmap in drawable");
67 addChildToRoot(root, layout);
73 addLabelToRoot(root, "Prescaled resource drawable");
74 addChildToRoot(root, layout);
77 addLabelToRoot(root, "Inflated layout");
78 addChildToRoot(root, layout)
    [all...]
  /frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DpiTestActivity.java 82 LinearLayout root = new LinearLayout(this); local
83 root.setOrientation(LinearLayout.VERTICAL);
89 addLabelToRoot(root, "Prescaled bitmap in drawable");
90 addChildToRoot(root, layout);
96 addLabelToRoot(root, "Autoscaled bitmap in drawable");
97 addChildToRoot(root, layout);
103 addLabelToRoot(root, "Prescaled resource drawable");
104 addChildToRoot(root, layout);
107 addLabelToRoot(root, "Inflated layout");
108 addChildToRoot(root, layout)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkdnd.py 44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkdnd.py 44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
    [all...]
  /external/skia/src/core/
SkTSort.h 28 /* Sifts a broken heap. The input array is a heap from root to bottom
29 * except that the root entry may be out of place.
31 * Sinks a hole from array[root] to leaf and then sifts the original array[root] element
37 * the potentially out of place root entry value is expected to be small.
39 * @param root the one based index into array of the out-of-place root of the heap.
43 void SkTHeapSort_SiftUp(T array[], size_t root, size_t bottom, C lessThan) {
44 T x = array[root-1];
45 size_t start = root;
    [all...]
  /developers/build/prebuilts/gradle/RuntimePermissions/Application/src/main/java/com/example/android/system/runtimepermissions/
RuntimePermissionsFragment.java 33 View root = inflater.inflate(R.layout.fragment_main, null); local
45 root.findViewById(R.id.button_contacts).setVisibility(View.GONE);
49 return root;
  /developers/samples/android/system/RuntimePermissions/Application/src/main/java/com/example/android/system/runtimepermissions/
RuntimePermissionsFragment.java 33 View root = inflater.inflate(R.layout.fragment_main, null); local
45 root.findViewById(R.id.button_contacts).setVisibility(View.GONE);
49 return root;
  /development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/
RuntimePermissionsFragment.java 33 View root = inflater.inflate(R.layout.fragment_main, null); local
45 root.findViewById(R.id.button_contacts).setVisibility(View.GONE);
49 return root;
  /device/generic/qemu/
qemu_base.mk 80 system/core/rootdir/init.usb.rc:root/init.usb.rc \
81 system/core/rootdir/init.usb.configfs.rc:root/init.usb.configfs.rc \
82 system/core/rootdir/ueventd.rc:root/ueventd.rc \
86 device/generic/goldfish/fstab.goldfish:root/fstab.goldfish \
87 device/generic/goldfish/init.goldfish.rc:root/init.goldfish.rc \
89 device/generic/goldfish/ueventd.goldfish.rc:root/ueventd.goldfish.rc \
ranchu_arm64.mk 32 $(LOCAL_PATH)/init.ranchu.rc:root/init.ranchu.rc \
33 $(LOCAL_PATH)/fstab.ranchu:root/fstab.ranchu \
34 $(LOCAL_PATH)/ueventd.ranchu.rc:root/ueventd.ranchu.rc)
  /external/autotest/client/cros/cellular/pseudomodem/
run_pseudomodem.py 21 root = logging.getLogger()
22 for handler in root.handlers:
23 root.removeHandler(handler)
  /external/autotest/site_utils/docgen/
fs_find_tests.py 31 for root, dirnames, filenames in os.walk(parent_dir):
33 test_name = os.path.basename(root)
36 full_name = os.path.join(root, filename)
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
DefaultRootKeySetCreator.java 28 * Root key set creator that starts with all types that are not Guice internal types or the
38 Set<Key<?>> root = Sets.newHashSet(); local
42 root.add(key);
45 return root;
  /external/libchrome/base/json/
json_string_value_serializer.h 28 bool Serialize(const base::Value& root) override;
30 // Equivalent to Serialize(root) except binary values are omitted from the
32 bool SerializeAndOmitBinaryValues(const base::Value& root);
38 bool SerializeInternal(const base::Value& root, bool omit_binary_values);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrobjs.h 36 FT_FaceRec root; member in struct:PFR_FaceRec_
46 FT_SizeRec root; member in struct:PFR_SizeRec_
53 FT_GlyphSlotRec root; member in struct:PFR_SlotRec_
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
StageDebugTest.java 85 Table root = new Table(skin); local
86 root.setFillParent(true);
87 root.setBackground(skin.getDrawable("default-pane"));
88 root.defaults().space(6);
89 root.setTransform(true);
90 root.rotateBy(10);
91 root.setScale(1.3f, 1);
92 root.debug();
93 stage2.addActor(root);
95 root.add(shortButton).pad(5)
    [all...]
  /external/opencv3/3rdparty/zlib/
inftrees.c 28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root = max
    [all...]

Completed in 900 milliseconds

1 2 3 4 5 6 78 91011>>