HomeSort by relevance Sort by last modified time
    Searched full:sourceoffset (Results 1 - 16 of 16) sorted by null

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetShaderSource.java 9 int sourceOffset
glGetShaderSource.cpp 4 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) {
38 if (sourceOffset < 0) {
41 _exceptionMessage = "sourceOffset < 0";
44 _sourceRemaining = _env->GetArrayLength(source_ref) - sourceOffset;
47 source = source_base + sourceOffset;
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 206 CodeBlock(ScriptExecutable* ownerExecutable, CodeType, JSGlobalObject*, PassRefPtr<SourceProvider>, unsigned sourceOffset, SymbolTable* symbolTable, bool isConstructor);
333 unsigned sourceOffset() const { return m_sourceOffset; }
570 GlobalCodeBlock(ScriptExecutable* ownerExecutable, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset)
571 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, &m_unsharedSymbolTable, false)
616 FunctionCodeBlock(FunctionExecutable* ownerExecutable, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, bool isConstructor)
617 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, SharedSymbolTable::create().leakRef(), isConstructor)
CodeBlock.cpp     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
ByteStringMicro.java 134 * @param sourceOffset offset within these bytes
138 public void copyTo(final byte[] target, final int sourceOffset,
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
  /libcore/luni/src/main/native/
libcore_icu_NativeConverter.cpp 119 jint* sourceOffset = &myData[0];
121 const jchar* mySource = uSource.get() + *sourceOffset;
127 *sourceOffset = (mySource - uSource.get()) - *sourceOffset;
174 jint* sourceOffset = &myData[0];
176 const char* mySource = reinterpret_cast<const char*>(uSource.get() + *sourceOffset);
182 *sourceOffset = mySource - reinterpret_cast<const char*>(uSource.get()) - *sourceOffset;
  /external/icu4c/i18n/
msgfmt.cpp     [all...]
choicfmt.cpp 553 const UnicodeString &source, int32_t sourceOffset) {
562 if (length != 0 && 0 != source.compare(sourceOffset, length, msgString, prevIndex, length)) {
  /external/icu4c/common/
ucnv_ct.c 469 int32_t sourceOffset = 0;
514 sourceOffset = uprv_strlen((char*)escSeqCompoundText[currentState]) - args->converter->toULength;
516 mySource += sourceOffset;
534 sourceOffset = findNextEsc(mySource, mySourceLimit);
536 tmpSourceLimit = mySource + sourceOffset;
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 186 * @param sourceOffset offset within these bytes
190 public void copyTo(final byte[] target, final int sourceOffset,
193 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
  /external/v8/tools/
grokdump.py 877 def SourceOffset(self):
881 return self.SourceOffset() + self.heap.PointerSize()
885 self.source = self.ObjectField(self.SourceOffset())
    [all...]
  /external/icu4c/i18n/unicode/
choicfmt.h 590 * against the source string starting at sourceOffset.
596 const UnicodeString &source, int32_t sourceOffset);
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 234 divot -= m_codeBlock->sourceOffset();
  /frameworks/base/core/jni/
android_opengl_GLES20.cpp     [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]

Completed in 996 milliseconds