HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 926 - 950 of 5153) sorted by null

<<31323334353637383940>>

  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_setuptools_nspkg.py 122 node = self.mf.findNode('nspkg')
123 self.assertIsInstance(node, modulegraph.NamespacePackage)
124 self.assertEqual(node.identifier, 'nspkg')
125 self.assertEqual(node.filename, '-')
130 node = self.mf.findNode('nspkg.module')
131 self.assertIsInstance(node, modulegraph.SourceModule)
132 self.assertEqual(node.identifier, 'nspkg.module')
137 node = self.mf.findNode('nspkg.nssubpkg.sub')
138 self.assertIsInstance(node, modulegraph.SourceModule)
139 self.assertEqual(node.identifier, 'nspkg.nssubpkg.sub'
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/actions/accessibility/
AccessibilityScrollAction.java 44 protected boolean perform(AccessibilityNodeInfo node, UiElement element) {
52 return node.performAction(AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD);
55 return node.performAction(AccessibilityNodeInfo.ACTION_SCROLL_FORWARD);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
HidePublicClasses.java 38 protected boolean mustTag(AbstractTypeDeclaration node) {
40 if ((node.getModifiers() & Modifier.PUBLIC) > 0) {
43 if (whitelistedType.matches(node)) {
  /external/libchrome/base/json/
json_writer.cc 28 bool JSONWriter::Write(const Value& node, std::string* json) {
29 return WriteWithOptions(node, 0, json);
33 bool JSONWriter::WriteWithOptions(const Value& node,
41 bool result = writer.BuildJSONString(node, 0U);
58 bool JSONWriter::BuildJSONString(const Value& node, size_t depth) {
59 switch (node.GetType()) {
67 bool result = node.GetAsBoolean(&value);
75 bool result = node.GetAsInteger(&value);
83 bool result = node.GetAsDouble(&value);
115 bool result = node.GetAsString(&value)
    [all...]
  /external/libweave/third_party/chromium/base/json/
json_writer.cc 28 bool JSONWriter::Write(const Value& node, std::string* json) {
29 return WriteWithOptions(node, 0, json);
33 bool JSONWriter::WriteWithOptions(const Value& node,
41 bool result = writer.BuildJSONString(node, 0U);
58 bool JSONWriter::BuildJSONString(const Value& node, size_t depth) {
59 switch (node.GetType()) {
67 bool result = node.GetAsBoolean(&value);
75 bool result = node.GetAsInteger(&value);
83 bool result = node.GetAsDouble(&value);
115 bool result = node.GetAsString(&value)
    [all...]
  /external/regex-re2/re2/
prefilter_tree.h 59 // Each unique node has a corresponding Entry that helps in
63 // How many children should match before this node triggers the
64 // parent. For an atom and an OR node, this is 1 and for an AND
65 // node, it is the number of unique children.
68 // When this node is ready to trigger the parent, what are the indices
76 // When this node is ready to trigger the parent, what are the
91 // Returns the prefilter node that has the same NodeString as this
92 // node. For the canonical node, returns node
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
output.py 51 for node, depth in refpolicy.walktree(self.module, showdepth=True):
52 fd.write("%s\n" % str(node))
114 def sort_node(node):
118 for mod in node.module_declarations():
123 for require in node.requires():
132 rules.extend(node.avrules())
133 rules.extend(node.interface_calls())
157 ras.extend(node.role_types())
168 for child in node.children:
172 node.children =
    [all...]
  /external/v8/src/ast/
ast-literal-reindexer.h 22 #define DEFINE_VISIT(type) void Visit##type(type* node) override;
35 void Visit(AstNode* node) override { node->Accept(this); }
  /external/v8/src/compiler/
js-inlining.h 32 Reduction Reduce(Node* node) final;
36 Reduction ReduceJSCall(Node* node, Handle<JSFunction> function);
43 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state,
48 Reduction InlineCall(Node* call, Node* new_target, Node* context
    [all...]
simplified-operator-reducer.h 25 Reduction Reduce(Node* node) final;
28 Reduction ReduceReferenceEqual(Node* node);
30 Reduction Change(Node* node, const Operator* op, Node* a);
  /external/valgrind/include/
pub_tool_hashtable.h 63 /* Add a node to the table. Duplicate keys are permitted. */
64 extern void VG_(HT_add_node) ( VgHashTable *t, void* node );
84 * when comparing the rest of the node, if the node data contains holes
85 between components, either the node memory should be fully initialised
91 extern void* VG_(HT_gen_lookup) ( const VgHashTable *table, const void* node,
93 extern void* VG_(HT_gen_remove) ( VgHashTable *table, const void* node,
  /external/vboot_reference/host/lib21/
host_misc.c 131 guid->uuid.node[0] = chunk[5] & 0xff;
132 guid->uuid.node[1] = chunk[6] & 0xff;
133 guid->uuid.node[2] = chunk[7] & 0xff;
134 guid->uuid.node[3] = chunk[8] & 0xff;
135 guid->uuid.node[4] = chunk[9] & 0xff;
136 guid->uuid.node[5] = chunk[10] & 0xff;
156 guid->uuid.node[0], guid->uuid.node[1],
157 guid->uuid.node[2], guid->uuid.node[3]
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/commands/
ClientCertInfo.java 64 for (XMLNode node : commandNode.getChildren()) {
65 if (node.getStrippedTag().equals("providerIssuerName")) {
66 mIssuerNames.add(node.getAttributeValue("name"));
  /hardware/libhardware/modules/input/evdev/
InputDeviceManager.h 43 virtual void onInputEvent(const std::shared_ptr<InputDeviceNode>& node, InputEvent& event,
45 virtual void onDeviceAdded(const std::shared_ptr<InputDeviceNode>& node) override;
46 virtual void onDeviceRemoved(const std::shared_ptr<InputDeviceNode>& node) override;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
FilePreferencesImplTest.java 38 uroot = factory.userRoot().node("harmony_test");
39 sroot = factory.systemRoot().node("harmony_test");
75 Preferences child1 = uroot.node("child1");
76 Preferences child2 = uroot.node("\u4e2d child2");
77 Preferences grandchild = child1.node("grand");
97 child1 = sroot.node("child1");
98 child2 = sroot.node("child2");
101 Preferences grandchild2 = child1.node("grand");
111 assertNotSame(child1, sroot.node("child1"));
112 assertSame(sroot.node("child1"), sroot.node("child1"))
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
weighting.cpp 30 static inline void profile(const CorrectionType correctionType, DicNode *const node) {
34 PROF_OMISSION(node->mProfiler);
37 PROF_ADDITIONAL_PROXIMITY(node->mProfiler);
40 PROF_SUBSTITUTION(node->mProfiler);
43 PROF_NEW_WORD(node->mProfiler);
46 PROF_MATCH(node->mProfiler);
49 PROF_COMPLETION(node->mProfiler);
52 PROF_TERMINAL(node->mProfiler);
55 PROF_TERMINAL_INSERTION(node->mProfiler);
58 PROF_SPACE_SUBSTITUTION(node->mProfiler)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
output.py 51 for node, depth in refpolicy.walktree(self.module, showdepth=True):
52 fd.write("%s\n" % str(node))
114 def sort_node(node):
118 for mod in node.module_declarations():
123 for require in node.requires():
132 rules.extend(node.avrules())
133 rules.extend(node.interface_calls())
157 ras.extend(node.role_types())
168 for child in node.children:
172 node.children =
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
FragmentRule.java 31 public void onCreate(@NonNull INode node, @NonNull INode parent,
37 node.editXml("Add Fragment",
42 parent.removeChild(node);
IncludeRule.java 30 public void onCreate(@NonNull INode node, @NonNull INode parent,
36 node.editXml("Include Layout",
42 parent.removeChild(node);
ListViewRule.java 36 public void onCreate(@NonNull INode node, @NonNull INode parent,
38 super.onCreate(node, parent, insertType);
40 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, getFillParentValueName());
SeekBarRule.java 33 public void onCreate(@NonNull INode node, @NonNull INode parent,
35 super.onCreate(node, parent, insertType);
39 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, getFillParentValueName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 40 import org.w3c.dom.Node;
51 Node node = uiNode.getXmlNode(); local
53 assertNull(LayoutMetadata.getProperty(node, "foo"));
55 Element element = (Element) node;
67 private static String getText(IDocument document, Node node) throws Exception {
68 IndexedRegion region = (IndexedRegion) node;
85 UiElementNode node = findById(root, targetId); local
86 assertNotNull(node);
    [all...]
  /prebuilts/devtools/tools/lib/
lombok-ast-0.2.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 

Completed in 479 milliseconds

<<31323334353637383940>>