HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 151 - 175 of 1353) sorted by null

1 2 3 4 5 67 8 91011>>

  /bootable/recovery/edify/
parser.y 29 void yyerror(Expr** root, int* error_count, const char* s);
30 int yyparse(Expr** root, int* error_count);
50 %parse-param {Expr** root}
65 input: expr { *root = $1; }
95 yyerror(root, error_count, buffer);
124 void yyerror(Expr** root, int* error_count, const char* s) {
  /external/v8/test/sputnik/
testcfg.py 81 def __init__(self, context, root):
82 super(SputnikTestConfiguration, self).__init__(context, root)
86 testroot = join(self.root, 'sputniktests')
107 status_file = join(self.root, 'sputnik.status')
112 def GetConfiguration(context, root):
113 return SputnikTestConfiguration(context, root)
  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.cpp 43 const char DOMFilePath::root[] = "/"; member in class:WebCore::DOMFilePath
72 return DOMFilePath::root;
82 if (parent == DOMFilePath::root && mayBeChild != DOMFilePath::root)
108 return DOMFilePath::root;
121 if (path.isEmpty() || path == DOMFilePath::root)
DOMFilePath.h 44 static const char root[]; member in class:WebCore::DOMFilePath
63 return path.startsWith(DOMFilePath::root);
71 // Evaluates all "../" and "./" segments. Note that "/../" expands to "/", so you can't ever refer to anything above the root directory.
  /external/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...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 55 * Find the next view to take focus in root's descendants, starting from the view
57 * @param root Contains focused
62 public final View findNextFocus(ViewGroup root, View focused, int direction) {
66 View userSetNextFocus = focused.findUserSetNextFocus(root, direction);
76 root.offsetDescendantRectToMyCoords(focused, mFocusedRect);
78 // make up a rect at top left or bottom right of root
83 final int rootTop = root.getScrollY();
84 final int rootLeft = root.getScrollX();
91 final int rootBottom = root.getScrollY() + root.getHeight()
    [all...]
  /bionic/libc/kernel/common/linux/
rbtree.h 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
  /build/target/board/vbox_x86/
device.mk 32 build/target/board/vbox_x86/init.rc:root/init.rc \
33 build/target/board/vbox_x86/init.vbox_x86.rc:root/init.vbox_x86.rc \
  /cts/tests/tests/sax/src/android/sax/cts/
RootElementTest.java 50 RootElement root = new RootElement(ATOM_NAMESPACE, FEED); local
51 assertNotNull(root.getContentHandler());
  /development/ndk/platforms/android-3/include/linux/
rbtree.h 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
mono.rs 22 void root(const uchar4 *v_in, uchar4 *v_out) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
NamespaceAlias.java 152 * @param root The owning root stylesheet
154 public void recompose(StylesheetRoot root)
156 root.recomposeNamespaceAliases(this);
  /external/freetype/src/autofit/
afmodule.c 35 FT_ModuleRec root; member in struct:FT_AutofitterRec_
44 return af_loader_init( module->loader, module->root.library->memory );
  /external/icu4c/stubdata/
root.mk 4 root := $(patsubst $(stubdata_path)/%,%,$(patsubst %-all.dat,%,$(root_dat_path))) macro
  /external/iproute2/testsuite/tests/
cls-testbed.t 15 ts_tc "cls-testbed" "cbq root qdisc creation" \
16 qdisc add dev $DEV root handle 10:0 \
18 ts_tc "cls-testbed" "cbq root class creation" \
29 ts_tc "cls-testbed" "htb root qdisc creation" \
30 qdisc add dev $DEV root handle 10:0 htb
31 ts_tc "cls-testbed" "htb root class creation" \
41 ts_tc "cls-testbed" "dsmark root qdisc creation" \
42 qdisc add dev $DEV root handle 20:0 \
64 qdisc del dev $DEV root
  /external/skia/include/views/
SkViewInflate.h 31 /** Return the tree of inflated views. If root is null, create the root element
32 as a view, otherwise assume root is that view, and just "inflate" it.
36 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
37 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
RemoveTree.cpp 71 void RemoveAllTreeNodes(TIntermNode* root)
75 root->traverse(&it);
  /external/webkit/Source/WebCore/bindings/v8/
RetainedDOMInfo.cpp 38 RetainedDOMInfo::RetainedDOMInfo(Node* root)
39 : m_root(root)
  /external/webkit/Source/WebCore/css/
svg.css 45 svg:not(:root), symbol, image, marker, pattern, foreignObject {
  /external/webkit/Source/WebCore/dom/
NodeIterator.idl 27 readonly attribute Node root;
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
lighttpd.conf 7 # default document root required
8 server.document-root = "."
  /packages/apps/Settings/src/com/android/settings/
LocationSettings.java 78 PreferenceScreen root = getPreferenceScreen(); local
79 if (root != null) {
80 root.removeAll();
83 root = getPreferenceScreen();
85 mNetwork = (CheckBoxPreference) root.findPreference(KEY_LOCATION_NETWORK);
86 mGps = (CheckBoxPreference) root.findPreference(KEY_LOCATION_GPS);
87 mAssistedGps = (CheckBoxPreference) root.findPreference(KEY_ASSISTED_GPS);
108 return root;
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
rbtree.h 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
rbtree.h 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
rbtree.h 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)

Completed in 974 milliseconds

1 2 3 4 5 67 8 91011>>