Searched defs:root (Results 501 - 525 of 958) sorted by relevance

<<21222324252627282930>>

/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Djson.c215 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; local
451 if (!root)
452 root = token;
457 if (json_check_tree_state(root) < 0) {
462 return root;
465 json_free(root);
563 void json_print_tree(struct json_token *root, char *buf, size_t buflen) argument
566 json_print_token(root, 1, buf, buflen);
H A Dxml-utils.c16 xml_node_t *root, char *uri)
26 node = root;
46 xml_node_t * get_node_uri(struct xml_node_ctx *ctx, xml_node_t *root, argument
56 node = get_node_uri_iter(ctx, root, search);
64 xml_node_t *root, const char *path)
74 xml_node_for_each_child(ctx, node, root) {
89 xml_node_t * get_node(struct xml_node_ctx *ctx, xml_node_t *root, argument
99 node = get_node_iter(ctx, root, search);
106 xml_node_t * get_child_node(struct xml_node_ctx *ctx, xml_node_t *root, argument
112 xml_node_for_each_child(ctx, node, root) {
15 get_node_uri_iter(struct xml_node_ctx *ctx, xml_node_t *root, char *uri) argument
63 get_node_iter(struct xml_node_ctx *ctx, xml_node_t *root, const char *path) argument
278 xml_node_t *root; local
335 add_mo_node(struct xml_node_ctx *ctx, xml_node_t *root, xml_node_t *node, const char *uri) argument
382 tnds_to_mo_iter(struct xml_node_ctx *ctx, xml_node_t *root, xml_node_t *node, const char *uri) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb212 [root] a top-level tree node, i.e. a node that does not have a parent
215 [ancestors] the list of successive parents from a tree node to the root node
235 def root?
238 alias detached? root?
240 def root method in class:ANTLR3.AST.for.Tree
242 until cursor.root?
259 root? ? 0 : parent.depth + 1
263 root? and return []
270 until cursor.root?
443 def root
[all...]
/external/ImageMagick/MagickCore/
H A Dhistogram.c103 *root;
241 Start at the root and proceed level by level.
243 node_info=cube_info->root;
403 DestroyColorCube(image,cube_info->root);
496 Initialize root node.
498 cube_info->root=GetNodeInfo(cube_info,0);
499 if (cube_info->root == (NodeInfo *) NULL)
554 *root;
557 root=histogram;
558 DefineImageHistogram(image,cube_info->root,
100 *root; member in struct:_CubeInfo
544 *root; local
[all...]
H A Dsplay-tree.c88 *root;
170 if (splay_tree->root != (NodeInfo *) NULL)
173 compare=splay_tree->compare(splay_tree->root->key,key);
175 compare=(splay_tree->root->key > key) ? 1 :
176 ((splay_tree->root->key < key) ? -1 : 0);
180 (splay_tree->root->value != (void *) NULL))
181 splay_tree->root->value=splay_tree->relinquish_value(
182 splay_tree->root->value);
184 (splay_tree->root->key != (void *) NULL))
185 splay_tree->root
85 *root; member in struct:_SplayTreeInfo
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventSocketProxy.cs342 public override void AddChild(object root, object child) { argument
343 int rootID = adaptor.GetUniqueID(root);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs131 protected object root; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
133 /** <summary>IF this tree (root) was created from a token stream, track it.</summary> */
162 this.root = tree;
183 return root;
251 FillBuffer(root);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventSocketProxy.java308 public void addChild(Object root, Object child) { argument
309 int rootID = adaptor.getUniqueID(root);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java100 protected Object root; field in class:BufferedTreeNodeStream
102 /** IF this tree (root) was created from a token stream, track it. */
131 this.root = tree;
143 fillBuffer(root);
267 return root;
/external/deqp/executor/tools/
H A DxeBatchResultToXml.cpp322 static void writeTestCaseList (const xe::TestRoot& root, const ShortTestResultMap& resultMap, xe::xml::Writer& dst) argument
328 for (int childNdx = 0; childNdx < root.getNumChildren(); childNdx++)
329 writeTestCaseListNode(root.getChild(childNdx), resultMap, dst);
/external/deqp/executor/
H A DxeBatchExecutor.cpp60 static void computeExecuteSet (TestSet& executeSet, const TestNode* root, const TestSet& testSet, const BatchResult* batchResult) argument
62 ConstTestNodeIterator iter = ConstTestNodeIterator::begin(root);
63 ConstTestNodeIterator end = ConstTestNodeIterator::end(root);
79 static void computeBatchRequest (TestSet& requestSet, const TestSet& executeSet, const TestNode* root, int maxCasesInSet) argument
81 ConstTestNodeIterator iter = ConstTestNodeIterator::begin(root);
82 ConstTestNodeIterator end = ConstTestNodeIterator::end(root);
98 static int removeExecuted (TestSet& set, const TestNode* root, const BatchResult* batchResult) argument
101 ConstTestNodeIterator iter = ConstTestNodeIterator::begin(root);
102 ConstTestNodeIterator end = ConstTestNodeIterator::end(root);
157 BatchExecutor::BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, cons argument
[all...]
H A DxeTestCase.cpp277 TestHierarchyBuilder::TestHierarchyBuilder (TestRoot* root) argument
278 : m_root(root)
280 addChildGroupsToMap(m_groupMap, root);
431 ConstTestNodeIterator::ConstTestNodeIterator (const TestNode* root) argument
432 : m_root(root)
436 ConstTestNodeIterator ConstTestNodeIterator::begin (const TestNode* root) argument
438 ConstTestNodeIterator iter(root);
443 ConstTestNodeIterator ConstTestNodeIterator::end (const TestNode* root) argument
445 DE_UNREF(root);
446 return ConstTestNodeIterator(root);
[all...]
/external/deqp/framework/delibs/depool/
H A DdeMemPool.c82 * creating the root pool with the deMemPool_createFailingRoot() function.
89 deMemPool* parent; /*!< Pointer to parent (null for root pools). */
219 deMemPool* root = pool; local
220 while (root->parent)
221 root = root->parent;
223 if (pool == root)
224 root->lastAllocatedIndex = 0;
226 pool->allocIndex = ++root->lastAllocatedIndex;
230 root
307 deMemPool* root = pool->parent; local
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp508 tcu::TestCaseGroup* const root = new tcu::TestCaseGroup(testCtx, "no_attachments", "Framebuffer without attachments"); member in class:deqp::gles31::Functional::tcu
514 root->addChild(group);
562 root->addChild(group);
579 root->addChild(group);
597 root->addChild(group);
615 root->addChild(group);
650 root->addChild(group);
658 return root;
/external/freetype/src/otvalid/
H A Dotvcommn.h46 FT_Validator root; member in struct:OTV_ValidatorRec_
71 ft_validator_error( otvalid->root, FT_THROW( _error ) )
93 if ( p + (_count) > otvalid->root->limit ) \
101 if ( otvalid->root->level == FT_VALIDATE_PARANOID ) \
123 if ( otvalid->root->level == FT_VALIDATE_PARANOID ) \
/external/freetype/src/winfonts/
H A Dwinfnt.h153 FT_FaceRec root; member in struct:FNT_FaceRec_
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultiset.java137 long treeAggregate(@Nullable AvlNode<?> root) {
138 return (root == null) ? 0 : root.totalCount;
148 long treeAggregate(@Nullable AvlNode<?> root) {
149 return (root == null) ? 0 : root.distinctElements;
154 abstract long treeAggregate(@Nullable AvlNode<?> root); argument
158 AvlNode<E> root = rootReference.get();
159 long total = aggr.treeAggregate(root);
161 total -= aggregateBelowRange(aggr, root);
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DFilesTest.java364 File file = root();
767 * Returns a root path for the file system.
769 private static File root() { method in class:FilesTest
/external/honggfuzz/
H A Dsancov.c138 static node_t* sancov_trieSearch(node_t* root, const char* key) { argument
139 node_t *pNodeLevel = root, *pNodePtr = NULL;
162 static void sancov_trieAdd(node_t** root, const char* key) { argument
163 if (*root == NULL) {
164 LOG_E("Invalid Trie (NULL root node)");
169 node_t* pTravNode = (*root)->children;
172 for (pTravNode = *root; *key != '\0'; pTravNode = pTravNode->children) {
228 static inline void sancov_trieCreate(node_t** root) { argument
229 /* Create root node if new Trie */
230 *root
234 sancov_trieDestroy(node_t* root) argument
[all...]
/external/icu/icu4c/source/common/
H A Dstringtriebuilder.cpp74 Node *root=makeNode(0, elementsLength, 0, errorCode); local
76 root->markRightEdgesFirst(-1);
77 root->write(*this);
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditransformtst.c54 void addBidiTransformTest(TestNode** root);
430 addBidiTransformTest(TestNode** root) argument
432 addTest(root, testAutoDirection, "complex/bidi-transform/TestAutoDirection");
433 addTest(root, testAllTransformOptions, "complex/bidi-transform/TestAllTransformOptions");
H A Dcdateintervalformattest.c23 void addDateIntervalFormatTest(TestNode** root);
25 #define TESTCASE(x) addTest(root, &x, "tsformat/cdateintervalformattest/" #x)
27 void addDateIntervalFormatTest(TestNode** root) argument
H A Dcintltst.c18 /*The main root for C API tests*/
86 TestNode *root; local
210 root = NULL;
211 addAllTests(&root);
214 nerrors = runTestRequest(root, argc, argv);
220 cleanUpTestTree(root);
H A Dcmsgtst.c1178 void addMsgForTest(TestNode** root);
1180 void addMsgForTest(TestNode** root) argument
1182 addTest(root, &OpenMessageFormatTest, "tsformat/cmsgtst/OpenMessageFormatTest");
1183 addTest(root, &MessageFormatTest, "tsformat/cmsgtst/MessageFormatTest");
1184 addTest(root, &TestSampleMessageFormat, "tsformat/cmsgtst/TestSampleMessageFormat");
1185 addTest(root, &TestSampleFormatAndParse, "tsformat/cmsgtst/TestSampleFormatAndParse");
1186 addTest(root, &TestSampleFormatAndParseWithError, "tsformat/cmsgtst/TestSampleFormatAndParseWithError");
1187 addTest(root, &TestNewFormatAndParseAPI, "tsformat/cmsgtst/TestNewFormatAndParseAPI");
1188 addTest(root, &TestMsgFormatChoice, "tsformat/cmsgtst/TestMsgFormatChoice");
1189 addTest(root,
[all...]
H A Dcstrcase.c47 /* lowercase with root locale and separate buffers */
59 log_err("error in u_strToLower(root locale)=%ld error=%s string matches: %s\t\nlowerRoot=%s\t\nbuffer=%s\n",
99 log_err("error in u_strToLower(root locale preflighting)=%ld error=%s string matches: %s\n",
112 log_err("error in u_strToLower(root locale dest=NULL)=%ld error=%s\n",
126 log_err("error in u_strToLower(root locale destCapacity=-1)=%ld error=%s buffer[0]==0x%lx\n",
145 /* uppercase with root locale and in the same buffer */
157 log_err("error in u_strToUpper(root locale)=%ld error=%s string matches: %s\n",
367 log_err("error in u_strToTitle(UBRK_CHARACTERS)=%ld error=%s root locale string matches: %s\noutput buffer is {%s}\n",
1040 void addCaseTest(TestNode** root);
1042 void addCaseTest(TestNode** root) { argument
[all...]

Completed in 1113 milliseconds

<<21222324252627282930>>