Searched defs:child (Results 26 - 50 of 534) sorted by relevance

1234567891011>>

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
H A DLocaleUtility.java48 * return true if parent is a 'strict' fallback of child, that is,
49 * if child =~ "^parent(_.+)*" (roughly).
51 public static boolean isFallbackOf(String parent, String child) { argument
52 if (!child.startsWith(parent)) {
56 return (i == child.length() ||
57 child.charAt(i) == '_');
62 * 'strict' fallback of the child (parent string is a fallback
63 * of child string).
65 public static boolean isFallbackOf(Locale parent, Locale child) { argument
66 return isFallbackOf(parent.toString(), child
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DLocaleUtility.java48 * return true if parent is a 'strict' fallback of child, that is,
49 * if child =~ "^parent(_.+)*" (roughly).
51 public static boolean isFallbackOf(String parent, String child) { argument
52 if (!child.startsWith(parent)) {
56 return (i == child.length() ||
57 child.charAt(i) == '_');
62 * 'strict' fallback of the child (parent string is a fallback
63 * of child string).
65 public static boolean isFallbackOf(Locale parent, Locale child) { argument
66 return isFallbackOf(parent.toString(), child
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java34 void removeChild(@SuppressWarnings("unused") Node child) argument
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
H A DANoopExpression.java34 void removeChild(@SuppressWarnings("unused") Node child) argument
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
H A DACsOpenPosition.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._csOpen_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DADataCommand.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._data_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DADecNumberVariable.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._decNumber_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DADecimalExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
/external/junit/src/org/junit/internal/runners/
H A DErrorReportingRunner.java49 private Description describeCause(Throwable child) { argument
54 private void runCause(Throwable child, RunNotifier notifier) { argument
55 Description description= describeCause(child);
57 notifier.fireTestFailure(new Failure(description, child));
/external/junit/src/org/junit/runner/manipulation/
H A DFilter.java31 public void apply(Object child) throws NoTestsRemainException {
82 * @param child the runner to be filtered by the receiver
85 public void apply(Object child) throws NoTestsRemainException { argument
86 if (!(child instanceof Filterable))
88 Filterable filterable= (Filterable) child;
/external/libcxxabi/test/
H A Dinherited_exception.pass.cpp43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10;
53 child.b2 = 11;
54 child.c = 12;
55 throw static_cast<Base2&>(child);
59 static Child child; local
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp73 /// @param child - The class that may be the subset
75 /// @return - True if child is a subset of parent, false otherwise.
76 static inline bool inheritsFrom(InstructionContext child, argument
79 if (child == parent)
84 return(inheritsFrom(child, IC_64BIT, AdSize64) ||
85 inheritsFrom(child, IC_OPSIZE) ||
86 inheritsFrom(child, IC_ADSIZE) ||
87 inheritsFrom(child, IC_XD) ||
88 inheritsFrom(child, IC_XS));
90 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/external/ltrace/testsuite/ltrace.torture/
H A Dvfork-thread.c22 pid_t child = vfork (); local
23 if (child == 0)
30 puts ("vforked child exiting");
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc_embeddertest.cpp87 FPDF_BOOKMARK child = FPDFBookmark_GetFirstChild(document(), nullptr); local
88 EXPECT_NE(nullptr, child);
89 EXPECT_EQ(34, FPDFBookmark_GetTitle(child, buf, sizeof(buf)));
93 EXPECT_EQ(nullptr, FPDFBookmark_GetFirstChild(document(), child));
95 FPDF_BOOKMARK sibling = FPDFBookmark_GetNextSibling(document(), child);
111 FPDF_BOOKMARK child = FPDFBookmark_Find(document(), title.get()); local
112 EXPECT_NE(nullptr, child);
116 EXPECT_EQ(34, FPDFBookmark_GetTitle(child, buf, sizeof(buf)));
121 EXPECT_EQ(child, FPDFBookmark_GetFirstChild(document(), nullptr));
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DParent1.java20 private Child1 child; field in class:Parent1
31 return child;
34 public void setChild(Child1 child) { argument
35 this.child = child;
/external/v8/test/cctest/
H A Dtest-api-accessors.cc37 // - 'child': FunctionTemplate ~= a specific DOM node type, like a <div />
40 // and expect it to be callable on the child.
61 // Setup child object ( =~ a specific DOM Node, e.g. a <div> ).
64 v8::Local<v8::FunctionTemplate> child = v8::FunctionTemplate::New(isolate); local
65 child->Inherit(parent);
68 child->GetFunction(env.local()).ToLocalChecked())
/external/valgrind/helgrind/tests/
H A Dtc21_pthonce.c69 void* child ( void* argV ) { function
73 printf("child: Hi, I'm thread %d\n", *(int*)argV);
87 r= pthread_create(&threads[i], NULL, child, &id_arg[i]);
H A Dtc24_nonzero_sem.c30 pthread_t child[N_THREADS]; local
35 r= pthread_create( &child[i], NULL, child_fn, sem );
40 r= pthread_join( child[i], NULL );
/external/valgrind/memcheck/tests/
H A Derr_disable4.c78 pthread_t child[NTHREADS]; local
101 r = pthread_create(&child[i], &attr, child_fn_1, NULL);
116 r = pthread_join(child[i], NULL); assert(!r);
128 r = pthread_create(&child[i], &attr, child_fn_2, NULL);
143 r = pthread_join(child[i], NULL); assert(!r);
/external/valgrind/memcheck/tests/solaris/
H A Dspawn.c33 pid_t child; local
34 ret = posix_spawn(&child, EXE_NAME, NULL, NULL, argv_exe, envp);
37 waitpid(child, NULL, 0);
47 ret = posix_spawn(&child, EXE_NAME, &fa, NULL, argv_exe, envp);
50 waitpid(child, NULL, 0);
63 ret = posix_spawn(&child, EXE_NAME, NULL, &spa, argv_exe, envp);
66 waitpid(child, NULL, 0);
80 ret = posix_spawn(&child, EXE_NAME, NULL, NULL, argv_exe, envp);
83 waitpid(child, NULL, 0);
98 ret = posix_spawn(&child, EXE_NAM
[all...]
/external/webrtc/webrtc/base/
H A Dposix.cc46 // Fork intermediate child to daemonize.
94 // Parent. Reap intermediate child.
96 pid_t child = waitpid(pid, &status, 0); local
97 if (child < 0) {
101 if (child != pid) {
103 LOG(LS_ERROR) << "waitpid() chose wrong child???";
107 LOG(LS_ERROR) << "Intermediate child killed uncleanly"; // Probably crashed
H A Dtaskparent.cc45 void TaskParent::AddChild(Task *child) { argument
46 children_->insert(child);
92 void TaskParent::OnChildStopped(Task *child) { argument
93 if (child->HasError())
95 children_->erase(child);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorExsltFunction.java174 boolean ancestorIsOk(ElemTemplateElement child) argument
176 while (child.getParentElem() != null && !(child.getParentElem() instanceof ElemExsltFunction))
178 ElemTemplateElement parent = child.getParentElem();
184 child = parent;
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dtest_case.py26 child = None variable in class:TestCase
62 assert self.child
63 return self.child.host
91 if self.child.debugger: # pragma: no cover
/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer_unittest.cc60 const pid_t child = fork(); local
61 if (child == 0) {
74 context.tid = child;
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));

Completed in 1160 milliseconds

1234567891011>>