/external/chromium_org/third_party/sqlite/src/ |
mkopcodeh.awk | 46 op[name] = -1 58 op[name] = tk[sym] 59 used[op[name]] = 1 60 sameas[op[name]] = sym 89 op["OP_Noop"] = -1; 91 op["OP_Explain"] = -1; 95 if( op[name]<0 ){ 98 op[name] = cnt 100 used[op[name]] = 1; 101 if( op[name]>max ) max = op[name [all...] |
/external/pixman/pixman/ |
pixman-mips-dspr2.h | 251 #define PIXMAN_MIPS_BIND_SCALED_NEAREST_SRC_DST(name, op, \ 254 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips ( \ 262 scaled_nearest_scanline_mips_##name##_##op (dst_type * pd, \ 270 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips (pd, ps, w, \ 274 FAST_NEAREST_MAINLOOP (mips_##name##_cover_##op, \ 275 scaled_nearest_scanline_mips_##name##_##op, \ 277 FAST_NEAREST_MAINLOOP (mips_##name##_none_##op, \ 278 scaled_nearest_scanline_mips_##name##_##op, \ 280 FAST_NEAREST_MAINLOOP (mips_##name##_pad_##op, \ 281 scaled_nearest_scanline_mips_##name##_##op, \ [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
dictobject.h | 99 #define PyDict_Check(op) \ 100 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS) 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) 102 #define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) 103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) 104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type [all...] |
complexobject.h | 47 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type) 48 #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type) 53 PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op); variable 54 PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op); variable 55 PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op); variable
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
dictobject.h | 99 #define PyDict_Check(op) \ 100 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS) 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) 102 #define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) 103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) 104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type [all...] |
complexobject.h | 47 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type) 48 #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type) 53 PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op); variable 54 PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op); variable 55 PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op); variable
|
/external/chromium/chrome/browser/chromeos/login/ |
cryptohome_op_unittest.cc | 111 void RunTest(CryptohomeOp* op, bool outcome, int code) { 118 EXPECT_TRUE(op->Initiate()); 140 scoped_refptr<CryptohomeOp> op( 142 RunTest(op.get(), true, kCryptohomeMountErrorNone); 147 scoped_refptr<CryptohomeOp> op( 149 RunTest(op.get(), false, kCryptohomeMountErrorFatal); 154 scoped_refptr<CryptohomeOp> op( 156 RunTest(op.get(), false, kCryptohomeMountErrorKeyFailure); 161 scoped_refptr<CryptohomeOp> op( 163 RunTest(op.get(), true, kCryptohomeMountErrorRecreated) [all...] |
/external/chromium/chrome/browser/tab_contents/ |
web_drag_utils_win.cc | 39 DWORD WebDragOpToWinDragOp(WebDragOperation op) { 40 DCHECK(op == WebDragOperationNone || 41 op == WebDragOperationCopy || 42 op == WebDragOperationLink || 43 op == WebDragOperationMove || 44 op == (WebDragOperationMove | WebDragOperationGeneric)); 46 return WebDragOpMaskToWinDragOpMask(op);
|
/external/chromium_org/content/browser/web_contents/ |
web_drag_utils_win.cc | 39 DWORD WebDragOpToWinDragOp(WebDragOperation op) { 40 DCHECK(op == WebDragOperationNone || 41 op == WebDragOperationCopy || 42 op == WebDragOperationLink || 43 op == WebDragOperationMove || 44 op == (WebDragOperationMove | WebDragOperationGeneric)); 46 return WebDragOpMaskToWinDragOpMask(op);
|
drag_utils_gtk.h | 18 blink::WebDragOperationsMask op);
|
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/ |
UncachedOggStream.java | 76 OggPage op = OggPage.create(sourceStream);
local 77 if (!op.isBos()){
80 if (op.isEos()){
82 lastPage = op;
85 LogicalOggStreamImpl los = (LogicalOggStreamImpl) getLogicalStream(op.getStreamSerialNumber());
87 los = new LogicalOggStreamImpl(this, op.getStreamSerialNumber());
88 logicalStreams.put(op.getStreamSerialNumber(), los);
89 los.checkFormat(op);
92 pageCache.add(op);
|
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
operation_unittest.cc | 28 scoped_refptr<Operation> op(new DummyOperation(manager.AsWeakPtr(), 32 EXPECT_EQ(0, op->GetProgress()); 33 EXPECT_EQ(image_writer_api::STAGE_UNKNOWN, op->GetStage());
|
/frameworks/base/libs/hwui/ |
DeferredDisplayList.h | 56 // global op bounds, mapped by mMatrix to be in screen space coordinates, clipped 72 : op(NULL), state(NULL) {} 74 : op(newOp), state(newState) {} 76 : op(other.op), state(other.state) {} 77 DrawOp* op; member in class:android::uirenderer::OpStatePair 111 void addClip(OpenGLRenderer& renderer, ClipOp* op); 112 void addSaveLayer(OpenGLRenderer& renderer, SaveLayerOp* op, int newSaveCount); 113 void addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount); 114 void addRestoreToCount(OpenGLRenderer& renderer, StateOp* op, int newSaveCount) [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/ |
FrameBuffer.h | 7 #define checkGlError(op) checkGLErrorDetail(__FILE__, __LINE__, (op)) 9 extern bool checkGLErrorDetail(const char* file, int line, const char* op);
|
/packages/apps/Camera2/jni/feature_mos/src/mosaic_renderer/ |
FrameBuffer.h | 7 #define checkGlError(op) checkGLErrorDetail(__FILE__, __LINE__, (op)) 9 extern bool checkGLErrorDetail(const char* file, int line, const char* op);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
msr.h | 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx, 82 : "0" (op)); 86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx, 94 : "0" (op), "c" (count)); 100 static __inline__ unsigned int cpuid_eax(unsigned int op) 106 : "0" (op) 110 static __inline__ unsigned int cpuid_ebx(unsigned int op) 116 : "0" (op) 120 static __inline__ unsigned int cpuid_ecx(unsigned int op) 126 : "0" (op) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
msr.h | 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx, 82 : "0" (op)); 86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx, 94 : "0" (op), "c" (count)); 100 static __inline__ unsigned int cpuid_eax(unsigned int op) 106 : "0" (op) 110 static __inline__ unsigned int cpuid_ebx(unsigned int op) 116 : "0" (op) 120 static __inline__ unsigned int cpuid_ecx(unsigned int op) 126 : "0" (op) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
msr.h | 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx, 82 : "0" (op)); 86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx, 94 : "0" (op), "c" (count)); 100 static __inline__ unsigned int cpuid_eax(unsigned int op) 106 : "0" (op) 110 static __inline__ unsigned int cpuid_ebx(unsigned int op) 116 : "0" (op) 120 static __inline__ unsigned int cpuid_ecx(unsigned int op) 126 : "0" (op) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sre_compile.py | 41 for op, av in pattern: 42 if op in LITERAL_CODES: 44 emit(OPCODES[OP_IGNORE[op]]) 47 emit(OPCODES[op]) 49 elif op is IN: 51 emit(OPCODES[OP_IGNORE[op]]) 55 emit(OPCODES[op]) 60 elif op is ANY: 65 elif op in REPEATING_CODES: 75 elif _simple(av) and op is not REPEAT [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sre_compile.py | 41 for op, av in pattern: 42 if op in LITERAL_CODES: 44 emit(OPCODES[OP_IGNORE[op]]) 47 emit(OPCODES[op]) 49 elif op is IN: 51 emit(OPCODES[OP_IGNORE[op]]) 55 emit(OPCODES[op]) 60 elif op is ANY: 65 elif op in REPEATING_CODES: 75 elif _simple(av) and op is not REPEAT [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/ |
x86id.c | 407 yasm_insn_operand *op = yasm_insn_ops_first(&id_insn->insn); local 408 while (op) { 409 op->type = YASM_INSN__OPERAND_REG; 410 op = yasm_insn_op_next(op); 422 yasm_insn_operand *op; local 429 op = yasm_insn_ops_first(&id_insn->insn); 431 if (op->type == YASM_INSN__OPERAND_IMM && op->seg) { 433 if (yasm_value_finalize_expr(&jmpfar->segment, op->seg, prev_bc, 16) 509 yasm_insn_operand *op; local 638 yasm_insn_operand *op, **use_ops; local 1069 yasm_insn_operand *op, *ops[5], *rev_ops[5]; local [all...] |
/external/skia/gm/ |
simpleaaclip.cpp | 70 void buildRgn(SkAAClip* clip, SkRegion::Op op) { 75 clip->op(clip2, op); 88 void drawRgnOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { 92 this->buildRgn(&clip, op); 100 void drawPathsOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { 106 // create the clip mask with the supplied boolean op [all...] |
/frameworks/base/core/java/android/app/ |
AppOpsManager.java | 97 // - add the op to the appropriate template in AppOpsState.OpsTemplate (settings app) 544 * Retrieve the op switch that controls the given operation. 547 public static int opToSwitch(int op) { 548 return sOpToSwitch[op]; 555 public static String opToName(int op) { 556 if (op == OP_NONE) return "NONE"; 557 return op < sOpNames.length ? sOpNames[op] : ("Unknown(" + op + ")"); 564 public static String opToPermission(int op) { 1127 mService.finishOperation(getToken(mService), op, uid, packageName); local [all...] |
/dalvik/vm/mterp/mips/ |
unop.S | 4 * specifies an instruction that performs "result = op a0". 15 $preinstr # optional op 16 $instr # a0 <- op, a0-a3 changed
|
/external/chromium_org/third_party/angle/src/compiler/ |
BuiltInFunctionEmulator.h | 25 // becomes an no-op. 28 bool SetFunctionCalled(TOperator op, const TType& param); 30 TOperator op, const TType& param1, const TType& param2); 81 TBuiltInFunction IdentifyFunction(TOperator op, const TType& param); 83 TOperator op, const TType& param1, const TType& param2);
|