/external/chromium_org/third_party/WebKit/ManualTests/ |
flipped-text-rendering.html | 10 <p>WebKit renderer, using CG: <a href="/">Drag me to your leader</a></p> 11 <p>WebKit renderer, using ATSUI because of the अ: <a href="/">Drag me अ to your leader</a></p> 12 <p>Cocoa, because of the א: <a href="/">Drag me א to your leader</a></p>
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_basic_block.cpp | 58 ir_instruction *leader = NULL; local 67 if (!leader) 68 leader = ir; 71 callback(leader, ir, data); 72 leader = NULL; 77 callback(leader, ir, data); 78 leader = NULL; 81 callback(leader, ir, data); 82 leader = NULL; 103 if (leader) { [all...] |
/external/mesa3d/src/glsl/ |
ir_basic_block.cpp | 58 ir_instruction *leader = NULL; local 67 if (!leader) 68 leader = ir; 71 callback(leader, ir, data); 72 leader = NULL; 77 callback(leader, ir, data); 78 leader = NULL; 81 callback(leader, ir, data); 82 leader = NULL; 103 if (leader) { [all...] |
/external/llvm/include/llvm/ADT/ |
EquivalenceClasses.h | 44 /// if (!I->isLeader()) continue; // Ignore non-leader sets. 63 /// "leader pointer" depending on whether the value itself is a leader. A 64 /// "leader pointer" points to the node that is the leader for this element, 65 /// if the node is not a leader. A "end of list pointer" points to the last 67 /// leader is determined by a bit stolen from one of the pointers. 70 mutable const ECValue *Leader, *Next; 75 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} 79 if (Leader->isLeader()) return Leader [all...] |
IntEqClasses.h | 30 /// equivalence class. The class leader is the smallest member and maps to 61 /// findLeader - Compute the leader of a's equivalence class. This is the
|
/external/llvm/lib/Support/ |
IntEqClasses.cpp | 37 // incrementally. The larger leader will eventually be updated, joining the 63 SmallVector<unsigned, 8> Leader; 65 if (EC[i] < Leader.size()) 66 EC[i] = Leader[EC[i]]; 68 Leader.push_back(EC[i] = i);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
DelayQueue.java | 49 * the queue. This variant of the Leader-Follower pattern 52 * the leader, it waits only for the next delay to elapse, but 53 * other threads await indefinitely. The leader thread must 55 * poll(...), unless some other thread becomes leader in the 57 * an element with an earlier expiration time, the leader 59 * waiting thread, but not necessarily the current leader, is 63 private Thread leader = null; field in class:DelayQueue 68 * become leader. 113 leader = null; 188 if (leader != null [all...] |
ScheduledThreadPoolExecutor.java | 812 * queue. This variant of the Leader-Follower pattern 815 * the leader, it waits only for the next delay to elapse, but 816 * other threads await indefinitely. The leader thread must 818 * poll(...), unless some other thread becomes leader in the 820 * task with an earlier expiration time, the leader field is 822 * thread, but not necessarily the current leader, is 826 private Thread leader = null; field in class:ScheduledThreadPoolExecutor.DelayedWorkQueue [all...] |
/frameworks/av/services/audioflinger/ |
SchedulingPolicyService.h | 22 // Request elevated priority for thread tid, whose thread group leader must be pid.
|
/frameworks/base/core/java/android/os/ |
ISchedulingPolicyService.aidl | 29 * The thread group leader of tid must be pid.
|
/bionic/libc/netbsd/nameser/ |
ns_print.c | 465 const char *leader; local 491 leader = "\n\t\t"; 494 leader = " "; 496 T(addstr(leader, strlen(leader), &buf, &buflen)); 511 const char *leader; local 552 leader = "\n\t\t"; 555 leader = " "; 559 T(addstr(leader, strlen(leader), &buf, &buflen)) 589 const char *leader; local [all...] |
/external/chromium_org/third_party/icu/source/test/testdata/ |
LineBreakTest.txt | 89 × 0023 × 2024 ÷ # × [0.3] NUMBER SIGN (AL) × [22.01] ONE DOT LEADER (IN) ÷ [0.3] 90 × 0023 × 0020 ÷ 2024 ÷ # × [0.3] NUMBER SIGN (AL) × [7.01] SPACE (SP) ÷ [18.0] ONE DOT LEADER (IN) ÷ [0.3] 91 × 0023 × 0308 × 2024 ÷ # × [0.3] NUMBER SIGN (AL) × [9.0] COMBINING DIAERESIS (CM) × [22.01] ONE DOT LEADER (IN) ÷ [0.3] 92 × 0023 × 0308 × 0020 ÷ 2024 ÷ # × [0.3] NUMBER SIGN (AL) × [9.0] COMBINING DIAERESIS (CM) × [7.01] SPACE (SP) ÷ [18.0] ONE DOT LEADER (IN) ÷ [0.3] 233 × 2014 ÷ 2024 ÷ # × [0.3] EM DASH (B2) ÷ [999.0] ONE DOT LEADER (IN) ÷ [0.3] 234 × 2014 × 0020 ÷ 2024 ÷ # × [0.3] EM DASH (B2) × [7.01] SPACE (SP) ÷ [18.0] ONE DOT LEADER (IN) ÷ [0.3] 235 × 2014 × 0308 ÷ 2024 ÷ # × [0.3] EM DASH (B2) × [9.0] COMBINING DIAERESIS (CM) ÷ [999.0] ONE DOT LEADER (IN) ÷ [0.3] 236 × 2014 × 0308 × 0020 ÷ 2024 ÷ # × [0.3] EM DASH (B2) × [9.0] COMBINING DIAERESIS (CM) × [7.01] SPACE (SP) ÷ [18.0] ONE DOT LEADER (IN) ÷ [0.3] [all...] |
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.cpp | 114 UserValue *leader; ///< Equivalence class leader. member in class:__anon21755::UserValue 140 : variable(var), offset(o), IsIndirect(i), dl(L), leader(this), 144 /// getLeader - Get the leader of this value's equivalence class. 146 UserValue *l = leader; 147 while (l != l->leader) 148 l = l->leader; 149 return leader = l; 171 End->leader = L1, End = End->next; 172 End->leader = L1 [all...] |
/system/core/include/cutils/ |
sched_policy.h | 38 * If the thread is a thread group leader, that is it's gettid() == getpid(),
|
/external/linux-tools-perf/ |
design.txt | 262 counter group has one counter which is the group "leader". The leader 265 subsequently, with group_fd giving the fd of the group leader. 420 Enabling or disabling the leader of a group enables or disables the 421 whole group; that is, while the group leader is disabled, none of the 423 group other than the leader only affects that counter - disabling an 424 non-leader stops that counter from counting but doesn't affect any
|
/external/antlr/antlr-3.4/runtime/Java/ |
pom.xml | 31 <role>Project Leader</role>
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
browserprocess.py | 79 print 'I\'M THE SESSION LEADER!'
|
/external/chromium_org/tools/vim/ |
ninja-build.vim | 7 " On Linux, <Leader>o, which is \o by default ("o"=creates .o files) 128 map <Leader>o :CrCompileFile<cr>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pty.py | 92 Fork and make the child a session leader with a controlling terminal.""" 103 # os.forkpty() already set us session leader
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pty.py | 92 Fork and make the child a session leader with a controlling terminal.""" 103 # os.forkpty() already set us session leader
|
/system/core/libcutils/ |
strdup8to16.c | 118 /* Mask for leader byte for lengths 1, 2, 3, and 4 respectively*/ 127 /* note we tolerate invalid leader 11111xxx here */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pty.py | 123 # After pty.fork(), the child should already be a session leader. 129 # Good, we already were session leader 180 self.fail("pty.fork() failed to make child a session leader.")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pty.py | 123 # After pty.fork(), the child should already be a session leader. 129 # Good, we already were session leader 180 self.fail("pty.fork() failed to make child a session leader.")
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
utmp.h | 109 #define LOGIN_PROCESS 6 /* Session leader of a logged in user. */
|
utmpx.h | 97 #define LOGIN_PROCESS 6 /* Session leader of a logged in user. */
|