/external/eigen/doc/snippets/ |
Tutorial_AdvancedInitialization_Join.cpp | 9 RowVectorXd joined(7); 10 joined << vec1, vec2; 11 std::cout << "joined = " << joined << std::endl;
|
/art/test/039-join-main/ |
expected.txt | 4 @ JoinMainSub successfully joined main
|
/dalvik/tests/039-join-main/ |
expected.txt | 4 @ JoinMainSub successfully joined main
|
/external/valgrind/main/drd/tests/ |
pth_detached3.c | 20 /* Invoke pthread_detach() with the thread ID of a joined thread. */
|
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
OccupantsInfo.java | 88 // Add the date when the occupant joined the room
89 buf.append("<joined>");
91 buf.append("</joined>");
103 private Date joined;
field in class:OccupantsInfo.OccupantInfo 105 public OccupantInfo(String jid, String nickname, Date joined) {
108 this.joined = joined;
120 return joined;
154 Date joined = null;
local 163 ("joined".equals(parser.getName()))) { [all...] |
/external/clang/test/Driver/ |
parsing.c | 7 // RUN: grep 'Option 5 - Name: "-d", Values: {"joined"}' %t 9 // RUN: grep 'Option 7 - Name: "-A", Values: {"joined"}' %t 11 // RUN: grep 'Option 9 - Name: "-Xarch_", Values: {"joined", "AndSeparate"}' %t
|
/external/valgrind/main/helgrind/tests/ |
tc02_simple_tls.c | 7 has modified it and then joined with the parent. Tests simple
|
tc03_re_excl.c | 7 has modified it and then joined with the parent. Tests simple
|
/external/clang/include/clang/Driver/ |
Options.td | 124 def driver_mode : Joined<["--"], "driver-mode=">, Group<internal_driver_Group>, 176 def ccc_ : Joined<["-"], "ccc-">, Group<internal_Group>, Flags<[Unsupported]>; 192 def G_EQ : Joined<["-"], "G=">, Flags<[DriverOption]>; 219 def O : Joined<["-"], "O">, Group<O_Group>, Flags<[CC1Option]>; 221 def Ofast : Joined<["-"], "Ofast">, Group<O_Group>, Flags<[CC1Option]>; 247 def Wno_nonportable_cfstrings : Joined<["-"], "Wno-nonportable-cfstrings">, Group<W_Group>, 249 def Wnonportable_cfstrings : Joined<["-"], "Wnonportable-cfstrings">, Group<W_Group>, 256 def W_Joined : Joined<["-"], "W">, Group<W_Group>, Flags<[CC1Option]>, 271 def X_Joined : Joined<["-"], "X">; 273 def Z_Joined : Joined<["-"], "Z"> [all...] |
/external/llvm/unittests/Option/ |
Opts.td | 8 def B : Joined<["-"], "B">, HelpText<"The B option">, MetaVarName<"B">, Flags<[OptFlag2]>; 16 def Ceq : Joined<["-", "--"], "C=">, Alias<C>, Flags<[OptFlag1]>;
|
/external/guava/guava-tests/test/com/google/common/io/ |
MultiInputStreamTest.java | 78 InputSupplier<InputStream> joined = ByteStreams.join(suppliers); local 79 assertTrue(ByteStreams.equal(newByteSupplier(0, start), joined)); 85 InputSupplier<InputStream> joined = ByteStreams.join(supplier, supplier); local 86 assertEquals(20, ByteStreams.length(joined)); 87 InputStream in = joined.getInput();
|
/external/llvm/include/llvm/Option/ |
OptParser.td | 34 def KIND_JOINED : OptionKind<"Joined", 1>; 41 // An option which is either joined to its (non-empty) value, or followed by its 44 // An option which is both joined to its (first) value, and followed by its 61 // RenderJoined - The option should be rendered joined, even if separate (only 65 // RenderSeparate - The option should be rendered separately, even if joined 66 // (only sensible on joined options). 99 class Joined<list<string> prefixes, string name>
|
/dalvik/tests/039-join-main/src/ |
Main.java | 33 System.out.print("@ JoinMainSub successfully joined main\n");
|
/bionic/libc/bionic/ |
pthread_internal.h | 74 /* Has the thread been joined by another thread? */ 77 /* Has the thread already exited but not been joined? */
|
/external/smack/src/org/jivesoftware/smackx/ |
NodeInformationProvider.java | 44 * answer an Item for each joined room when asked for the rooms where the use has joined.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 43 # "collapse" joined lines 47 # "collapse" joined lines
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 43 # "collapse" joined lines 47 # "collapse" joined lines
|
/art/test/039-join-main/src/ |
Main.java | 47 System.out.print("@ JoinMainSub successfully joined main\n");
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_toolbar_view.h | 31 // background image is joined.
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_toolbar_view.h | 27 // background image is joined.
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-tibetan.c | 33 first sub-joined consonant 34 ....intermediate sub-joined consonants (if any) 35 last sub-joined consonant 36 sub-joined vowel (a-chung U+0F71)
|
/external/smack/src/org/jivesoftware/smackx/muc/ |
DefaultParticipantStatusListener.java | 34 public void joined(String participant) { method in class:DefaultParticipantStatusListener
|
/external/smack/src/org/jivesoftware/smackx/workgroup/user/ |
QueueListener.java | 31 * The user joined the workgroup queue.
|
/external/valgrind/main/none/tests/ |
pth_once.c | 77 //printf("main: joined to thread %d\n", thread_num);
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ThreadingPthreads.cpp | 66 Joinable, // The default thread state. The thread can be joined on. 68 Joined, // Somebody waited on this thread to exit and this thread finally exited. This state is here because there can be a 73 Detached // The thread has been detached and can no longer be joined on. At this point, the thread must take care of cleaning up after itself. 88 void didJoin() { m_joinableState = Joined; } 228 WTF_LOG_ERROR("ThreadIdentifier %u was unable to be joined.\n", threadID); 238 // The thread hasn't exited yet, so don't clean anything up. Just signal that we've already joined on it so that it will clean up after itself.
|