/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...] |
LoadRootTask.java | 42 protected void finish(RootInfo root) { 45 if (root != null) { 46 mOwner.onRootPicked(root); 48 Log.w(TAG, "Failed to find root: " + mRootUri);
|
/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...] |
/external/pdfium/third_party/zlib_v128/ |
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...] |
/external/zlib/src/ |
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...] |
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
ViewWithTagTest.java | 34 ViewGroup root = (ViewGroup) binder.getRoot(); local 35 View view1 = root.getChildAt(0); 36 View view2 = root.getChildAt(1);
|