/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
breakpointsList.css | 31 display: block; 39 display: block;
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/ |
onebar.css | 77 display: inline-block; 94 display: block;
|
/external/chromium_org/third_party/openssl/openssl/crypto/modes/ |
ctr128.c | 103 * 128bit block we have used is contained in *num, and the 117 unsigned int *num, block128_f block) 140 (*block)(ivec, ecount_buf, key); 151 (*block)(ivec, ecount_buf, key); 165 (*block)(ivec, ecount_buf, key);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrMemoryPool.h | 51 static void DeleteBlock(BlockHeader* block); 59 ///< block. 62 size_t fFreeSize; ///< amount of free space left in the block.
|
/external/chromium_org/tools/gn/ |
function_toolchain.cc | 45 BlockNode* block, 65 block->ExecuteBlockInScope(&block_scope, err); 95 BlockNode* block, 117 // Run the tool block. 119 block->ExecuteBlockInScope(&block_scope, err);
|
/external/chromium_org/ui/webui/resources/css/ |
menu.css | 26 display: block; 72 display: inline-block;
|
/external/clang/test/Analysis/ |
templates.cpp | 6 // Do not crash on this templated code which uses a block. 8 static void useBlock(my_block block){}
|
unix-fns.c | 39 void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block); 40 void dispatch_sync(dispatch_queue_t queue, dispatch_block_t block); 175 static inline void _dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) 177 dispatch_once(predicate, block); [all...] |
/external/clang/test/CodeGenCXX/ |
blocks-cxx11.cpp | 87 void takeBlock(void (^block)()); 104 // CHECK: [[BLOCK:%.*]] = alloca [[BLOCK_T:<{.*}>]], align 8 106 // CHECK: [[TO_DESTROY:%.*]] = getelementptr inbounds [[BLOCK_T]]* [[BLOCK]], i32 0, i32 5 107 // CHECK: [[T0:%.*]] = getelementptr inbounds [[BLOCK_T]]* [[BLOCK]], i32 0, i32 5 110 // CHECK-NEXT: [[T0:%.*]] = bitcast [[BLOCK_T]]* [[BLOCK]] to void ()*
|
mangle-ms-template-callback.cpp | 49 // Block equivalent to the previous definitions. 51 void block(C<void(^)(void)>) {} function 52 // CHECK: "\01?block@@YAXV?$C@P_EAXXZ@@@Z"
|
/external/clang/test/Preprocessor/ |
traditional-cpp.c | 78 a b c in skipped block 84 /* CHECK-NOT: {{^}}a b c in skipped block{{$}}
|
/external/clang/test/Sema/ |
block-literal.c | 58 void myfunc(int (^block)(int)) {}
|
/external/clang/test/SemaCXX/ |
blocks-1.cpp | 55 void (^block)() = ^{
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
DeadCodeRemover.java | 36 * block to entry block. 130 * Removes all instructions from every unreachable block. 137 for (SsaBasicBlock block : ssaMeth.getBlocks()) { 138 if (block.isReachable()) continue; 141 for (int i = 0; i < block.getInsns().size(); i++) { 142 SsaInsn insn = block.getInsns().get(i); 214 * if the insn is null for reasons stated in the code block.
|
LocalVariableExtractor.java | 39 /** {@code non-null;} block list for the method */ 99 * Processes a single block. 101 * @param blockIndex {@code >= 0;} block index of the block to process 106 SsaBasicBlock block = blocks.get(blockIndex); local 107 List<SsaInsn> insns = block.getInsns(); 110 // The exit block has no insns and no successors 191 * where the start state for a block changes). 194 IntList successors = block.getSuccessorList(); 196 int primarySuccessor = block.getPrimarySuccessorIndex() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
RegisterAllocator.java | 128 * last insn in a block. 131 * be last insn in block 137 SsaBasicBlock block = insn.getBlock(); local 138 ArrayList<SsaInsn> insns = block.getInsns(); 143 "specified insn is not in this block"); 167 RegisterSpecList.make(reg)), block); 175 * block and what's used by the final instruction. 178 IntSet liveOut = block.getLiveOutRegs();
|
/external/eigen/Eigen/src/Geometry/ |
Umeyama.h | 146 Rt.block(0,0,m,m).noalias() = svd.matrixU()*svd.matrixV().transpose(); 149 Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.matrixV().transpose(); 153 Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.matrixV().transpose(); 165 if (with_scaling) Rt.block(0,0,m,m) *= c;
|
/external/eigen/doc/snippets/ |
class_FullPivLU.cpp | 10 l.block<5,3>(0,0).triangularView<StrictlyLower>() = lu.matrixLU();
|
/external/eigen/test/eigen2/ |
eigen2_linearstructure.cpp | 65 // use .block to disable vectorization and compare to the vectorized version 66 VERIFY_IS_APPROX(m1+m1.block(0,0,rows,cols), m1+m1); 67 VERIFY_IS_APPROX(m1.cwise() * m1.block(0,0,rows,cols), m1.cwise() * m1); 68 VERIFY_IS_APPROX(m1 - m1.block(0,0,rows,cols), m1 - m1); 69 VERIFY_IS_APPROX(m1.block(0,0,rows,cols) * s1, m1 * s1);
|
/external/eigen/test/ |
linearstructure.cpp | 63 // use .block to disable vectorization and compare to the vectorized version 64 VERIFY_IS_APPROX(m1+m1.block(0,0,rows,cols), m1+m1); 65 VERIFY_IS_APPROX(m1.cwiseProduct(m1.block(0,0,rows,cols)), m1.cwiseProduct(m1)); 66 VERIFY_IS_APPROX(m1 - m1.block(0,0,rows,cols), m1 - m1); 67 VERIFY_IS_APPROX(m1.block(0,0,rows,cols) * s1, m1 * s1);
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixFunction.h | 28 * computation of the matrix function on every block corresponding to these clusters to an object of type 30 * \p AtomicType should have a \p compute() member function for computing the matrix function of a block. 157 Block<MatrixType> block(MatrixType& A, Index i, Index j); 169 DynamicIntVectorType m_blockStart; /**< \brief Row index at which block corresponding to i-th cluster starts */ 359 /** \brief Compute block diagonal part of #m_fT. 361 * This routine computes the matrix function applied to the block diagonal part of #m_T, with the blocking 362 * given by #m_blockStart. The matrix function of each diagonal block is computed by #m_atomic. The 371 block(m_fT, i, i) = m_atomic.compute(block(m_T, i, i)) 377 Block<MatrixType> MatrixFunction<MatrixType,AtomicType,1>::block(MatrixType& A, Index i, Index j) function in class:Eigen::MatrixFunction [all...] |
/external/grub/stage2/ |
fsys_ffs.c | 186 int block, off, loc, map, ino = ROOTINO; local 253 block = lblkno (SUPERBLOCK, loc); 255 if ((map = block_map (block)) < 0 257 blksize (SUPERBLOCK, INODE, block),
|
fsys_ufs2.c | 210 int block, off, loc, ino = ROOTINO; local 274 block = lblkno (SUPERBLOCK, loc); 276 if ((map = block_map (block)) < 0 278 blksize (SUPERBLOCK, INODE_UFS2, block),
|
/external/kernel-headers/original/linux/mtd/ |
nftl.h | 16 #define BLOCK_NIL 0xffff /* last block of a chain */ 17 #define BLOCK_FREE 0xfffe /* free block */ 18 #define BLOCK_NOTEXPLORED 0xfffd /* non explored block, only used during mounting */ 19 #define BLOCK_RESERVED 0xfffc /* bios block or bad block */ 44 int NFTL_formatblock(struct NFTLrecord *s, int block);
|
/external/libsepol/src/ |
avrule_block.c | 3 * Functions that manipulate a logical block (conditional, optional, 31 * block than the global policy. Thus the symbol table sizes are 46 avrule_block_t *block; local 47 if ((block = calloc(1, sizeof(*block))) == NULL) { 50 return block; 151 * marked as SCOPE_DECL, and any of its declaring block has been enabled,
|